# 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.")