CoolFace
Modelpublic

funasr/Paraformer-large

sourceHugging Faceapache-2.0updated 3mo agoView on Hugging Face
63likes136downloads
Model Card

<div align="center">

⭐ Powered by FunASR — please give us a GitHub Star!

This model is part of the FunASR ecosystem — one industrial-grade open-source toolkit for ASR · VAD · punctuation · speaker diarization · emotion / event · LLM-ASR. A Star really helps the project (and keeps you updated):

**🌟 FunASR** · **🌟 SenseVoice** · **🌟 Fun-ASR** · **🌟 FunClip**

</div>

Paraformer-large (ONNX)

Non-autoregressive ASR with ONNX runtime — optimized for deployment without PyTorch dependency.

This repository contains the ONNX-exported version of Paraformer-large for efficient CPU/GPU inference via ONNX runtime.

Quick Start (PyTorch)

python
from funasr import AutoModel

model = AutoModel(
    model="funasr/paraformer-zh",
    hub="hf",
    vad_model="funasr/fsmn-vad",
    punc_model="funasr/ct-punc",
    device="cuda",
)
result = model.generate(input="audio.wav")
print(result[0]["text"])

ONNX Runtime Usage

python
from funasr_onnx import Paraformer

model = Paraformer("funasr/Paraformer-large", quantize=True)
result = model(audio_in="audio.wav")
print(result)

Features

  • ONNX format for cross-platform deployment
  • Quantized model for faster CPU inference
  • No PyTorch dependency needed at runtime
  • Same accuracy as PyTorch version

Model Details

PropertyValue
ArchitectureParaformer (Non-autoregressive)
Parameters220M
FormatONNX
LanguagesChinese, English
Training Data60,000+ hours

Links