apepkuss79 commited on
Commit
aebfa2d
·
verified ·
1 Parent(s): 202557e

Upload README.md with huggingface_hub

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