mlx-community/Qwen3-ASR-1.7B-8bit

Model

19

stars

2

commits

3

linked in READMEs

Jan 29, 2026

updated

8-bit
asr
mlx
mlx-audio
qwen3_asr
safetensors
speech
speech-to-text
stt
transcription

README

mlx-community/Qwen3-ASR-1.7B-8bit

This model was converted to MLX format from Qwen/Qwen3-ASR-1.7B using mlx-audio version 0.3.1.

Refer to the original model card for more details on the model.

Use with mlx-audio

pip install -U mlx-audio

CLI Example:

python -m mlx_audio.stt.generate --model mlx-community/Qwen3-ASR-1.7B-8bit --audio "audio.wav"

Python Example:

from mlx_audio.stt.utils import load_model
from mlx_audio.stt.generate import generate_transcription

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

Contributors

prince-canuma

2 commits

mlx-community/Qwen3-ASR-1.7B-8bit

Model

19

stars

2

commits

3

linked in READMEs

Jan 29, 2026

updated

8-bit
asr
mlx
mlx-audio
qwen3_asr
safetensors
speech
speech-to-text
stt
transcription

README

mlx-community/Qwen3-ASR-1.7B-8bit

This model was converted to MLX format from Qwen/Qwen3-ASR-1.7B using mlx-audio version 0.3.1.

Refer to the original model card for more details on the model.

Use with mlx-audio

pip install -U mlx-audio

CLI Example:

python -m mlx_audio.stt.generate --model mlx-community/Qwen3-ASR-1.7B-8bit --audio "audio.wav"

Python Example:

from mlx_audio.stt.utils import load_model
from mlx_audio.stt.generate import generate_transcription

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

Contributors

prince-canuma

2 commits