File size: 393 Bytes
e3ea435 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
# upload_videomme_large.py
import os
from huggingface_hub import HfApi
api = HfApi()
api.upload_large_folder(
folder_path=".", # current dir has VideoMME/
repo_id="chancharikm/QualityCheck",
repo_type="dataset",
revision="main", # push straight to main
)
print("Upload started (resumable). Re-run this if it gets interrupted.")
|