apepkuss79 commited on
Commit
f6c47c4
·
verified ·
1 Parent(s): 38c49c5

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +101 -0
README.md CHANGED
@@ -1,3 +1,104 @@
1
  ---
 
2
  license: apache-2.0
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model: Tesslate/Tessa-T1-14B
3
  license: apache-2.0
4
+ model_creator: Tesslate
5
+ model_name: Tessa-T1-14B
6
+ quantized_by: Second State Inc.
7
+ language:
8
+ - en
9
  ---
10
+
11
+ <!-- header start -->
12
+ <!-- 200823 -->
13
+ <div style="width: auto; margin-left: auto; margin-right: auto">
14
+ <img src="https://github.com/LlamaEdge/LlamaEdge/raw/dev/assets/logo.svg" style="width: 100%; min-width: 400px; display: block; margin: auto;">
15
+ </div>
16
+ <hr style="margin-top: 1.0em; margin-bottom: 1.0em;">
17
+ <!-- header end -->
18
+
19
+ # Tessa-T1-14B-GGUF
20
+
21
+ ## Original Model
22
+
23
+ [Tesslate/Tessa-T1-14B](https://huggingface.co/Tesslate/Tessa-T1-14B)
24
+
25
+ ## Run with LlamaEdge
26
+
27
+ - LlamaEdge version: [v0.16.14](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.16.14) or above
28
+
29
+ - Prompt template
30
+
31
+ - Prompt type: `chatml`
32
+
33
+ ```text
34
+ <|im_start|>system
35
+ {system_message}<|im_end|>
36
+ <|im_start|>user
37
+ {prompt}<|im_end|>
38
+ <|im_start|>assistant
39
+ ```
40
+
41
+ - Prompt type: `chatml-think`
42
+
43
+ ```text
44
+ <|im_start|>system
45
+ {system_message}<|im_end|>
46
+ <|im_start|>user
47
+ {prompt}<|im_end|>
48
+ <|im_start|>assistant
49
+ <|im_start|>think
50
+ ```
51
+
52
+ - Context size: `128000`
53
+
54
+ - Run as LlamaEdge service
55
+
56
+ ```bash
57
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:Tessa-T1-14B-Q5_K_M.gguf \
58
+ llama-api-server.wasm \
59
+ --model-name Tessa-T1-14B \
60
+ --prompt-template chatml \
61
+ --ctx-size 128000
62
+
63
+ # Think mode
64
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:Tessa-T1-14B-Q5_K_M.gguf \
65
+ llama-api-server.wasm \
66
+ --model-name Tessa-T1-14B \
67
+ --prompt-template chatml-think \
68
+ --ctx-size 128000
69
+ ```
70
+
71
+ - Run as LlamaEdge command app
72
+
73
+ ```bash
74
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:Tessa-T1-14B-Q5_K_M.gguf \
75
+ llama-chat.wasm \
76
+ --prompt-template chatml \
77
+ --ctx-size 128000
78
+
79
+ # Think mode
80
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:Tessa-T1-14B-Q5_K_M.gguf \
81
+ llama-chat.wasm \
82
+ --prompt-template chatml-think \
83
+ --ctx-size 128000
84
+ ```
85
+
86
+ ## Quantized GGUF Models
87
+
88
+ | Name | Quant method | Bits | Size | Use case |
89
+ | ---- | ---- | ---- | ---- | ----- |
90
+ | [Tessa-T1-14B-Q2_K.gguf](https://huggingface.co/second-state/Tessa-T1-14B-GGUF/blob/main/Tessa-T1-14B-Q2_K.gguf) | Q2_K | 2 | 5.77 GB| smallest, significant quality loss - not recommended for most purposes |
91
+ | [Tessa-T1-14B-Q3_K_L.gguf](https://huggingface.co/second-state/Tessa-T1-14B-GGUF/blob/main/Tessa-T1-14B-Q3_K_L.gguf) | Q3_K_L | 3 | 7.92 GB| small, substantial quality loss |
92
+ | [Tessa-T1-14B-Q3_K_M.gguf](https://huggingface.co/second-state/Tessa-T1-14B-GGUF/blob/main/Tessa-T1-14B-Q3_K_M.gguf) | Q3_K_M | 3 | 7.34 GB| very small, high quality loss |
93
+ | [Tessa-T1-14B-Q3_K_S.gguf](https://huggingface.co/second-state/Tessa-T1-14B-GGUF/blob/main/Tessa-T1-14B-Q3_K_S.gguf) | Q3_K_S | 3 | 6.66 GB| very small, high quality loss |
94
+ | [Tessa-T1-14B-Q4_0.gguf](https://huggingface.co/second-state/Tessa-T1-14B-GGUF/blob/main/Tessa-T1-14B-Q4_0.gguf) | Q4_0 | 4 | 8.52 GB| legacy; small, very high quality loss - prefer using Q3_K_M |
95
+ | [Tessa-T1-14B-Q4_K_M.gguf](https://huggingface.co/second-state/Tessa-T1-14B-GGUF/blob/main/Tessa-T1-14B-Q4_K_M.gguf) | Q4_K_M | 4 | 8.99 GB| medium, balanced quality - recommended |
96
+ | [Tessa-T1-14B-Q4_K_S.gguf](https://huggingface.co/second-state/Tessa-T1-14B-GGUF/blob/main/Tessa-T1-14B-Q4_K_S.gguf) | Q4_K_S | 4 | 8.57 GB| small, greater quality loss |
97
+ | [Tessa-T1-14B-Q5_0.gguf](https://huggingface.co/second-state/Tessa-T1-14B-GGUF/blob/main/Tessa-T1-14B-Q5_0.gguf) | Q5_0 | 5 | 10.3 GB| legacy; medium, balanced quality - prefer using Q4_K_M |
98
+ | [Tessa-T1-14B-Q5_K_M.gguf](https://huggingface.co/second-state/Tessa-T1-14B-GGUF/blob/main/Tessa-T1-14B-Q5_K_M.gguf) | Q5_K_M | 5 | 10.5 GB| large, very low quality loss - recommended |
99
+ | [Tessa-T1-14B-Q5_K_S.gguf](https://huggingface.co/second-state/Tessa-T1-14B-GGUF/blob/main/Tessa-T1-14B-Q5_K_S.gguf) | Q5_K_S | 5 | 10.3 GB| large, low quality loss - recommended |
100
+ | [Tessa-T1-14B-Q6_K.gguf](https://huggingface.co/second-state/Tessa-T1-14B-GGUF/blob/main/Tessa-T1-14B-Q6_K.gguf) | Q6_K | 6 | 12.1 GB| very large, extremely low quality loss |
101
+ | [Tessa-T1-14B-Q8_0.gguf](https://huggingface.co/second-state/Tessa-T1-14B-GGUF/blob/main/Tessa-T1-14B-Q8_0.gguf) | Q8_0 | 8 | 15.1 GB| very large, extremely low quality loss - not recommended |
102
+ | [Tessa-T1-14B-f16.gguf](https://huggingface.co/second-state/Tessa-T1-14B-GGUF/blob/main/Tessa-T1-14B-f16.gguf) | f16 | 16 | 29.5 GB| |
103
+
104
+ *Quantized with llama.cpp b4944*