apepkuss79 commited on
Commit
1788319
·
verified ·
1 Parent(s): 2cb0ba7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +89 -1
README.md CHANGED
@@ -1,3 +1,91 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ model_name: DeepSeek-R1-Distill-Llama-70B
3
+ base_model: deepseek-ai/DeepSeek-R1-Distill-Llama-70B
4
+ model_creator: deepseek-ai
5
+ quantized_by: Second State Inc.
6
+ library_name: transformers
7
  ---
8
+
9
+ <!-- header start -->
10
+ <!-- 200823 -->
11
+ <div style="width: auto; margin-left: auto; margin-right: auto">
12
+ <img src="https://github.com/LlamaEdge/LlamaEdge/raw/dev/assets/logo.svg" style="width: 100%; min-width: 400px; display: block; margin: auto;">
13
+ </div>
14
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
15
+ <!-- header end -->
16
+
17
+ # DeepSeek-R1-Distill-Llama-70B-GGUF
18
+
19
+ ## Original Model
20
+
21
+ [deepseek-ai/DeepSeek-R1-Distill-Llama-70B](https://huggingface.co/deepseek-ai/DeepSeek-R1-Distill-Llama-70B)
22
+
23
+ ## Run with LlamaEdge
24
+
25
+ - LlamaEdge version: [v0.16.1](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.16.1) and above
26
+
27
+ - Prompt template
28
+
29
+ - Prompt type: `llama-3-chat`
30
+
31
+ - Prompt string
32
+
33
+ ```text
34
+ <|begin_of_text|><|start_header_id|>system<|end_header_id|>
35
+
36
+ {{ system_prompt }}<|eot_id|><|start_header_id|>user<|end_header_id|>
37
+
38
+ {{ user_message_1 }}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
39
+
40
+ {{ model_answer_1 }}<|eot_id|><|start_header_id|>user<|end_header_id|>
41
+
42
+ {{ user_message_2 }}<|eot_id|><|start_header_id|>assistant<|end_header_id|>
43
+ ```
44
+
45
+ - Context size: `128000`
46
+
47
+ - Run as LlamaEdge service
48
+
49
+ ```bash
50
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:DeepSeek-R1-Distill-Llama-70B-Q5_K_M.gguf \
51
+ llama-api-server.wasm \
52
+ --prompt-template llama-3-chat \
53
+ --ctx-size 128000 \
54
+ --model-name DeepSeek-R1-Distill-Llama-70B
55
+ ```
56
+
57
+ - Run as LlamaEdge command app
58
+
59
+ ```bash
60
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:DeepSeek-R1-Distill-Llama-70B-Q5_K_M.gguf \
61
+ llama-chat.wasm \
62
+ --prompt-template llama-3-chat \
63
+ --ctx-size 128000
64
+ ```
65
+
66
+ ## Quantized GGUF Models
67
+
68
+ | Name | Quant method | Bits | Size | Use case |
69
+ | ---- | ---- | ---- | ---- | ----- |
70
+ | [DeepSeek-R1-Distill-Llama-70B-Q2_K.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q2_K.gguf) | Q2_K | 2 | 26.4 GB| smallest, significant quality loss - not recommended for most purposes |
71
+ | [DeepSeek-R1-Distill-Llama-70B-Q3_K_L.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q3_K_L.gguf) | Q3_K_L | 3 | 37.1 GB| small, substantial quality loss |
72
+ | [DeepSeek-R1-Distill-Llama-70B-Q3_K_M.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q3_K_M.gguf) | Q3_K_M | 3 | 34.3 GB| very small, high quality loss |
73
+ | [DeepSeek-R1-Distill-Llama-70B-Q3_K_S.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q3_K_S.gguf) | Q3_K_S | 3 | 30.9 GB| very small, high quality loss |
74
+ | [DeepSeek-R1-Distill-Llama-70B-Q4_0.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q4_0.gguf) | Q4_0 | 4 | 40.0 GB| legacy; small, very high quality loss - prefer using Q3_K_M |
75
+ | [DeepSeek-R1-Distill-Llama-70B-Q4_K_M.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q4_K_M.gguf) | Q4_K_M | 4 | 42.5 GB| medium, balanced quality - recommended |
76
+ | [DeepSeek-R1-Distill-Llama-70B-Q4_K_S.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q4_K_S.gguf) | Q4_K_S | 4 | 40.3 GB| small, greater quality loss |
77
+ | [DeepSeek-R1-Distill-Llama-70B-Q5_0.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q5_0.gguf) | Q5_0 | 5 | 48.7 GB| legacy; medium, balanced quality - prefer using Q4_K_M |
78
+ | [DeepSeek-R1-Distill-Llama-70B-Q5_K_M.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q5_K_M.gguf) | Q5_K_M | 5 | 49.9 GB| large, very low quality loss - recommended |
79
+ | [DeepSeek-R1-Distill-Llama-70B-Q5_K_S.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q5_K_S.gguf) | Q5_K_S | 5 | 48.7 GB| large, low quality loss - recommended |
80
+ | [DeepSeek-R1-Distill-Llama-70B-Q6_K-00001-of-00002.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q6_K-00001-of-00002.gguf) | Q6_K | 6 | 29.9 GB| very large, extremely low quality loss |
81
+ | [DeepSeek-R1-Distill-Llama-70B-Q6_K-00002-of-00002.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q6_K-00002-of-00002.gguf) | Q6_K | 6 | 28.0 GB| very large, extremely low quality loss |
82
+ | [DeepSeek-R1-Distill-Llama-70B-Q8_0-00001-of-00003.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q8_0-00001-of-00003.gguf) | Q8_0 | 8 | 29.9 GB| very large, extremely low quality loss - not recommended |
83
+ | [DeepSeek-R1-Distill-Llama-70B-Q8_0-00002-of-00003.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q8_0-00002-of-00003.gguf) | Q8_0 | 8 | 29.8 GB| very large, extremely low quality loss - not recommended |
84
+ | [DeepSeek-R1-Distill-Llama-70B-Q8_0-00003-of-00003.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-Q8_0-00003-of-00003.gguf) | Q8_0 | 8 | 15.3 GB| very large, extremely low quality loss - not recommended |
85
+ | [DeepSeek-R1-Distill-Llama-70B-f16-00001-of-00005.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-f16-00001-of-00005.gguf) | f16 | 16 | 30.0 GB| |
86
+ | [DeepSeek-R1-Distill-Llama-70B-f16-00002-of-00005.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-f16-00002-of-00005.gguf) | f16 | 16 | 29.6 GB| |
87
+ | [DeepSeek-R1-Distill-Llama-70B-f16-00003-of-00005.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-f16-00003-of-00005.gguf) | f16 | 16 | 29.9 GB| |
88
+ | [DeepSeek-R1-Distill-Llama-70B-f16-00004-of-00005.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-f16-00004-of-00005.gguf) | f16 | 16 | 29.6 GB| |
89
+ | [DeepSeek-R1-Distill-Llama-70B-f16-00005-of-00005.gguf](https://huggingface.co/second-state/DeepSeek-R1-Distill-Llama-70B-GGUF/blob/main/DeepSeek-R1-Distill-Llama-70B-f16-00005-of-00005.gguf) | f16 | 16 | 22.2 GB| |
90
+
91
+ *Quantized with llama.cpp b4519.*