Views
No views yet
typhoon-ai/typhoon-asr-streaming-nemotron-0.6b.
Trained on the ASR training transcripts plus a synthetic in-domain corpus (English
code-switch terms inserted into LLM-generated Thai carrier templates) — no evaluation
data. Tokenizer-locked: it works only with the matching model's tokenizer.ngram_4gram_agg.nemo (~2.4 GB, NeMo NGramGPULanguageModel binary). It ships as a
.nemo binary rather than ARPA because the 15k aggregate vocabulary corrupts the ARPA
chr() token encoding — the binary is offset-independent and is the supported artifact.docs/SHALLOW_FUSION.md):1from omegaconf import OmegaConf
2
3cfg = {"strategy": "greedy_batch", "greedy": {
4 "ngram_lm_model": "ngram_4gram_agg.nemo",
5 "ngram_lm_alpha": 0.5,
6}}
7model.change_decoding_strategy(OmegaConf.create(cfg))
8model.set_inference_prompt("th-TH") # re-apply after changing decoding strategy
9model.decoding.set_strip_lang_tags(True)LICENSE in this repository), matching the paired
acoustic model, which derives from NVIDIA's Nemotron streaming ASR base. "Nemotron" is an
NVIDIA trademark, used only to identify the base model; this release is not affiliated
with or endorsed by NVIDIA. Built by SCB DataX for the Typhoon ASR Streaming project.