File size: 1,068 Bytes
2f652af
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
license: apache-2.0
tags:
- mlx
- speech-to-text
- speech
- transcription
- asr
- stt
- mlx-audio
library_name: mlx-audio
---
# mlx-community/Qwen3-ForcedAligner-0.6B-4bit

This model was converted to MLX format from [`Qwen/Qwen3-ForcedAligner-0.6B`](https://huggingface.co/Qwen/Qwen3-ForcedAligner-0.6B) using mlx-audio version **0.3.1**.

Refer to the [original model card](https://huggingface.co/Qwen/Qwen3-ForcedAligner-0.6B) for more details on the model.

## Use with mlx-audio

```bash
pip install -U mlx-audio
```

### CLI Example:
```bash
python -m mlx_audio.stt.generate --model mlx-community/Qwen3-ForcedAligner-0.6B-4bit --audio "audio.wav"
```

### Python Example:
```python        
from mlx_audio.stt.utils import load_model
from mlx_audio.stt.generate import generate_transcription

model = load_model("mlx-community/Qwen3-ForcedAligner-0.6B-4bit")
transcription = generate_transcription(
    model=model,
    audio_path="path_to_audio.wav",
    output_path="path_to_output.txt",
    format="txt",
    verbose=True,
)
print(transcription.text)

```