Automatic Speech Recognition
GGUF
English
hf-asr-leaderboard
whisper
qwen
llama-cpp
gguf-my-repo
Eval Results (legacy)
conversational
Instructions to use nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- llama-cpp-python
How to use nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF with llama-cpp-python:
# !pip install llama-cpp-python from llama_cpp import Llama llm = Llama.from_pretrained( repo_id="nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF", filename="higgs-audio-v3-8b-stt-v2-q4_k_m.gguf", )
llm.create_chat_completion( messages = "\"sample1.flac\"" )
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M # Run inference directly in the terminal: llama cli -hf nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M
Use Docker
docker model run hf.co/nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF with Ollama:
ollama run hf.co/nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M
- Unsloth Studio
How to use nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF to start chatting
- Pi
How to use nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF with Pi:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M
Configure the model in Pi
# Install Pi: npm install -g @mariozechner/pi-coding-agent # Add to ~/.pi/agent/models.json: { "providers": { "llama-cpp": { "baseUrl": "http://localhost:8080/v1", "api": "openai-completions", "apiKey": "none", "models": [ { "id": "nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M" } ] } } }Run Pi
# Start Pi in your project directory: pi
- Hermes Agent new
How to use nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF with Hermes Agent:
Start the llama.cpp server
# Install llama.cpp: brew install llama.cpp # Start a local OpenAI-compatible server: llama serve -hf nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M
Configure Hermes
# Install Hermes: curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash hermes setup # Point Hermes at the local server: hermes config set model.provider custom hermes config set model.base_url http://127.0.0.1:8080/v1 hermes config set model.default nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M
Run Hermes
hermes
- Atomic Chat new
- Docker Model Runner
How to use nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF with Docker Model Runner:
docker model run hf.co/nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M
- Lemonade
How to use nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull nopesadly/higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF:Q4_K_M
Run and chat with the model
lemonade run user.higgs-audio-v3-8b-stt-v2-Q4_K_M-GGUF-Q4_K_M
List all available models
lemonade list
Upload README.md with huggingface_hub
Browse files
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 |
+
```
|