File size: 324 Bytes
cd09fe1 |
1 2 3 4 5 6 7 8 9 10 11 |
from huggingface_hub import hf_hub_download
# Replace with your model repo and filename
file_path = hf_hub_download(
repo_id="SeccondDefense/DeepSeek-Coder-V2-Instruct-0724-Q5_K_M",
filename="DeepSeek-Coder-V2-Instruct-0724-Q5_K_M.gguf" # change if the filename is different
)
print("Downloaded to:", file_path)
|