File size: 249 Bytes
396f42d |
1 2 3 4 5 6 7 8 9 10 11 12 |
from huggingface_hub import HfApi
api = HfApi()
api.upload_folder(
repo_id="Trisert/falcon-7b-instruct-sharded",
folder_path=".",
multi_commits=True,
multi_commits_verbose=True,
run_as_future=True
)
|