CoolFace
Modelpublic

JacobLinCool/TEA-ASR-1.1-mini

sourceHugging Facemitupdated 3mo agoView on Hugging Face
4likes1.3kdownloads
Model Card

TEA-ASR-1.1-mini · Taiwan Everyday Audio 🍡

TEA-ASR is an open, drop-in speech-recognition model purpose-built for Taiwan Mandarin. It turns real speech into natural Traditional Chinese with authentic Taiwan vocabulary, and it stays robust through the everyday Mandarin–English code-switching common in Taiwan. Adapted from the state-of-the-art Qwen3-ASR foundation and merged into a single self-contained checkpoint, TEA-ASR loads and runs exactly like stock Qwen3-ASR β€” no converters, no post-processing.

TEA-ASR-1.1-mini is the 780M compact model (best accuracy-per-parameter) of the second generation. For the 2B flagship, see `JacobLinCool/TEA-ASR-1.1`. Compared with the first-generation TEA-ASR-1-mini, this release substantially improves code-switching β€” ASCEND and CSZS drop by 1.29 and 0.70 points absolute β€” with CommonVoice roughly level.

Need a controllable numeral style? The `TEA-ASR-1.1-mini-fmt` variant adds a numeral-convention dial for formatting-sensitive, Mandarin-dominant audio (it trades dense code-switch robustness β€” see its card). This model stays the best compact pick for recognition.

What's new in 1.1-mini

  • β€”πŸ”€ Code-switch leap β€” ASCEND 12.49 β†’ 11.20, CSZS 13.21 β†’ 12.51; embedded English is transcribed, not translated.
  • β€”πŸ·οΈ Format tags β€” trained with output-convention tags: an optional decoder-prefix control that biases toward verbatim English and a chosen numeral style (see Format tags).
  • β€”πŸͺΆ Still a single drop-in checkpoint, < 10 hours of public training audio, no runtime post-processing.

Quick start

bash
pip install qwen-asr
python
from qwen_asr import Qwen3ASRModel

model = Qwen3ASRModel.from_pretrained("JacobLinCool/TEA-ASR-1.1-mini")
result = model.transcribe(audio="utterance.wav", language="Chinese")[0]
print(result.text)   # -> Traditional Chinese with Taiwan lexicon

Set language="Chinese" for Taiwan speech (recommended). You can also pass a context= string of hotwords (names, jargon) for contextual biasing, exactly as with the base Qwen3-ASR.

Benchmark results

Mixed Error Rate (MER%, lower is better), all numbers from a single self-measured run under one protocol (see Evaluation). Columns: the two TEA-ASR-1.1 models, the original (unadapted) Qwen3-ASR bases, and two references β€” Breeze-ASR-25 (a Taiwan-specialist ASR) and Whisper-large-v3. Bold = this model.

BenchmarkTEA-ASR-1.1TEA-ASR-1.1-miniQwen3-ASR-1.7BQwen3-ASR-0.6BBreeze-ASR-25Whisper-large-v3
CommonVoice 19 (zh-TW)3.585.123.905.798.0310.17
ASCEND (zh-en)9.6011.2010.5712.5417.5319.61
CSZS (zh-en)10.9412.5111.0316.0312.1823.24
NTUML20216.677.5310.1211.037.509.68

Generational improvement β€” TEA-ASR-1.1-mini vs TEA-ASR-1-mini (780M, same protocol, lower is better):

BenchmarkTEA-ASR-1.1-miniTEA-ASR-1-miniΞ”
CommonVoice 19 (zh-TW)5.125.14βˆ’0.02
ASCEND (zh-en)11.2012.49βˆ’1.29
CSZS (zh-en)12.5113.21βˆ’0.70
NTUML20217.537.37+0.16

How to read this. 1.1-mini delivers most of the 2B flagship's quality at well under half the parameters (780M vs 2B) and leads every 0.6B-class system in the table. Against the first-generation mini it is a clear code-switch upgrade (ASCEND βˆ’1.29, CSZS βˆ’0.70), trading a small step back on the in-domain lecture set (NTUML2021 +0.16). The metric folds away script differences (see Evaluation), so it does not reflect the decisive practical change: TEA-ASR emits Traditional script and Taiwan vocabulary natively, whereas the base produces Simplified script.

