mirror of
https://github.com/saymrwulf/transformers.git
synced 2026-05-14 20:58:08 +00:00
Don't set finetuned_from if it is a local path (#28482)
* fix * fix --------- Co-authored-by: ydshieh <ydshieh@users.noreply.github.com>
This commit is contained in:
parent
881e966ace
commit
64bdbd888c
1 changed files with 5 additions and 1 deletions
|
|
@ -559,7 +559,11 @@ def main():
|
|||
trainer.save_metrics("eval", metrics)
|
||||
|
||||
# 11. Write Training Stats and push to hub.
|
||||
kwargs = {"finetuned_from": model_args.model_name_or_path, "tasks": "contrastive-image-text-modeling"}
|
||||
finetuned_from = model_args.model_name_or_path
|
||||
# If from a local directory, don't set `finetuned_from` as this is required to be a valid repo. id on the Hub.
|
||||
if os.path.isdir(finetuned_from):
|
||||
finetuned_from = None
|
||||
kwargs = {"finetuned_from": finetuned_from, "tasks": "contrastive-image-text-modeling"}
|
||||
if data_args.dataset_name is not None:
|
||||
kwargs["dataset_tags"] = data_args.dataset_name
|
||||
if data_args.dataset_config_name is not None:
|
||||
|
|
|
|||
Loading…
Reference in a new issue