apepkuss79 commited on
Commit
c7ed169
1 Parent(s): a860449

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +80 -1
README.md CHANGED
@@ -1,3 +1,82 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ pipeline_tag: text-generation
4
+ base_model: internlm/internlm2_5-1_8b-chat
5
+ model_creator: InternLM
6
+ model_name: internlm2_5-1_8b-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-1_8b-chat-GGUF
19
+
20
+ ## Original Model
21
+
22
+ [internlm/internlm2_5-1_8b-chat](https://huggingface.co/internlm/internlm2_5-1_8b-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
+ ```bash
47
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:internlm2_5-1_8b-chat-Q5_K_M.gguf \
48
+ llama-api-server.wasm \
49
+ --prompt-template chatml \
50
+ --ctx-size 32000 \
51
+ --model-name internlm2_5-1_8b-chat
52
+ ```
53
+
54
+ - Run as LlamaEdge command app
55
+
56
+ ```bash
57
+ wasmedge --dir .:. \
58
+ --nn-preload default:GGML:AUTO:internlm2_5-1_8b-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-1_8b-chat-Q2_K.gguf](https://huggingface.co/second-state/internlm2_5-1_8b-chat-GGUF/blob/main/internlm2_5-1_8b-chat-Q2_K.gguf) | Q2_K | 2 | 722 MB| smallest, significant quality loss - not recommended for most purposes |
69
+ | [internlm2_5-1_8b-chat-Q3_K_L.gguf](https://huggingface.co/second-state/internlm2_5-1_8b-chat-GGUF/blob/main/internlm2_5-1_8b-chat-Q3_K_L.gguf) | Q3_K_L | 3 | 1.03 GB| small, substantial quality loss |
70
+ | [internlm2_5-1_8b-chat-Q3_K_M.gguf](https://huggingface.co/second-state/internlm2_5-1_8b-chat-GGUF/blob/main/internlm2_5-1_8b-chat-Q3_K_M.gguf) | Q3_K_M | 3 | 964 MB| very small, high quality loss |
71
+ | [internlm2_5-1_8b-chat-Q3_K_S.gguf](https://huggingface.co/second-state/internlm2_5-1_8b-chat-GGUF/blob/main/internlm2_5-1_8b-chat-Q3_K_S.gguf) | Q3_K_S | 3 | 888 MB| very small, high quality loss |
72
+ | [internlm2_5-1_8b-chat-Q4_0.gguf](https://huggingface.co/second-state/internlm2_5-1_8b-chat-GGUF/blob/main/internlm2_5-1_8b-chat-Q4_0.gguf) | Q4_0 | 4 | 1.11 GB| legacy; small, very high quality loss - prefer using Q3_K_M |
73
+ | [internlm2_5-1_8b-chat-Q4_K_M.gguf](https://huggingface.co/second-state/internlm2_5-1_8b-chat-GGUF/blob/main/internlm2_5-1_8b-chat-Q4_K_M.gguf) | Q4_K_M | 4 | 1.17 GB| medium, balanced quality - recommended |
74
+ | [internlm2_5-1_8b-chat-Q4_K_S.gguf](https://huggingface.co/second-state/internlm2_5-1_8b-chat-GGUF/blob/main/internlm2_5-1_8b-chat-Q4_K_S.gguf) | Q4_K_S | 4 | 1.12 GB| small, greater quality loss |
75
+ | [internlm2_5-1_8b-chat-Q5_0.gguf](https://huggingface.co/second-state/internlm2_5-1_8b-chat-GGUF/blob/main/internlm2_5-1_8b-chat-Q5_0.gguf) | Q5_0 | 5 | 1.33 GB| legacy; medium, balanced quality - prefer using Q4_K_M |
76
+ | [internlm2_5-1_8b-chat-Q5_K_M.gguf](https://huggingface.co/second-state/internlm2_5-1_8b-chat-GGUF/blob/main/internlm2_5-1_8b-chat-Q5_K_M.gguf) | Q5_K_M | 5 | 1.36 GB| large, very low quality loss - recommended |
77
+ | [internlm2_5-1_8b-chat-Q5_K_S.gguf](https://huggingface.co/second-state/internlm2_5-1_8b-chat-GGUF/blob/main/internlm2_5-1_8b-chat-Q5_K_S.gguf) | Q5_K_S | 5 | 1.33 GB| large, low quality loss - recommended |
78
+ | [internlm2_5-1_8b-chat-Q6_K.gguf](https://huggingface.co/second-state/internlm2_5-1_8b-chat-GGUF/blob/main/internlm2_5-1_8b-chat-Q6_K.gguf) | Q6_K | 6 | 1.55 GB| very large, extremely low quality loss |
79
+ | [internlm2_5-1_8b-chat-Q8_0.gguf](https://huggingface.co/second-state/internlm2_5-1_8b-chat-GGUF/blob/main/internlm2_5-1_8b-chat-Q8_0.gguf) | Q8_0 | 8 | 2.01 GB| very large, extremely low quality loss - not recommended |
80
+ | [internlm2_5-1_8b-chat-f16.gguf](https://huggingface.co/second-state/internlm2_5-1_8b-chat-GGUF/blob/main/internlm2_5-1_8b-chat-f16.gguf) | f16 | 16 | 3.78 GB| |
81
+
82
+ *Quantized with llama.cpp b3499*