Hi following tutorial, I created a fine-tuned version of t5 model, and if I test it, inferencing works well
But I’m having a some problem with uploading the model to the hub
As written in tutorial, using Keras API I created a text summary model fine-tuning T5
and as written in tutorial, I tried to push the model to the hub
model.push_to_hub("textSummary", organization="organName")
But this gave me this error saying 'TypeError: HfApi.create_repo() got an unexpected keyword argument 'organization'
So I tried 3 following methods, but all those line giving me same error:
# method 1
model.push_to_hub('textSummary')
# method 2
model.push_to_hub('Seungjun/textSummary')
# method 3
from huggingface_hub import notebook_login, create_repo
from transformers import AutoTokenizer
create_repo("Seungjun/textSummary", private=False)
model.push_to_hub('Seungjun/textSummary')
Can I get some any help please