File size: 226 Bytes
50bf69f | 1 2 3 4 5 6 7 8 9 10 11 12 | from huggingface_hub import HfApi
from huggingface_hub import login
login()
api = HfApi()
api.upload_large_folder(
repo_id="labhamlet/GRAM-Naturalistic-Scenes-Ambisonics",
repo_type="dataset",
folder_path=".",
)
|