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
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
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")
This topic was automatically closed 12 hours after the last reply. New replies are no longer allowed.