When will new paramformer large model opensource? #2310
-
|
The current paraformer is good, but not good enough, any plan to opensource upgrade model? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Short answer: there is still no public release date or committed ETA for a successor specifically named a new Paraformer-Large checkpoint. As of 2026-07-16, the current FunASR model table still lists the public offline and streaming Paraformer models as the 220M What has changed since this question was opened is the recommended model choice:
The Nano checkpoints are not drop-in replacements for every Paraformer output contract. In particular, do not migrate only because the model is newer if your application depends on Paraformer timestamps, hotwords, streaming behavior, latency, or memory usage. The current selection guide explicitly keeps Paraformer for Mandarin timestamp/hotword workloads and recommends benchmarking the alternatives on representative audio. Selection guide Benchmark checklist Minimal GPU comparison: from funasr import AutoModel
# Current Paraformer production contract
paraformer = AutoModel(
model="paraformer-zh",
vad_model="fsmn-vad",
punc_model="ct-punc",
device="cuda:0",
)
# Accuracy/context candidate for zh/en/ja + Chinese dialects/accents
nano = AutoModel(
model="FunAudioLLM/Fun-ASR-Nano-2512",
device="cuda:0",
)
# Separate multilingual checkpoint
mlt_nano = AutoModel(
model="FunAudioLLM/Fun-ASR-MLT-Nano-2512",
device="cuda:0",
)Use the same 20-50 representative files and record CER/WER, latency, throughput, peak memory, model revision, and required output fields. That gives an actionable upgrade decision today; a future Paraformer release should only be treated as available after it appears in the official model table or release notes. |
Beta Was this translation helpful? Give feedback.
Short answer: there is still no public release date or committed ETA for a successor specifically named a new Paraformer-Large checkpoint.
As of 2026-07-16, the current FunASR model table still lists the public offline and streaming Paraformer models as the 220M
paraformer-zhfamily. The releases published after this question was opened do not announce a successor Paraformer checkpoint, so it would be misleading to promise a date that has not been published. Current model table ReleasesWhat has changed since this question was opened is the recommended model choice: