apepkuss79 commited on
Commit
07b2b05
1 Parent(s): 2b6b44a

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +92 -1
README.md CHANGED
@@ -1,3 +1,94 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ pipeline_tag: text-generation
4
+ base_model: internlm/internlm2_5-20b-chat
5
+ model_creator: InternLM
6
+ model_name: internlm2_5-20b-chat
7
+ quantized_by: Second State Inc.
8
  ---
9
+
10
+ <!-- header start -->
11
+ <!-- 200823 -->
12
+ <div style="width: auto; margin-left: auto; margin-right: auto">
13
+ <img src="https://github.com/LlamaEdge/LlamaEdge/raw/dev/assets/logo.svg" style="width: 100%; min-width: 400px; display: block; margin: auto;">
14
+ </div>
15
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
16
+ <!-- header end -->
17
+
18
+ # internlm2_5-20b-chat-GGUF
19
+
20
+ ## Original Model
21
+
22
+ [internlm/internlm2_5-20b-chat](https://huggingface.co/internlm/internlm2_5-20b-chat)
23
+
24
+ ## Run with LlamaEdge
25
+
26
+ - LlamaEdge version: [v0.13.0](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.13.0) and above
27
+
28
+ - Prompt template
29
+
30
+ - Prompt type: `chatml`
31
+
32
+ - Prompt string
33
+
34
+ ```text
35
+ <|im_start|>system
36
+ {system_message}<|im_end|>
37
+ <|im_start|>user
38
+ {prompt}<|im_end|>
39
+ <|im_start|>assistant
40
+ ```
41
+
42
+ - Context size: `32000`
43
+
44
+ - Run as LlamaEdge service
45
+
46
+ - Chat
47
+
48
+ ```bash
49
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:internlm2_5-20b-chat-Q5_K_M.gguf \
50
+ llama-api-server.wasm \
51
+ --prompt-template chatml \
52
+ --ctx-size 32000 \
53
+ --model-name internlm2_5-20b-chat
54
+ ```
55
+
56
+ - Tool use
57
+
58
+ ```bash
59
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:internlm2_5-20b-chat-Q5_K_M.gguf \
60
+ llama-api-server.wasm \
61
+ --prompt-template internlm-2-tool \
62
+ --ctx-size 32000 \
63
+ --model-name internlm2_5-20b-chat
64
+ ```
65
+
66
+ - Run as LlamaEdge command app
67
+
68
+ ```bash
69
+ wasmedge --dir .:. \
70
+ --nn-preload default:GGML:AUTO:internlm2_5-20b-chat-Q5_K_M.gguf \
71
+ llama-chat.wasm \
72
+ --prompt-template chatml \
73
+ --ctx-size 32000
74
+ ```
75
+
76
+ ## Quantized GGUF Models
77
+
78
+ | Name | Quant method | Bits | Size | Use case |
79
+ | ---- | ---- | ---- | ---- | ----- |
80
+ | [internlm2_5-20b-chat-Q2_K.gguf](https://huggingface.co/second-state/internlm2_5-20b-chat-GGUF/blob/main/internlm2_5-20b-chat-Q2_K.gguf) | Q2_K | 2 | 7.55 GB| smallest, significant quality loss - not recommended for most purposes |
81
+ | [internlm2_5-20b-chat-Q3_K_L.gguf](https://huggingface.co/second-state/internlm2_5-20b-chat-GGUF/blob/main/internlm2_5-20b-chat-Q3_K_L.gguf) | Q3_K_L | 3 | 10.6 GB| small, substantial quality loss |
82
+ | [internlm2_5-20b-chat-Q3_K_M.gguf](https://huggingface.co/second-state/internlm2_5-20b-chat-GGUF/blob/main/internlm2_5-20b-chat-Q3_K_M.gguf) | Q3_K_M | 3 | 9.72 GB| very small, high quality loss |
83
+ | [internlm2_5-20b-chat-Q3_K_S.gguf](https://huggingface.co/second-state/internlm2_5-20b-chat-GGUF/blob/main/internlm2_5-20b-chat-Q3_K_S.gguf) | Q3_K_S | 3 | 8.76 GB| very small, high quality loss |
84
+ | [internlm2_5-20b-chat-Q4_0.gguf](https://huggingface.co/second-state/internlm2_5-20b-chat-GGUF/blob/main/internlm2_5-20b-chat-Q4_0.gguf) | Q4_0 | 4 | 11.3 GB| legacy; small, very high quality loss - prefer using Q3_K_M |
85
+ | [internlm2_5-20b-chat-Q4_K_M.gguf](https://huggingface.co/second-state/internlm2_5-20b-chat-GGUF/blob/main/internlm2_5-20b-chat-Q4_K_M.gguf) | Q4_K_M | 4 | 12.0 GB| medium, balanced quality - recommended |
86
+ | [internlm2_5-20b-chat-Q4_K_S.gguf](https://huggingface.co/second-state/internlm2_5-20b-chat-GGUF/blob/main/internlm2_5-20b-chat-Q4_K_S.gguf) | Q4_K_S | 4 | 11.4 GB| small, greater quality loss |
87
+ | [internlm2_5-20b-chat-Q5_0.gguf](https://huggingface.co/second-state/internlm2_5-20b-chat-GGUF/blob/main/internlm2_5-20b-chat-Q5_0.gguf) | Q5_0 | 5 | 13.7 GB| legacy; medium, balanced quality - prefer using Q4_K_M |
88
+ | [internlm2_5-20b-chat-Q5_K_M.gguf](https://huggingface.co/second-state/internlm2_5-20b-chat-GGUF/blob/main/internlm2_5-20b-chat-Q5_K_M.gguf) | Q5_K_M | 5 | 14.1 GB| large, very low quality loss - recommended |
89
+ | [internlm2_5-20b-chat-Q5_K_S.gguf](https://huggingface.co/second-state/internlm2_5-20b-chat-GGUF/blob/main/internlm2_5-20b-chat-Q5_K_S.gguf) | Q5_K_S | 5 | 13.7 GB| large, low quality loss - recommended |
90
+ | [internlm2_5-20b-chat-Q6_K.gguf](https://huggingface.co/second-state/internlm2_5-20b-chat-GGUF/blob/main/internlm2_5-20b-chat-Q6_K.gguf) | Q6_K | 6 | 16.3 GB| very large, extremely low quality loss |
91
+ | [internlm2_5-20b-chat-Q8_0.gguf](https://huggingface.co/second-state/internlm2_5-20b-chat-GGUF/blob/main/internlm2_5-20b-chat-Q8_0.gguf) | Q8_0 | 8 | 21.1 GB| very large, extremely low quality loss - not recommended |
92
+ | [internlm2_5-20b-chat-f16.gguf](https://huggingface.co/second-state/internlm2_5-20b-chat-GGUF/blob/main/internlm2_5-20b-chat-f16.gguf) | f16 | 16 | 39.7 GB| |
93
+
94
+ *Quantized with llama.cpp b3499*