Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -62,16 +62,19 @@ First, make sure you have hugginface-cli installed:
|
|
62 |
|
63 |
```
|
64 |
pip install -U "huggingface_hub[cli]"
|
|
|
65 |
|
66 |
Then, you can target the specific file you want:
|
67 |
|
68 |
```
|
69 |
huggingface-cli download {new_repo_url} --include "{gguf_files[0][0]}" --local-dir ./
|
|
|
70 |
|
71 |
If the model is bigger than 50GB, it will have been split into multiple files. In order to download them all to a local folder, run:
|
72 |
|
73 |
```
|
74 |
huggingface-cli download {new_repo_url} --include "{gguf_files[0][0]}/*" --local-dir ./
|
|
|
75 |
|
76 |
You can either specify a new local-dir (deepseek-ai_DeepSeek-V3-0324-Q8_0) or download them all in place (./)
|
77 |
|
|
|
62 |
|
63 |
```
|
64 |
pip install -U "huggingface_hub[cli]"
|
65 |
+
```
|
66 |
|
67 |
Then, you can target the specific file you want:
|
68 |
|
69 |
```
|
70 |
huggingface-cli download {new_repo_url} --include "{gguf_files[0][0]}" --local-dir ./
|
71 |
+
```
|
72 |
|
73 |
If the model is bigger than 50GB, it will have been split into multiple files. In order to download them all to a local folder, run:
|
74 |
|
75 |
```
|
76 |
huggingface-cli download {new_repo_url} --include "{gguf_files[0][0]}/*" --local-dir ./
|
77 |
+
```
|
78 |
|
79 |
You can either specify a new local-dir (deepseek-ai_DeepSeek-V3-0324-Q8_0) or download them all in place (./)
|
80 |
|