Views
No views yet
1# clone the whole repo
2git lfs install
3git clone https://huggingface.co/MidnightRunner/Misc
4
5# download a single file
6huggingface-cli download MidnightRunner/Misc 4x-UltraSharp.pth
7
8# pull from Python
9from huggingface_hub import hf_hub_download
10
11file = hf_hub_download(
12 repo_id="MidnightRunner/Misc",
13 filename="4x-UltraSharp.pth"
14)