nopesadly commited on
Commit
311a5f0
·
verified ·
1 Parent(s): 5963a2d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +171 -0
README.md ADDED
@@ -0,0 +1,171 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ language:
4
+ - en
5
+ tags:
6
+ - automatic-speech-recognition
7
+ - hf-asr-leaderboard
8
+ - whisper
9
+ - qwen
10
+ - llama-cpp
11
+ - gguf-my-repo
12
+ pipeline_tag: automatic-speech-recognition
13
+ base_model: bosonai/higgs-audio-v3-8b-stt-v2
14
+ model-index:
15
+ - name: higgs-audio-v3-8b-stt-v2
16
+ results:
17
+ - task:
18
+ type: automatic-speech-recognition
19
+ name: Automatic Speech Recognition
20
+ dataset:
21
+ name: AMI (Meetings test)
22
+ type: edinburghcstr/ami
23
+ config: ihm
24
+ split: test
25
+ args:
26
+ language: en
27
+ metrics:
28
+ - type: wer
29
+ value: 10.14
30
+ name: Test WER
31
+ - task:
32
+ type: automatic-speech-recognition
33
+ name: Automatic Speech Recognition
34
+ dataset:
35
+ name: Earnings-22
36
+ type: revdotcom/earnings22
37
+ split: test
38
+ args:
39
+ language: en
40
+ metrics:
41
+ - type: wer
42
+ value: 8.73
43
+ name: Test WER
44
+ - task:
45
+ type: automatic-speech-recognition
46
+ name: Automatic Speech Recognition
47
+ dataset:
48
+ name: GigaSpeech
49
+ type: speechcolab/gigaspeech
50
+ split: test
51
+ args:
52
+ language: en
53
+ metrics:
54
+ - type: wer
55
+ value: 8.47
56
+ name: Test WER
57
+ - task:
58
+ type: automatic-speech-recognition
59
+ name: Automatic Speech Recognition
60
+ dataset:
61
+ name: LibriSpeech (clean)
62
+ type: librispeech_asr
63
+ config: clean
64
+ split: test
65
+ args:
66
+ language: en
67
+ metrics:
68
+ - type: wer
69
+ value: 1.25
70
+ name: Test WER
71
+ - task:
72
+ type: automatic-speech-recognition
73
+ name: Automatic Speech Recognition
74
+ dataset:
75
+ name: LibriSpeech (other)
76
+ type: librispeech_asr
77
+ config: other
78
+ split: test
79
+ args:
80
+ language: en
81
+ metrics:
82
+ - type: wer
83
+ value: 2.38
84
+ name: Test WER
85
+ - task:
86
+ type: automatic-speech-recognition
87
+ name: Automatic Speech Recognition
88
+ dataset:
89
+ name: SPGI Speech
90
+ type: kensho/spgispeech
91
+ config: test
92
+ split: test
93
+ args:
94
+ language: en
95
+ metrics:
96
+ - type: wer
97
+ value: 3.6
98
+ name: Test WER
99
+ - task:
100
+ type: automatic-speech-recognition
101
+ name: Automatic Speech Recognition
102
+ dataset:
103
+ name: tedlium-v3
104
+ type: LIUM/tedlium
105
+ config: release1
106
+ split: test
107
+ args:
108
+ language: en
109
+ metrics:
110
+ - type: wer
111
+ value: 3.09
112
+ name: Test WER
113
+ - task:
114
+ type: automatic-speech-recognition
115
+ name: Automatic Speech Recognition
116
+ dataset:
117
+ name: Vox Populi
118
+ type: facebook/voxpopuli
119
+ config: en
120
+ split: test
121
+ args:
122
+ language: en
123
+ metrics:
124
+ - type: wer
125
+ value: 5.92
126
+ name: Test WER
127
+ ---
128
+
129
+ # nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF
130
+ This model was converted to GGUF format from [`bosonai/higgs-audio-v3-8b-stt-v2`](https://huggingface.co/bosonai/higgs-audio-v3-8b-stt-v2) using llama.cpp via the ggml.ai's [GGUF-my-repo](https://huggingface.co/spaces/ggml-org/gguf-my-repo) space.
131
+ Refer to the [original model card](https://huggingface.co/bosonai/higgs-audio-v3-8b-stt-v2) for more details on the model.
132
+
133
+ ## Use with llama.cpp
134
+ Install llama.cpp through brew (works on Mac and Linux)
135
+
136
+ ```bash
137
+ brew install llama.cpp
138
+
139
+ ```
140
+ Invoke the llama.cpp server or the CLI.
141
+
142
+ ### CLI:
143
+ ```bash
144
+ llama-cli --hf-repo nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF --hf-file higgs-audio-v3-8b-stt-v2-q4_k_m.gguf -p "The meaning to life and the universe is"
145
+ ```
146
+
147
+ ### Server:
148
+ ```bash
149
+ llama-server --hf-repo nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF --hf-file higgs-audio-v3-8b-stt-v2-q4_k_m.gguf -c 2048
150
+ ```
151
+
152
+ Note: You can also use this checkpoint directly through the [usage steps](https://github.com/ggerganov/llama.cpp?tab=readme-ov-file#usage) listed in the Llama.cpp repo as well.
153
+
154
+ Step 1: Clone llama.cpp from GitHub.
155
+ ```
156
+ git clone https://github.com/ggerganov/llama.cpp
157
+ ```
158
+
159
+ Step 2: Move into the llama.cpp folder and build it with `LLAMA_CURL=1` flag along with other hardware-specific flags (for ex: LLAMA_CUDA=1 for Nvidia GPUs on Linux).
160
+ ```
161
+ cd llama.cpp && LLAMA_CURL=1 make
162
+ ```
163
+
164
+ Step 3: Run inference through the main binary.
165
+ ```
166
+ ./llama-cli --hf-repo nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF --hf-file higgs-audio-v3-8b-stt-v2-q4_k_m.gguf -p "The meaning to life and the universe is"
167
+ ```
168
+ or
169
+ ```
170
+ ./llama-server --hf-repo nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF --hf-file higgs-audio-v3-8b-stt-v2-q4_k_m.gguf -c 2048
171
+ ```