apepkuss79 commited on
Commit
7551e92
1 Parent(s): c3ef330

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +82 -82
README.md CHANGED
@@ -1,82 +1,82 @@
1
- ---
2
- license: other
3
- pipeline_tag: text-generation
4
- base_model: internlm/internlm2_5-7b-chat
5
- model_creator: InternLM
6
- model_name: internlm2_5-7b-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-7b-chat-GGUF
19
-
20
- ## Original Model
21
-
22
- [internlm/internlm2_5-7b-chat](https://huggingface.co/internlm/internlm2_5-7b-chat)
23
-
24
- ## Run with LlamaEdge
25
-
26
- - LlamaEdge version: [v0.12.1](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.12.1) 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
- ```bash
47
- wasmedge --dir .:. --nn-preload default:GGML:AUTO:internlm2_5-7b-chat-Q5_K_M.gguf \
48
- llama-api-server.wasm \
49
- --prompt-template chatml \
50
- --ctx-size 32000 \
51
- --model-name internlm2_5-7b-chat
52
- ```
53
-
54
- - Run as LlamaEdge command app
55
-
56
- ```bash
57
- wasmedge --dir .:. \
58
- --nn-preload default:GGML:AUTO:internlm2_5-7b-chat-Q5_K_M.gguf \
59
- llama-chat.wasm \
60
- --prompt-template chatml \
61
- --ctx-size 32000
62
- ```
63
-
64
- ## Quantized GGUF Models
65
-
66
- | Name | Quant method | Bits | Size | Use case |
67
- | ---- | ---- | ---- | ---- | ----- |
68
- | [internlm2_5-7b-chat-Q2_K.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q2_K.gguf) | Q2_K | 2 | 3.01 GB| smallest, significant quality loss - not recommended for most purposes |
69
- | [internlm2_5-7b-chat-Q3_K_L.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q3_K_L.gguf) | Q3_K_L | 3 | 4.13 GB| small, substantial quality loss |
70
- | [internlm2_5-7b-chat-Q3_K_M.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q3_K_M.gguf) | Q3_K_M | 3 | 3.83 GB| very small, high quality loss |
71
- | [internlm2_5-7b-chat-Q3_K_S.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q3_K_S.gguf) | Q3_K_S | 3 | 3.48 GB| very small, high quality loss |
72
- | [internlm2_5-7b-chat-Q4_0.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q4_0.gguf) | Q4_0 | 4 | 4.45 GB| legacy; small, very high quality loss - prefer using Q3_K_M |
73
- | [internlm2_5-7b-chat-Q4_K_M.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q4_K_M.gguf) | Q4_K_M | 4 | 4.71 GB| medium, balanced quality - recommended |
74
- | [internlm2_5-7b-chat-Q4_K_S.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q4_K_S.gguf) | Q4_K_S | 4 | 4.48 GB| small, greater quality loss |
75
- | [internlm2_5-7b-chat-Q5_0.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q5_0.gguf) | Q5_0 | 5 | 5.37 GB| legacy; medium, balanced quality - prefer using Q4_K_M |
76
- | [internlm2_5-7b-chat-Q5_K_M.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q5_K_M.gguf) | Q5_K_M | 5 | 5.51 GB| large, very low quality loss - recommended |
77
- | [internlm2_5-7b-chat-Q5_K_S.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q5_K_S.gguf) | Q5_K_S | 5 | 5.37 GB| large, low quality loss - recommended |
78
- | [internlm2_5-7b-chat-Q6_K.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q6_K.gguf) | Q6_K | 6 | 6.35 GB| very large, extremely low quality loss |
79
- | [internlm2_5-7b-chat-Q8_0.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q8_0.gguf) | Q8_0 | 8 | 8.22 GB| very large, extremely low quality loss - not recommended |
80
- | [internlm2_5-7b-chat-f16.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-f16.gguf) | f16 | 16 | 15.5 GB| |
81
-
82
- *Quantized with llama.cpp b3259*
 
1
+ ---
2
+ license: other
3
+ pipeline_tag: text-generation
4
+ base_model: internlm/internlm2_5-7b-chat
5
+ model_creator: InternLM
6
+ model_name: internlm2_5-7b-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-7b-chat-GGUF
19
+
20
+ ## Original Model
21
+
22
+ [internlm/internlm2_5-7b-chat](https://huggingface.co/internlm/internlm2_5-7b-chat)
23
+
24
+ ## Run with LlamaEdge
25
+
26
+ - LlamaEdge version: [v0.12.1](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.12.1) 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
+ ```bash
47
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:internlm2_5-7b-chat-Q5_K_M.gguf \
48
+ llama-api-server.wasm \
49
+ --prompt-template chatml \
50
+ --ctx-size 32000 \
51
+ --model-name internlm2_5-7b-chat
52
+ ```
53
+
54
+ - Run as LlamaEdge command app
55
+
56
+ ```bash
57
+ wasmedge --dir .:. \
58
+ --nn-preload default:GGML:AUTO:internlm2_5-7b-chat-Q5_K_M.gguf \
59
+ llama-chat.wasm \
60
+ --prompt-template chatml \
61
+ --ctx-size 32000
62
+ ```
63
+
64
+ ## Quantized GGUF Models
65
+
66
+ | Name | Quant method | Bits | Size | Use case |
67
+ | ---- | ---- | ---- | ---- | ----- |
68
+ | [internlm2_5-7b-chat-Q2_K.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q2_K.gguf) | Q2_K | 2 | 3.01 GB| smallest, significant quality loss - not recommended for most purposes |
69
+ | [internlm2_5-7b-chat-Q3_K_L.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q3_K_L.gguf) | Q3_K_L | 3 | 4.13 GB| small, substantial quality loss |
70
+ | [internlm2_5-7b-chat-Q3_K_M.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q3_K_M.gguf) | Q3_K_M | 3 | 3.83 GB| very small, high quality loss |
71
+ | [internlm2_5-7b-chat-Q3_K_S.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q3_K_S.gguf) | Q3_K_S | 3 | 3.48 GB| very small, high quality loss |
72
+ | [internlm2_5-7b-chat-Q4_0.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q4_0.gguf) | Q4_0 | 4 | 4.45 GB| legacy; small, very high quality loss - prefer using Q3_K_M |
73
+ | [internlm2_5-7b-chat-Q4_K_M.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q4_K_M.gguf) | Q4_K_M | 4 | 4.71 GB| medium, balanced quality - recommended |
74
+ | [internlm2_5-7b-chat-Q4_K_S.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q4_K_S.gguf) | Q4_K_S | 4 | 4.48 GB| small, greater quality loss |
75
+ | [internlm2_5-7b-chat-Q5_0.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q5_0.gguf) | Q5_0 | 5 | 5.37 GB| legacy; medium, balanced quality - prefer using Q4_K_M |
76
+ | [internlm2_5-7b-chat-Q5_K_M.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q5_K_M.gguf) | Q5_K_M | 5 | 5.51 GB| large, very low quality loss - recommended |
77
+ | [internlm2_5-7b-chat-Q5_K_S.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q5_K_S.gguf) | Q5_K_S | 5 | 5.37 GB| large, low quality loss - recommended |
78
+ | [internlm2_5-7b-chat-Q6_K.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q6_K.gguf) | Q6_K | 6 | 6.35 GB| very large, extremely low quality loss |
79
+ | [internlm2_5-7b-chat-Q8_0.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-Q8_0.gguf) | Q8_0 | 8 | 8.22 GB| very large, extremely low quality loss - not recommended |
80
+ | [internlm2_5-7b-chat-f16.gguf](https://huggingface.co/second-state/internlm2_5-7b-chat-GGUF/blob/main/internlm2_5-7b-chat-f16.gguf) | f16 | 16 | 15.5 GB| |
81
+
82
+ *Quantized with llama.cpp b3361*