FP8 quantized version of
Qwen3-ASR-1.7B using
NVIDIA ModelOpt (Max calibration algorithm), ready for deployment with
vLLM.
1git clone https://github.com/QwenLM/Qwen3-ASR
2pip install nvidia-modelopt vllm
3
4qwen-asr-serve vrfai/qwen3asr-fp8 \
5 --quantization modelopt \
6 --gpu-memory-utilization 0.7
1import requests, soundfile as sf, io
2
3def transcribe(audio_path, url="http://localhost:8000/v1/audio/transcriptions"):
4 audio, sr = sf.read(audio_path)
5 buf = io.BytesIO()
6 sf.write(buf, audio, sr, format="WAV")
7 buf.seek(0)
8 r = requests.post(
9 url,
10 files={"file": ("audio.wav", buf, "audio/wav")},
11 data={"model": "vrfai/qwen3asr-fp8"},
12 )
13 return r.json().get("text", "")
The recipes and scripts used to quantize this model can be found in the following repository: