CoolFace
Modelpublic

JacobLinCool/TEA-ASR-1-mini

sourceHugging Facemitupdated 3mo agoView on Hugging Face
1likes43downloads
Model Card

TEA-ASR-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 β€” while matching or surpassing both a dedicated Taiwan specialist and a large multilingual model on every public benchmark we evaluate.

TEA-ASR-1-mini is the 780M compact model (best accuracy-per-parameter). A companion TEA-ASR-1 shares the identical recipe β€” see `JacobLinCool/TEA-ASR-1`.

Key features

  • β€”πŸŽ― Built for Taiwan Mandarin β€” Traditional script and Taiwan-style word choice, produced by the model itself.
  • β€”πŸ”€ Code-switch robust β€” handles natural zh-en mixing instead of translating Mandarin into English.
  • β€”πŸ§© Drop-in Qwen3-ASR compatible β€” same loading and inference API as the base model; nothing else to install or call.
  • β€”πŸͺΆ Lightweight adaptation β€” a small decoder LoRA on a frozen audio encoder, trained on a few hours of public audio, then merged for deployment.

Quick start

bash
pip install qwen-asr
python
from qwen_asr import Qwen3ASRModel

model = Qwen3ASRModel.from_pretrained("JacobLinCool/TEA-ASR-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 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-1TEA-ASR-1-miniQwen3-ASR-1.7BQwen3-ASR-0.6BBreeze-ASR-25Whisper-large-v3
CommonVoice 19 (zh-TW)3.645.143.905.798.0310.17
ASCEND (zh-en)10.5912.4910.5712.5417.5319.61
CSZS (zh-en)10.9813.2111.0316.0312.1823.24
NTUML20216.807.3710.1211.037.509.68

How to read this. TEA-ASR-1-mini is the efficient model on this page. Across the suite, TEA-ASR-1 posts the best (or tied-best) error rate on every benchmark, ahead of the Taiwan-specialist Breeze-ASR-25 and far ahead of Whisper-large-v3; TEA-ASR-1-mini delivers most of that quality at well under half the parameters (780M vs 2B). Against the unadapted Qwen3-ASR base, the gain in this content-folded recognition metric is largest on in-domain lectures (NTUML2021); on the other sets recognition is on par or better β€” and, importantly, 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.

Speed & memory

Measured on NVIDIA RTX 5090 (32 GB) (bf16, batch 1, 50 utterances, greedy decode). xRT = audio seconds processed per wall-clock second (higher is faster); RTF = wall-clock / audio (lower is faster); peak VRAM is the maximum allocated during inference.

ModelParamsxRT ↑RTF ↓Peak VRAM (GB) ↓
TEA-ASR-12B11.00.0914.16
TEA-ASR-1-mini780M8.10.1241.65
Breeze-ASR-251.54B5.50.1824.41
Whisper-large-v31.54B4.70.2144.41

Figures

Accuracy across the four public benchmarks (content-fold MER%, lower is better):

[image]

Speed and memory (single GPU, bf16, batch 1):

[image]

Ablation β€” tokenizer Γ— finetune. Content MER isolates the finetune gain (the script fold hides tokenizer effects); raw MER isolates the tokenizer-first localization that makes the output Traditional + Taiwan-lexicon:

[image]

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 (e.g. the base) 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 (CommonVoice's official non-test pool, disjoint from its test split). Evaluation therefore runs on the full, untouched CommonVoice / ASCEND / NTUML2021 test splits; CSZS is a separate dataset not used in training at all. Every number above is leak-free.

How it was built

  • β€”Base Qwen/Qwen3-ASR-0.6B (frozen AuT audio encoder + Qwen3 decoder).
  • β€”Adaptation: a rank-16 decoder-only LoRA trained on a few hours of public audio (CommonVoice zh-TW, ASCEND, NTUML2021), with general + code-switch replay to preserve the base model's broad and bilingual ability. The audio encoder is left frozen.
  • β€”Localization: Traditional-script + Taiwan-lexicon output is rendered through the model's own tokenizer (the surface mapping is baked once at build time); there is no post-processing at inference β€” the Traditional output comes straight from the model's own tokenizer decode.
  • β€”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.
  • β€”Decoding tip: pass language="Chinese" for Taiwan speech; this also prevents translation-style outputs on dense code-switch.

Limitations

  • β€”Dense synthetic code-switch (CSZS): the smaller TEA-ASR-1-mini trails the Taiwan specialist on this set; the flagship TEA-ASR-1 leads it. For heavy code-switch, prefer TEA-ASR-1.
  • β€”Scope: validated on the Qwen3-ASR family (0.6B and 1.7B); the released models load via the qwen-asr package, exactly like the base.

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}
}

Built on Qwen3-ASR (Apache-2.0). The TEA-ASR adaptation and this checkpoint are released under the MIT License; the underlying Qwen3-ASR weights remain subject to the Apache-2.0 license and its attribution/NOTICE terms.