sumuks's picture
Upload folder using huggingface_hub
53d1306 verified
raw
history blame
337 Bytes
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="./",
repo_id="sumuks/qwen2.5-72b-utility-evaluator-r128",
repo_type="model",
ignore_patterns=["*.pt", "*.pth"],
)