Views
No views yet
primeline/parakeet-primeline,
a 600M-parameter German ASR model built on the NVIDIA FastConformer encoder with a
Token-and-Duration Transducer (TDT) decoder. The export runs on ONNX Runtime through
onnx-asr, so transcription needs neither PyTorch
nor the NeMo toolkit. Output keeps punctuation and capitalisation.1import onnx_asr
2
3model = onnx_asr.load_model("OpenVoiceOS/primeline-parakeet-onnx")
4print(model.recognize("audio.wav"))int8 weights load with quantization="int8".ovos-stt-plugin-onnx-asr:1{
2 "stt": {
3 "module": "ovos-stt-plugin-onnx-asr",
4 "ovos-stt-plugin-onnx-asr": {
5 "model": "OpenVoiceOS/primeline-parakeet-onnx"
6 }
7 }
8}| File | Size | Notes |
|---|---|---|
encoder-model.onnx + encoder-model.onnx.data | 2.5 GB | FP32 encoder, weights in one external-data file |
decoder_joint-model.onnx | 73 MB | FP32 decoder + joint network |
encoder-model.int8.onnx | 654 MB | INT8 dynamic, per-channel |
decoder_joint-model.int8.onnx | 18 MB | INT8 dynamic, per-channel |
vocab.txt | SentencePiece tokens plus the <blk> CTC blank | |
config.json | nemo-conformer-tdt, 128 mel features, subsampling factor 8 |
ASRModel.restore_from(...) followed by model.export(), which writes the
encoder and the fused decoder-joint graph separately. INT8 variants come from ONNX Runtime
dynamic quantization with per-channel weights.