You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TL;DR: Loading lora weights on a pipeline makes a call to the Hub even when HF_HUB_OFFLINE=1 is set as environment variable (or local_file_only=True is passed as parameter), which is not expected.
This seems to be due to the _best_guess_weight_name method that try to guess which file to load when the LoRA filename is not provided. It makes a call to model_info to check which files exist on the Hub repo.