Format tags

TEA-ASR-1.1-mini was trained with output-convention format tags β€” an optional prefix, in the same channel as the language hint, that steers formatting without changing the recognition:

  • β€”`keep-en` β€” transcribe embedded English verbatim (do not translate dense code-switch).
  • β€”`digits` / `zh-num` β€” force Arabic (123) or Chinese (δΈ€δΊŒδΈ‰) numerals.

Plain decoding (no tag) works well by default; the tags are for callers who need a specific convention. Try them interactively in the Space.

Evaluation

  • β€”Metric β€” Mixed Error Rate (MER). Character Error Rate for Chinese and Word Error Rate for the English tokens, computed jointly per utterance and micro-averaged.
  • β€”Content fold (applied uniformly to every dataset and every system). Before scoring, both the reference and the hypothesis are normalized to a common form β€” converted to Simplified Chinese with OpenCC (`t2s`), lowercased, and stripped of punctuation. This isolates recognition from script style, so a Simplified-output model and a Traditional-output model (TEA-ASR) are compared fairly on content. (TEA-ASR's actual output is Traditional; the fold is only for scoring.)
  • β€”Decoding. TEA-ASR and Qwen3-ASR are decoded with language=Chinese; Whisper-large-v3 and Breeze-ASR-25 use their own automatic language detection. All systems are scored with the same code on the same public splits; we do not import numbers reported elsewhere.
DatasetWhat it testsEval split (n)
CommonVoice 19 (zh-TW)Read Taiwan-Mandarin speechfull test (5013)
ASCENDSpontaneous Mandarin–English code-switch conversationfull test (1315)
CSZS (zh-en)Zero-resource code-switch benchmarkfull test (3176)
NTUML2021Mandarin lecture speech (university ML course)test[:2000]
  • β€”No train/test leakage. Fine-tuning used only the training pools, disjoint from every evaluation split: the NTUML2021 train split, the ASCEND train split, and a CommonVoice slice drawn from validated_without_test. Evaluation runs on the full, untouched test splits; CSZS is not used in training at all. Every number above is leak-free.

How it was built

  • β€”Base Qwen/Qwen3-ASR-0.6B (AuT audio encoder + Qwen3 decoder).
  • β€”Adaptation: a rank-16 decoder LoRA (plus a low-LR encoder LoRA) trained on under 10 hours of public audio (CommonVoice zh-TW, ASCEND, NTUML2021, and TaiMECS), with general + code-switch replay and English-preservation training so dense code-switch is transcribed, not translated, plus error-analysis-driven targeted supplements and the format-tag conditioning above.
  • β€”Localization: Traditional-script + Taiwan-lexicon output is rendered through the model's own tokenizer (baked once at build time); there is no post-processing at inference.
  • β€”Packaging: the adapter is merged into the base and the localized tokenizer is shipped with it, so the release is a single drop-in checkpoint that loads like stock Qwen3-ASR (decode verified bit-exact on 152k+ sequences).
  • β€”Decoding tip: pass language="Chinese" for Taiwan speech; this also prevents translation-style outputs on dense code-switch.

Limitations

  • β€”Compact-model trade-off: on the hardest code-switch sets and on in-domain lectures the 780M mini trails the 2B TEA-ASR-1.1; for the best accuracy prefer the flagship.
  • β€”Scope: validated on the Qwen3-ASR family; loads via the qwen-asr package exactly like the base.

Acknowledgements

  • β€”Base model: Qwen3-ASR by Alibaba Cloud (Apache-2.0; underlying weights remain subject to the Apache-2.0 license and its attribution/NOTICE terms).
  • β€”TaiMECS (CC-BY-4.0).
  • β€”Benchmarks: Common Voice (Mozilla), ASCEND (CAiRE), CSZS, NTU ML2021.

Citation

bibtex
@misc{teaasr2026,
  title  = {Tokenizer-First Adaptation of Mandarin ASR to Taiwan Mandarin},
  author = {TEA-ASR contributors},
  year   = {2026},
  note   = {TEA-ASR (Taiwan Everyday Audio); adapted from Qwen3-ASR}
}

The TEA-ASR adaptation and this checkpoint are released under the MIT License.