Quantization performed with NVIDIA ModelOpt
using INT8 SmoothQuant (mtq.INT8_SMOOTHQUANT_CFG).
Only the LLM decoder (thinker.model, ~1.4 B / 82% of parameters) is quantized;
audio_tower and lm_head remain in FP16.
Performance — Jetson Orin Nano 8 GB
Evaluated on 760 VIVOS Vietnamese test samples.
BF16 baseline WER: 7.34% (measured on x86; not runnable on Nano due to memory).
Metric
Value
WER
9.07%
RTF
0.2190
Throughput
1.29 samples/s
RAM footprint
4.2 GB
Intended Use
This checkpoint is the input to the TRT-EdgeLLM export pipeline.
It is not directly loadable by standard transformers inference —
use it with qwen-asr-optimization
to export to ONNX and build TRT engines.
[This checkpoint]
│
▼ scripts/02_export_onnx.sh
ONNX artefacts
│
▼ scripts/03_build_engine.sh (Jetson Orin AGX)
TRT engines
│
▼ inference.py / scripts/04_benchmark.sh (Jetson Orin Nano)
Transcription
1git clone https://github.com/VLAOpt/qwen-asr-optimization.git
2cd qwen-asr-optimization
34# Download this checkpoint5huggingface-cli download vrfai/qwen3asr-int8 --local-dir ./Qwen3-ASR-1.7B-int8
67# Export to ONNX (x86)8bash trt-edgellm/scripts/02_export_onnx.sh ./Qwen3-ASR-1.7B-int8 ./Qwen3-ASR-1.7B-int8-ONNX
910# Build TRT engines (Jetson Orin AGX — see README for INT8 C++ patch)11bash trt-edgellm/scripts/03_build_engine.sh \12 ~/Qwen3-ASR-1.7B-int8-ONNX \13 ~/Qwen3-ASR-1.7B-int8-Engines
1415# Single-file inference (Jetson Orin Nano)16python trt-edgellm/inference.py \17 --audio /path/to/audio.wav \18 --engine_dir ~/Qwen3-ASR-1.7B-int8-Engines
INT8 note: Before building engines on AGX, apply the
setBuilderOptimizationLevel(2) patch to llmBuilder.cpp and audioBuilder.cpp
in the TensorRT-Edge-LLM source. See
trt-edgellm/README.md
for the exact instructions.