Views
No views yet
roberta-base1import torch
2from huggingface_hub import hf_hub_download
3import config as C
4
5# Download weights (repo ID is built from HF_REPO_ID in config.py)
6# e.g. "suyashnpande/cinematic-music-descriptor-v2-module3"
7repo_id = f"{C.HF_REPO_ID}-module3"
8path = hf_hub_download(repo_id=repo_id,
9 filename="module3_final.pt",
10 token=C.HF_READ_TOKEN)