How to download deep-seek weights for v3?

The question is a bit stupid. How to download deepseek weights? I have the model, I need weights for it to use in slang.
In parallel learn LLM theory with math

with regards,
Irina

1 Like

If you already have a model, you can use save_pretrained, but snapshot_download is more reliable for downloading. DeepSeekV3 has large file sizes, so it’s better to try it out first with a smaller repository…

pip install -U huggingface_hub[hf_xet]
from huggingface_hub import snapshot_download
snapshot_download(repo_id="deepseek-ai/DeepSeek-V3", local_dir="DeepSeek-V3")
1 Like

This topic was automatically closed 12 hours after the last reply. New replies are no longer allowed.