Mixtral_ether / Readme.md
jeduardogruiz's picture
Create Readme.md
46e4cf8 verified
|
raw
history blame
333 Bytes
from transformers import AutoModel
model = AutoModel.from_pretrained("google-bert/bert-base-cased")
# Push the model to your namespace with the name "my-finetuned-bert".
model.push_to_hub("my-finetuned-bert")
# Push the model to an organization with the name "my-finetuned-bert".
model.push_to_hub("huggingface/my-finetuned-bert")