NikolayKozloff commited on
Commit
457831e
·
verified ·
1 Parent(s): 636b546

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +93 -0
README.md ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - am
4
+ - ar
5
+ - bn
6
+ - zh
7
+ - cs
8
+ - nl
9
+ - en
10
+ - fr
11
+ - de
12
+ - el
13
+ - ha
14
+ - he
15
+ - hi
16
+ - id
17
+ - it
18
+ - ja
19
+ - jv
20
+ - km
21
+ - ko
22
+ - lo
23
+ - ms
24
+ - mr
25
+ - fa
26
+ - pl
27
+ - pt
28
+ - ro
29
+ - ru
30
+ - es
31
+ - sw
32
+ - sv
33
+ - tl
34
+ - ta
35
+ - te
36
+ - th
37
+ - tr
38
+ - uk
39
+ - ur
40
+ - vi
41
+ license: apache-2.0
42
+ datasets:
43
+ - lightblue/reasoning-multilingual-R1-Llama-70B-train
44
+ tags:
45
+ - reasoning
46
+ - llama-cpp
47
+ - gguf-my-repo
48
+ base_model: lightblue/DeepSeek-R1-Distill-Qwen-14B-Multilingual
49
+ ---
50
+
51
+ # NikolayKozloff/DeepSeek-R1-Distill-Qwen-14B-Multilingual-Q5_K_S-GGUF
52
+ This model was converted to GGUF format from [`lightblue/DeepSeek-R1-Distill-Qwen-14B-Multilingual`](https://huggingface.co/lightblue/DeepSeek-R1-Distill-Qwen-14B-Multilingual) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
53
+ Refer to the [original model card](https://huggingface.co/lightblue/DeepSeek-R1-Distill-Qwen-14B-Multilingual) for more details on the model.
54
+
55
+ ## Use with llama.cpp
56
+ Install llama.cpp through brew (works on Mac and Linux)
57
+
58
+ ```bash
59
+ brew install llama.cpp
60
+
61
+ ```
62
+ Invoke the llama.cpp server or the CLI.
63
+
64
+ ### CLI:
65
+ ```bash
66
+ llama-cli --hf-repo NikolayKozloff/DeepSeek-R1-Distill-Qwen-14B-Multilingual-Q5_K_S-GGUF --hf-file deepseek-r1-distill-qwen-14b-multilingual-q5_k_s.gguf -p "The meaning to life and the universe is"
67
+ ```
68
+
69
+ ### Server:
70
+ ```bash
71
+ llama-server --hf-repo NikolayKozloff/DeepSeek-R1-Distill-Qwen-14B-Multilingual-Q5_K_S-GGUF --hf-file deepseek-r1-distill-qwen-14b-multilingual-q5_k_s.gguf -c 2048
72
+ ```
73
+
74
+ Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
75
+
76
+ Step 1: Clone llama.cpp from GitHub.
77
+ ```
78
+ git clone https://github.com/ggerganov/llama.cpp
79
+ ```
80
+
81
+ Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
82
+ ```
83
+ cd llama.cpp && LLAMA_CURL=1 make
84
+ ```
85
+
86
+ Step 3: Run inference through the main binary.
87
+ ```
88
+ ./llama-cli --hf-repo NikolayKozloff/DeepSeek-R1-Distill-Qwen-14B-Multilingual-Q5_K_S-GGUF --hf-file deepseek-r1-distill-qwen-14b-multilingual-q5_k_s.gguf -p "The meaning to life and the universe is"
89
+ ```
90
+ or
91
+ ```
92
+ ./llama-server --hf-repo NikolayKozloff/DeepSeek-R1-Distill-Qwen-14B-Multilingual-Q5_K_S-GGUF --hf-file deepseek-r1-distill-qwen-14b-multilingual-q5_k_s.gguf -c 2048
93
+ ```