Views
No views yet
| Field | Value |
|---|---|
| Upstream model | Qwen/Qwen3-ASR-0.6B |
| Upstream source revision | 5eb144179a02acc5e5ba31e748d22b0cf3e303b0 |
| Packaging source revision | f67698ca2bffd70570a81db6fd9aeca15c73a8da |
| Export tool/script | qwen3-asr-onnx |
| Quantization recipe | FP32 encoder/decoders plus MatMulNBits INT4 RTN (.int4. filenames, accuracy_level=4) |
| File | Description |
|---|---|
encoder.onnx | Audio encoder — mel spectrogram to features (weights inlined) |
decoder_init.onnx | Decoder prefill — accepts input_ids, outputs logits + KV cache |
decoder_step.onnx | Decoder autoregressive step — accepts input_embeds + KV cache |
decoder_weights.data | Shared external weights for both FP32 decoders (loaded once) |
| File | Description |
|---|---|
encoder.int4.onnx | Encoder (FP32 weights — same as encoder.onnx) |
decoder_init.int4.onnx | int4 decoder prefill |
decoder_step.int4.onnx | int4 decoder step |
decoder_weights.int4.data | Shared external weights for both int4 decoders (loaded once) |
| File | Description |
|---|---|
embed_tokens.bin | Token embedding matrix [151936, 1024], float16 |
tokenizer.json | HuggingFace tokenizer |
config.json | Architecture config, special tokens, mel params |
preprocessor_config.json | Mel spectrogram parameters (WhisperFeatureExtractor format) |
decoder_init (prefill) accepts input_ids and has the embedding table in its graph — handles audio feature scatter internallydecoder_step (autoregressive) accepts pre-looked-up input_embeds — keeps the embedding table out of its graphembed_tokens.bin once at startup and performs the embedding lookup per token before calling decoder_step.preprocessor_config.json (WhisperFeatureExtractor format).encoder.onnx (or encoder.int4.onnx): mel → audio_features<|im_start|>system<|im_end|><|im_start|>user<|audio_start|><|audio_pad|>...<|audio_end|><|im_end|><|im_start|>assistantdecoder_init.onnx (or .int4): input_ids + audio_features + audio_offset → logits + KV cachedecoder_step.onnx (or .int4): look up embed_tokens.bin → input_embeds + KV cache → logits, until EOS| Token | ID |
|---|---|
<|audio_start|> | 151669 |
<|audio_end|> | 151670 |
<|audio_pad|> | 151676 |
<|im_end|> (EOS) | 151645 |
<|endoftext|> (EOS) | 151643 |