Show CONFIG_NAME instead of "config.json"

This commit is contained in:
Aitor Gamarra
2023-03-29 21:03:39 +02:00
committed by GitHub
parent df71b84341
commit d6c68ae1a5
+1 -1
View File
@@ -98,7 +98,7 @@ class PeftConfigMixin(PushToHubMixin):
try:
config_file = hf_hub_download(pretrained_model_name_or_path, CONFIG_NAME)
except Exception:
raise ValueError(f"Can't find config.json at '{pretrained_model_name_or_path}'")
raise ValueError(f"Can't find '{CONFIG_NAME}' at '{pretrained_model_name_or_path}'")
loaded_attributes = cls.from_json_file(config_file)