apepkuss79 commited on
Commit
3e2b592
·
verified ·
1 Parent(s): 895f9bf

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +88 -1
README.md CHANGED
@@ -1,3 +1,90 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: other
3
+ license_name: exaone
4
+ license_link: LICENSE
5
+ model_name: EXAONE-3.5-7.8B-Instruct
6
+ base_model: LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct
7
+ quantized_by: Second State Inc.
8
+ language:
9
+ - en
10
+ - ko
11
+ tags:
12
+ - lg-ai
13
+ - exaone
14
+ - gguf
15
+ pipeline_tag: text-generation
16
+ library_name: transformers
17
  ---
18
+
19
+ <!-- header start -->
20
+ <!-- 200823 -->
21
+ <div style="width: auto; margin-left: auto; margin-right: auto">
22
+ <img src="https://github.com/LlamaEdge/LlamaEdge/raw/dev/assets/logo.svg" style="width: 100%; min-width: 400px; display: block; margin: auto;">
23
+ </div>
24
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
25
+ <!-- header end -->
26
+
27
+ # EXAONE-3.5-7.8B-Instruct-GGUF
28
+
29
+ ## Original Model
30
+
31
+ [LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct](https://huggingface.co/LGAI-EXAONE/EXAONE-3.5-7.8B-Instruct)
32
+
33
+ ## Run with LlamaEdge
34
+
35
+ - LlamaEdge version: [v0.16.13](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.16.13) and above
36
+
37
+ - Prompt template
38
+
39
+ - Prompt type: `exaone-chat`
40
+
41
+ - Prompt string
42
+
43
+ ```text
44
+ [|system|]{system_message}[|endofturn|]
45
+ [|user|]{user_message_1}
46
+ [|assistant|]{assistant_message_1}[|endofturn|]
47
+ [|user|]{user_message_2}
48
+ [|assistant|]
49
+ ```
50
+
51
+ - Context size: `32000`
52
+
53
+ - Run as LlamaEdge service
54
+
55
+ ```bash
56
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:EXAONE-3.5-7.8B-Instruct-Q5_K_M.gguf \
57
+ llama-api-server.wasm \
58
+ --prompt-template exaone-chat \
59
+ --ctx-size 32000 \
60
+ --model-name EXAONE-3.5-7.8B-Instruct
61
+ ```
62
+
63
+ - Run as LlamaEdge command app
64
+
65
+ ```bash
66
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:EXAONE-3.5-7.8B-Instruct-Q5_K_M.gguf \
67
+ llama-chat.wasm \
68
+ --prompt-template exaone-chat \
69
+ --ctx-size 32000
70
+ ```
71
+
72
+ ## Quantized GGUF Models
73
+
74
+ | Name | Quant method | Bits | Size | Use case |
75
+ | ---- | ---- | ---- | ---- | ----- |
76
+ | [EXAONE-3.5-7.8B-Instruct-Q2_K.gguf](https://huggingface.co/second-state/EXAONE-3.5-7.8B-Instruct-GGUF/blob/main/EXAONE-3.5-7.8B-Instruct-Q2_K.gguf) | Q2_K | 2 | 3.05 GB| smallest, significant quality loss - not recommended for most purposes |
77
+ | [EXAONE-3.5-7.8B-Instruct-Q3_K_L.gguf](https://huggingface.co/second-state/EXAONE-3.5-7.8B-Instruct-GGUF/blob/main/EXAONE-3.5-7.8B-Instruct-Q3_K_L.gguf) | Q3_K_L | 3 | 4.19 GB| small, substantial quality loss |
78
+ | [EXAONE-3.5-7.8B-Instruct-Q3_K_M.gguf](https://huggingface.co/second-state/EXAONE-3.5-7.8B-Instruct-GGUF/blob/main/EXAONE-3.5-7.8B-Instruct-Q3_K_M.gguf) | Q3_K_M | 3 | 3.88 GB| very small, high quality loss |
79
+ | [EXAONE-3.5-7.8B-Instruct-Q3_K_S.gguf](https://huggingface.co/second-state/EXAONE-3.5-7.8B-Instruct-GGUF/blob/main/EXAONE-3.5-7.8B-Instruct-Q3_K_S.gguf) | Q3_K_S | 3 | 3.53 GB| very small, high quality loss |
80
+ | [EXAONE-3.5-7.8B-Instruct-Q4_0.gguf](https://huggingface.co/second-state/EXAONE-3.5-7.8B-Instruct-GGUF/blob/main/EXAONE-3.5-7.8B-Instruct-Q4_0.gguf) | Q4_0 | 4 | 4.51 GB| legacy; small, very high quality loss - prefer using Q3_K_M |
81
+ | [EXAONE-3.5-7.8B-Instruct-Q4_K_M.gguf](https://huggingface.co/second-state/EXAONE-3.5-7.8B-Instruct-GGUF/blob/main/EXAONE-3.5-7.8B-Instruct-Q4_K_M.gguf) | Q4_K_M | 4 | 4.77 GB| medium, balanced quality - recommended |
82
+ | [EXAONE-3.5-7.8B-Instruct-Q4_K_S.gguf](https://huggingface.co/second-state/EXAONE-3.5-7.8B-Instruct-GGUF/blob/main/EXAONE-3.5-7.8B-Instruct-Q4_K_S.gguf) | Q4_K_S | 4 | 4.54 GB| small, greater quality loss |
83
+ | [EXAONE-3.5-7.8B-Instruct-Q5_0.gguf](https://huggingface.co/second-state/EXAONE-3.5-7.8B-Instruct-GGUF/blob/main/EXAONE-3.5-7.8B-Instruct-Q5_0.gguf) | Q5_0 | 5 | 5.44 GB| legacy; medium, balanced quality - prefer using Q4_K_M |
84
+ | [EXAONE-3.5-7.8B-Instruct-Q5_K_M.gguf](https://huggingface.co/second-state/EXAONE-3.5-7.8B-Instruct-GGUF/blob/main/EXAONE-3.5-7.8B-Instruct-Q5_K_M.gguf) | Q5_K_M | 5 | 5.57 GB| large, very low quality loss - recommended |
85
+ | [EXAONE-3.5-7.8B-Instruct-Q5_K_S.gguf](https://huggingface.co/second-state/EXAONE-3.5-7.8B-Instruct-GGUF/blob/main/EXAONE-3.5-7.8B-Instruct-Q5_K_S.gguf) | Q5_K_S | 5 | 5.44 GB| large, low quality loss - recommended |
86
+ | [EXAONE-3.5-7.8B-Instruct-Q6_K.gguf](https://huggingface.co/second-state/EXAONE-3.5-7.8B-Instruct-GGUF/blob/main/EXAONE-3.5-7.8B-Instruct-Q6_K.gguf) | Q6_K | 6 | 6.42 GB| very large, extremely low quality loss |
87
+ | [EXAONE-3.5-7.8B-Instruct-Q8_0.gguf](https://huggingface.co/second-state/EXAONE-3.5-7.8B-Instruct-GGUF/blob/main/EXAONE-3.5-7.8B-Instruct-Q8_0.gguf) | Q8_0 | 8 | 8.31 GB| very large, extremely low quality loss - not recommended |
88
+ | [EXAONE-3.5-7.8B-Instruct-f16.gguf](https://huggingface.co/second-state/EXAONE-3.5-7.8B-Instruct-GGUF/blob/main/EXAONE-3.5-7.8B-Instruct-f16.gguf) | f16 | 16 | 15.6 GB| |
89
+
90
+ *Quantized with llama.cpp b4932.*