File size: 319 Bytes
0d0ec29
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python3
"""Download a released MambaRefine-CD checkpoint."""

from huggingface_hub import hf_hub_download


REPO_ID = "<HF_USERNAME_OR_ORG>/MambaRefine0cd"
FILENAME = "checkpoints/mambarefine_cd_whu_cd_best.pth"


if __name__ == "__main__":
    print(hf_hub_download(repo_id=REPO_ID, filename=FILENAME))