Update README.md
Browse files
README.md
CHANGED
@@ -20,14 +20,14 @@ Or you can view more detailed instructions here: [unsloth.ai/blog/deepseek-r1](h
|
|
20 |
2. Obtain the latest `llama.cpp` at https://github.com/ggerganov/llama.cpp
|
21 |
3. Example with Q4_0 K quantized cache **Notice -no-cnv disables auto conversation mode**
|
22 |
```bash
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
```
|
32 |
Example output:
|
33 |
|
|
|
20 |
2. Obtain the latest `llama.cpp` at https://github.com/ggerganov/llama.cpp
|
21 |
3. Example with Q4_0 K quantized cache **Notice -no-cnv disables auto conversation mode**
|
22 |
```bash
|
23 |
+
./llama.cpp/llama-cli \
|
24 |
+
--model DeepSeek-R1-UD-IQ1_S/DeepSeek-R1-UD-IQ1_S-00001-of-00003.gguf \
|
25 |
+
--cache-type-k q4_0 \
|
26 |
+
--threads 12 -no-cnv --prio 2 \
|
27 |
+
--temp 0.6 \
|
28 |
+
--ctx-size 8192 \
|
29 |
+
--seed 3407 \
|
30 |
+
--prompt "<|User|>Create a Flappy Bird game in Python.<|Assistant|>"
|
31 |
```
|
32 |
Example output:
|
33 |
|