DaViT / upolad_to_hub.py
amaye15's picture
Upload folder using huggingface_hub
44be74d verified
raw
history blame contribute delete
No virus
377 Bytes
# from huggingface_hub import create_repo
# create_repo("amaye15/DaViT")
from huggingface_hub import HfApi
api = HfApi()
# Upload all the content from the local folder to your remote Space.
# By default, files are uploaded at the root of the repo
api.upload_folder(
folder_path="/Users/andrewmayes/Dev/DaViT/DaViT",
repo_id="amaye15/DaViT",
repo_type="model",
)