File size: 224 Bytes
fba3401 | 1 2 3 4 5 6 7 | from huggingface_hub import login, upload_folder
# Login with your Hugging Face token (embedded)
login()
# Push your model files
upload_folder(folder_path=".", repo_id="ikkbor/bert_imdb_sentiment", repo_type="model") |