README.md
945 B · 40 lines · markdown Raw
1 ---
2 library_name: mlx
3 tags:
4 - mlx
5 - automatic-speech-recognition
6 - speech
7 - audio
8 - FastConformer
9 - Conformer
10 - Parakeet
11 license: cc-by-4.0
12 pipeline_tag: automatic-speech-recognition
13 base_model: nvidia/parakeet-tdt-0.6b-v2
14 ---
15
16 # mlx-community/parakeet-tdt-0.6b-v2
17
18 This model was converted to MLX format from [nvidia/parakeet-tdt-0.6b-v2](https://huggingface.co/nvidia/parakeet-tdt-0.6b-v2) using [the conversion script](https://gist.github.com/senstella/77178bb5d6ec67bf8c54705a5f490bed). Please refer to [original model card](https://huggingface.co/nvidia/parakeet-tdt-0.6b-v2) for more details on the model.
19
20 ## Use with mlx
21
22 ### parakeet-mlx
23
24 ```bash
25 pip install -U parakeet-mlx
26 ```
27
28 ```bash
29 parakeet-mlx audio.wav --model mlx-community/parakeet-tdt-0.6b-v2
30 ```
31
32 ### mlx-audio
33
34 ```bash
35 pip install -U mlx-audio
36 ```
37
38 ```bash
39 python -m mlx_audio.stt.generate --model mlx-community/parakeet-tdt-0.6b-v2 --audio audio.wav --output somewhere
40 ```