Hello!
I have a fine-tuned model I’d like to save to the hub. I have a repo I’ve created in my account and have no issues with using push_to_hub(repo_id=‘username/my-repo-id’). However, when I set use_temp_dir=False, I get an error that ‘my-repo-id’ is not found; not that ‘username/my-repo-id’ is not found but that just the ‘my-repo-id’ is not found. Is this a bug? It seems like it could be expecting that the model is saved locally first, but I was under the impression I could push_to_hub() without having to call save_pretrained().
I’m using transformers 4.44, the latest stable version.