Xin Liu commited on
Commit
347eaa2
1 Parent(s): 1e1d1a8

Signed-off-by: Xin Liu <sam@secondstate.io>

Files changed (1) hide show
  1. README.md +67 -1
README.md CHANGED
@@ -1,3 +1,69 @@
1
  ---
2
- license: apache-2.0
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model: OrionStarAI/OrionStar-Yi-34B-Chat-Llama
3
+ inference: false
4
+ license: other
5
+ license_link: LICENSE
6
+ license_name: yi-license
7
+ model_creator: OrionStarAI
8
+ model_name: OrionStar Yi 34B Chat Llama
9
+ model_type: yi
10
+ pipeline_tag: text-generation
11
+ quantized_by: Second State Inc.
12
  ---
13
+
14
+ <!-- header start -->
15
+ <!-- 200823 -->
16
+ <div style="width: auto; margin-left: auto; margin-right: auto">
17
+ <img src="https://github.com/second-state/LlamaEdge/raw/dev/assets/logo.svg" style="width: 100%; min-width: 400px; display: block; margin: auto;">
18
+ </div>
19
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
20
+ <!-- header end -->
21
+
22
+ # OrionStar-Yi-34B-Chat-Llama-GGUF
23
+
24
+ ## Original Model
25
+
26
+ [OrionStarAI/OrionStar-Yi-34B-Chat-Llama](https://huggingface.co/OrionStarAI/OrionStar-Yi-34B-Chat-Llama)
27
+
28
+ ## Run with LlamaEdge
29
+
30
+ - LlamaEdge version: v0.2.9 (coming soon)
31
+
32
+ - Prompt template
33
+
34
+ - Prompt type: `human-assistant`
35
+
36
+ - Prompt string
37
+
38
+ ```text
39
+ Human: {input_1}\n\nAssistant:{output_1}Human: {input_2}\n\nAssistant:
40
+ ```
41
+
42
+ - Run as LlamaEdge service
43
+
44
+ ```bash
45
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:OrionStar-Yi-34B-Chat-Llama-Q5_K_M.gguf llama-api-server.wasm -p human-assistant
46
+ ```
47
+
48
+ - Run as LlamaEdge command app
49
+
50
+ ```bash
51
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:OrionStar-Yi-34B-Chat-Llama-Q5_K_M.gguf llama-chat.wasm -p human-assistant
52
+ ```
53
+
54
+ ## Quantized GGUF Models
55
+
56
+ | Name | Quant method | Bits | Size | Use case |
57
+ | ---- | ---- | ---- | ---- | ----- |
58
+ | [OrionStar-Yi-34B-Chat-Llama-Q2_K.gguf](https://huggingface.co/second-state/OrionStar-Yi-34B-Chat-Llama-GGUF/blob/main/OrionStar-Yi-34B-Chat-Llama-Q2_K.gguf) | Q2_K | 2 | 12.8 GB| smallest, significant quality loss - not recommended for most purposes |
59
+ | [OrionStar-Yi-34B-Chat-Llama-Q3_K_L.gguf](https://huggingface.co/second-state/OrionStar-Yi-34B-Chat-Llama-GGUF/blob/main/OrionStar-Yi-34B-Chat-Llama-Q3_K_L.gguf) | Q3_K_L | 3 | 18.1 GB| small, substantial quality loss |
60
+ | [OrionStar-Yi-34B-Chat-Llama-Q3_K_M.gguf](https://huggingface.co/second-state/OrionStar-Yi-34B-Chat-Llama-GGUF/blob/main/OrionStar-Yi-34B-Chat-Llama-Q3_K_M.gguf) | Q3_K_M | 3 | 16.7 GB| very small, high quality loss |
61
+ | [OrionStar-Yi-34B-Chat-Llama-Q3_K_S.gguf](https://huggingface.co/second-state/OrionStar-Yi-34B-Chat-Llama-GGUF/blob/main/OrionStar-Yi-34B-Chat-Llama-Q3_K_S.gguf) | Q3_K_S | 3 | 15.0 GB| very small, high quality loss |
62
+ | [OrionStar-Yi-34B-Chat-Llama-Q4_0.gguf](https://huggingface.co/second-state/OrionStar-Yi-34B-Chat-Llama-GGUF/blob/main/OrionStar-Yi-34B-Chat-Llama-Q4_0.gguf) | Q4_0 | 4 | 19.5 GB| legacy; small, very high quality loss - prefer using Q3_K_M |
63
+ | [OrionStar-Yi-34B-Chat-Llama-Q4_K_M.gguf](https://huggingface.co/second-state/OrionStar-Yi-34B-Chat-Llama-GGUF/blob/main/OrionStar-Yi-34B-Chat-Llama-Q4_K_M.gguf) | Q4_K_M | 4 | 20.7 GB| medium, balanced quality - recommended |
64
+ | [OrionStar-Yi-34B-Chat-Llama-Q4_K_S.gguf](https://huggingface.co/second-state/OrionStar-Yi-34B-Chat-Llama-GGUF/blob/main/OrionStar-Yi-34B-Chat-Llama-Q4_K_S.gguf) | Q4_K_S | 4 | 19.6 GB| small, greater quality loss |
65
+ | [OrionStar-Yi-34B-Chat-Llama-Q5_0.gguf](https://huggingface.co/second-state/OrionStar-Yi-34B-Chat-Llama-GGUF/blob/main/OrionStar-Yi-34B-Chat-Llama-Q5_0.gguf) | Q5_0 | 5 | 23.7 GB| legacy; medium, balanced quality - prefer using Q4_K_M |
66
+ | [OrionStar-Yi-34B-Chat-Llama-Q5_K_M.gguf](https://huggingface.co/second-state/OrionStar-Yi-34B-Chat-Llama-GGUF/blob/main/OrionStar-Yi-34B-Chat-Llama-Q5_K_M.gguf) | Q5_K_M | 5 | 24.3 GB| large, very low quality loss - recommended |
67
+ | [OrionStar-Yi-34B-Chat-Llama-Q5_K_S.gguf](https://huggingface.co/second-state/OrionStar-Yi-34B-Chat-Llama-GGUF/blob/main/OrionStar-Yi-34B-Chat-Llama-Q5_K_S.gguf) | Q5_K_S | 5 | 23.7 GB| large, low quality loss - recommended |
68
+ | [OrionStar-Yi-34B-Chat-Llama-Q6_K.gguf](https://huggingface.co/second-state/OrionStar-Yi-34B-Chat-Llama-GGUF/blob/main/OrionStar-Yi-34B-Chat-Llama-Q6_K.gguf) | Q6_K | 6 | 28.2 GB| very large, extremely low quality loss |
69
+ | [OrionStar-Yi-34B-Chat-Llama-Q8_0.gguf](https://huggingface.co/second-state/OrionStar-Yi-34B-Chat-Llama-GGUF/blob/main/OrionStar-Yi-34B-Chat-Llama-Q8_0.gguf) | Q8_0 | 8 | 36.5 GB| very large, extremely low quality loss - not recommended |