File size: 283 Bytes
06cacdc 49e6aa2 06cacdc | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ---
license: mit
library_name: mlx
pipeline_tag: automatic-speech-recognition
---
## Use with mlx-whisper
```bash
pip install mlx-whisper
```
```python
import mlx_whisper
result = mlx_whisper.transcribe(
speech_file,
path_or_hf_repo="mlx-community/whisper-large-v3-mlx")
``` |