entangled-saes / upload.py
amueller's picture
Upload folder using huggingface_hub
36bb368 verified
from huggingface_hub import HfApi
api = HfApi()
api.create_repo(
repo_id="amueller/entangled-saes",
)
# 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="amueller/entangled-saes",
repo_type="model",
)