healthcare-standards-raft / upload_to_hf.py
venkatviswa's picture
Upload folder using huggingface_hub
a9983f9 verified
raw
history blame contribute delete
406 Bytes
from huggingface_hub import login, HfApi
# Login to Hugging Face (will prompt for token)
login()
# Upload the entire folder
api = HfApi()
api.upload_folder(
folder_path=".", # Current directory
repo_id="venkatviswa/healthcare-standards-raft",
repo_type="model"
)
print("Upload complete! Your model is now available at:")
print("https://huggingface.co/venkatviswa/healthcare-standards-raft")