-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: download only necessary model files #58
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -154,7 +154,19 @@ def load_model( | |||||||||||||||||||||||||||||||||||||||||||||||||||||
return None | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
logger.info("Repo is a full fine-tuned model, loading model directly") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
model = AutoModelForCausalLM.from_pretrained( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
model_name_or_path, token=HF_TOKEN, **model_kwargs | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
model_name_or_path, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
token=HF_TOKEN, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
**model_kwargs, | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
subfolder="", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
allow_patterns=[ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
"adapter_config.json", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
"adapter_model.safetensors", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
"special_tokens_map.json", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
"tokenizer.json", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
"tokenizer_config.json", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
"training_args.bin", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
"tokenizer.model", | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
], | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+157
to
+169
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Replace 'token' with 'use_auth_token' in 'from_pretrained' The Apply this diff to correct the argument: model = AutoModelForCausalLM.from_pretrained(
model_name_or_path,
- token=HF_TOKEN,
+ use_auth_token=HF_TOKEN,
**model_kwargs,
subfolder="",
allow_patterns=[
"adapter_config.json",
"adapter_model.safetensors",
"special_tokens_map.json",
"tokenizer.json",
"tokenizer_config.json",
"training_args.bin",
"tokenizer.model",
],
) 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
if "output_router_logits" in model.config.to_dict(): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we need training_args to run successfully?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, it is not always needed. Can help those that want to run custom validation scripts and usually just a few kBs. I'll remove it though for now.