--- library_name: mlx tags: - mlx - mlx-audio - whisper - automatic-speech-recognition - audio license: apache-2.0 --- # Belle-whisper-large-v3-zh 8bit This model was converted to MLX format from [BELLE-2/Belle-whisper-large-v3-zh](https://huggingface.co/BELLE-2/Belle-whisper-large-v3-zh). ## Use with MLX Audio ```bash pip install mlx-audio ``` ```python from mlx_audio.stt import load model = load("mlx-community/Belle-whisper-large-v3-zh-8bit") result = model.generate("audio.wav") print(result.text) ```