Xin Liu commited on
Commit
eada81d
1 Parent(s): f77573f

Signed-off-by: Xin Liu <[email protected]>

Files changed (1) hide show
  1. README.md +72 -7
README.md CHANGED
@@ -1,14 +1,79 @@
1
- # SOLAR-10.7B-Instruct-v1.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
 
3
  ## Original Model
4
 
5
  [upstage/SOLAR-10.7B-Instruct-v1.0](https://huggingface.co/upstage/SOLAR-10.7B-Instruct-v1.0)
6
 
7
- ## Prompt Template
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
 
9
- ```text
10
- ### User:
11
- {prompt}
12
 
13
- ### Assistant:
14
- ```
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ base_model: upstage/SOLAR-10.7B-Instruct-v1.0
3
+ inference: false
4
+ library_name: transformers
5
+ license: cc-by-nc-4.0
6
+ model_creator: upstage
7
+ model_name: Solar 10.7B Instruct v1.0
8
+ model_type: solar
9
+ datasets:
10
+ - c-s-ale/alpaca-gpt4-data
11
+ - Open-Orca/OpenOrca
12
+ - Intel/orca_dpo_pairs
13
+ - allenai/ultrafeedback_binarized_cleaned
14
+ language:
15
+ - en
16
+ pipeline_tag: text-generation
17
+ quantized_by: Second State Inc.
18
+ ---
19
+
20
+ <!-- header start -->
21
+ <!-- 200823 -->
22
+ <div style="width: auto; margin-left: auto; margin-right: auto">
23
+ <img src="https://github.com/second-state/LlamaEdge/raw/dev/assets/logo.svg" style="width: 100%; min-width: 400px; display: block; margin: auto;">
24
+ </div>
25
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
26
+ <!-- header end -->
27
+
28
+ # SOLAR-10.7B-Instruct-v1.0-GGUF
29
 
30
  ## Original Model
31
 
32
  [upstage/SOLAR-10.7B-Instruct-v1.0](https://huggingface.co/upstage/SOLAR-10.7B-Instruct-v1.0)
33
 
34
+ ## Run with LlamaEdge
35
+
36
+ - LlamaEdge version: [v0.2.4](https://github.com/second-state/LlamaEdge/releases/tag/0.2.4)
37
+
38
+ - Prompt template
39
+
40
+ - Prompt type: `solar-instruct`
41
+
42
+ - Prompt string
43
+
44
+ ```text
45
+ ### User:
46
+ {prompt}
47
+
48
+ ### Assistant:
49
+ ```
50
+
51
+ - Run as LlamaEdge service
52
+
53
+ ```bash
54
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:solar-10.7b-instruct-v1.0.Q5_K_M.gguf llama-api-server.wasm -p solar-instruct
55
+ ```
56
+
57
+ - Run as LlamaEdge command app
58
+
59
+ ```bash
60
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:solar-10.7b-instruct-v1.0.Q5_K_M.gguf llama-chat.wasm -p solar-instruct
61
+
62
+ ```
63
 
64
+ ## Quantized GGUF Models
 
 
65
 
66
+ | Name | Quant method | Bits | Size | Use case |
67
+ | ---- | ---- | ---- | ---- | ----- |
68
+ | [SOLAR-10.7B-Instruct-v1.0-Q2_K.gguf](https://huggingface.co/second-state/SOLAR-10.7B-Instruct-v1.0-GGUF/blob/main/SOLAR-10.7B-Instruct-v1.0-Q2_K.gguf) | Q2_K | 2 | 4.55 GB| smallest, significant quality loss - not recommended for most purposes |
69
+ | [SOLAR-10.7B-Instruct-v1.0-Q3_K_L.gguf](https://huggingface.co/second-state/SOLAR-10.7B-Instruct-v1.0-GGUF/blob/main/SOLAR-10.7B-Instruct-v1.0-Q3_K_L.gguf) | Q3_K_L | 3 | 5.65 GB| small, substantial quality loss |
70
+ | [SOLAR-10.7B-Instruct-v1.0-Q3_K_M.gguf](https://huggingface.co/second-state/SOLAR-10.7B-Instruct-v1.0-GGUF/blob/main/SOLAR-10.7B-Instruct-v1.0-Q3_K_M.gguf) | Q3_K_M | 3 | 5.19 GB| very small, high quality loss |
71
+ | [SOLAR-10.7B-Instruct-v1.0-Q3_K_S.gguf](https://huggingface.co/second-state/SOLAR-10.7B-Instruct-v1.0-GGUF/blob/main/SOLAR-10.7B-Instruct-v1.0-Q3_K_S.gguf) | Q3_K_S | 3 | 4.66 GB| very small, high quality loss |
72
+ | [SOLAR-10.7B-Instruct-v1.0-Q4_0.gguf](https://huggingface.co/second-state/SOLAR-10.7B-Instruct-v1.0-GGUF/blob/main/SOLAR-10.7B-Instruct-v1.0-Q4_0.gguf) | Q4_0 | 4 | 6.07 GB| legacy; small, very high quality loss - prefer using Q3_K_M |
73
+ | [SOLAR-10.7B-Instruct-v1.0-Q4_K_M.gguf](https://huggingface.co/second-state/SOLAR-10.7B-Instruct-v1.0-GGUF/blob/main/SOLAR-10.7B-Instruct-v1.0-Q4_K_M.gguf) | Q4_K_M | 4 | 6.46 GB| medium, balanced quality - recommended |
74
+ | [SOLAR-10.7B-Instruct-v1.0-Q4_K_S.gguf](https://huggingface.co/second-state/SOLAR-10.7B-Instruct-v1.0-GGUF/blob/main/SOLAR-10.7B-Instruct-v1.0-Q4_K_S.gguf) | Q4_K_S | 4 | 6.1 GB| small, greater quality loss |
75
+ | [SOLAR-10.7B-Instruct-v1.0-Q5_0.gguf](https://huggingface.co/second-state/SOLAR-10.7B-Instruct-v1.0-GGUF/blob/main/SOLAR-10.7B-Instruct-v1.0-Q5_0.gguf) | Q5_0 | 5 | 7.4 GB| legacy; medium, balanced quality - prefer using Q4_K_M |
76
+ | [SOLAR-10.7B-Instruct-v1.0-Q5_K_M.gguf](https://huggingface.co/second-state/SOLAR-10.7B-Instruct-v1.0-GGUF/blob/main/SOLAR-10.7B-Instruct-v1.0-Q5_K_M.gguf) | Q5_K_M | 5 | 7.6 GB| large, very low quality loss - recommended |
77
+ | [SOLAR-10.7B-Instruct-v1.0-Q5_K_S.gguf](https://huggingface.co/second-state/SOLAR-10.7B-Instruct-v1.0-GGUF/blob/main/SOLAR-10.7B-Instruct-v1.0-Q5_K_S.gguf) | Q5_K_S | 5 | 7.4 GB| large, low quality loss - recommended |
78
+ | [SOLAR-10.7B-Instruct-v1.0-Q6_K.gguf](https://huggingface.co/second-state/SOLAR-10.7B-Instruct-v1.0-GGUF/blob/main/SOLAR-10.7B-Instruct-v1.0-Q6_K.gguf) | Q6_K | 6 | 8.81 GB| very large, extremely low quality loss |
79
+ | [SOLAR-10.7B-Instruct-v1.0-Q8_0.gguf](https://huggingface.co/second-state/SOLAR-10.7B-Instruct-v1.0-GGUF/blob/main/SOLAR-10.7B-Instruct-v1.0-Q8_0.gguf) | Q8_0 | 8 | 11.4 GB| very large, extremely low quality loss - not recommended |