apepkuss79 commited on
Commit
b081126
·
verified ·
1 Parent(s): 709c8e8

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +81 -0
README.md CHANGED
@@ -1,3 +1,84 @@
1
  ---
 
2
  license: apache-2.0
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ base_model: Tesslate/Tessa-T1-3B
3
  license: apache-2.0
4
+ model_creator: Tesslate
5
+ model_name: Tessa-T1-3B
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-3B-GGUF
20
+
21
+ ## Original Model
22
+
23
+ [Tesslate/Tessa-T1-3B](https://huggingface.co/Tesslate/Tessa-T1-3B)
24
+
25
+ ## Run with LlamaEdge
26
+
27
+ - LlamaEdge version: coming soon
28
+
29
+ <!-- - LlamaEdge version: [v0.14.14](https://github.com/LlamaEdge/LlamaEdge/releases/tag/0.14.14) and above
30
+
31
+ - Prompt template
32
+
33
+ - Prompt type: `chatml`
34
+
35
+ - Prompt string
36
+
37
+ ```text
38
+ <|im_start|>system
39
+ {system_message}<|im_end|>
40
+ <|im_start|>user
41
+ {prompt}<|im_end|>
42
+ <|im_start|>assistant
43
+ ```
44
+
45
+ - Context size: `32000`
46
+
47
+ - Run as LlamaEdge service
48
+
49
+ ```bash
50
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:Tessa-T1-3B-Q5_K_M.gguf \
51
+ llama-api-server.wasm \
52
+ --model-name Tessa-T1-3B \
53
+ --prompt-template chatml \
54
+ --ctx-size 32000
55
+ ```
56
+
57
+ - Run as LlamaEdge command app
58
+
59
+ ```bash
60
+ wasmedge --dir .:. --nn-preload default:GGML:AUTO:Tessa-T1-3B-Q5_K_M.gguf \
61
+ llama-chat.wasm \
62
+ --prompt-template chatml \
63
+ --ctx-size 32000
64
+ ``` -->
65
+
66
+ ## Quantized GGUF Models
67
+
68
+ | Name | Quant method | Bits | Size | Use case |
69
+ | ---- | ---- | ---- | ---- | ----- |
70
+ | [Tessa-T1-3B-Q2_K.gguf](https://huggingface.co/second-state/Tessa-T1-3B-GGUF/blob/main/Tessa-T1-3B-Q2_K.gguf) | Q2_K | 2 | 1.27 GB| smallest, significant quality loss - not recommended for most purposes |
71
+ | [Tessa-T1-3B-Q3_K_L.gguf](https://huggingface.co/second-state/Tessa-T1-3B-GGUF/blob/main/Tessa-T1-3B-Q3_K_L.gguf) | Q3_K_L | 3 | 1.71 GB| small, substantial quality loss |
72
+ | [Tessa-T1-3B-Q3_K_M.gguf](https://huggingface.co/second-state/Tessa-T1-3B-GGUF/blob/main/Tessa-T1-3B-Q3_K_M.gguf) | Q3_K_M | 3 | 1.59 GB| very small, high quality loss |
73
+ | [Tessa-T1-3B-Q3_K_S.gguf](https://huggingface.co/second-state/Tessa-T1-3B-GGUF/blob/main/Tessa-T1-3B-Q3_K_S.gguf) | Q3_K_S | 3 | 1.45 GB| very small, high quality loss |
74
+ | [Tessa-T1-3B-Q4_0.gguf](https://huggingface.co/second-state/Tessa-T1-3B-GGUF/blob/main/Tessa-T1-3B-Q4_0.gguf) | Q4_0 | 4 | 1.82 GB| legacy; small, very high quality loss - prefer using Q3_K_M |
75
+ | [Tessa-T1-3B-Q4_K_M.gguf](https://huggingface.co/second-state/Tessa-T1-3B-GGUF/blob/main/Tessa-T1-3B-Q4_K_M.gguf) | Q4_K_M | 4 | 1.93 GB| medium, balanced quality - recommended |
76
+ | [Tessa-T1-3B-Q4_K_S.gguf](https://huggingface.co/second-state/Tessa-T1-3B-GGUF/blob/main/Tessa-T1-3B-Q4_K_S.gguf) | Q4_K_S | 4 | 1.83 GB| small, greater quality loss |
77
+ | [Tessa-T1-3B-Q5_0.gguf](https://huggingface.co/second-state/Tessa-T1-3B-GGUF/blob/main/Tessa-T1-3B-Q5_0.gguf) | Q5_0 | 5 | 2.17 GB| legacy; medium, balanced quality - prefer using Q4_K_M |
78
+ | [Tessa-T1-3B-Q5_K_M.gguf](https://huggingface.co/second-state/Tessa-T1-3B-GGUF/blob/main/Tessa-T1-3B-Q5_K_M.gguf) | Q5_K_M | 5 | 2.22 GB| large, very low quality loss - recommended |
79
+ | [Tessa-T1-3B-Q5_K_S.gguf](https://huggingface.co/second-state/Tessa-T1-3B-GGUF/blob/main/Tessa-T1-3B-Q5_K_S.gguf) | Q5_K_S | 5 | 2.17 GB| large, low quality loss - recommended |
80
+ | [Tessa-T1-3B-Q6_K.gguf](https://huggingface.co/second-state/Tessa-T1-3B-GGUF/blob/main/Tessa-T1-3B-Q6_K.gguf) | Q6_K | 6 | 2.54 GB| very large, extremely low quality loss |
81
+ | [Tessa-T1-3B-Q8_0.gguf](https://huggingface.co/second-state/Tessa-T1-3B-GGUF/blob/main/Tessa-T1-3B-Q8_0.gguf) | Q8_0 | 8 | 3.29 GB| very large, extremely low quality loss - not recommended |
82
+ | [Tessa-T1-3B-f16.gguf](https://huggingface.co/second-state/Tessa-T1-3B-GGUF/blob/main/Tessa-T1-3B-f16.gguf) | f16 | 16 | 6.18 GB| |
83
+
84
+ *Quantized with llama.cpp b4944*