Model reference · open weights

parakeet-primeline

Available as managed deployment Audio primeline Speech→text 1 variants 1k dl/mo

parakeet-primeline is an open-weight audio or speech model from primeline. AxForge deploys and operates it for you on dedicated EU-owned hardware — with the licence handled where one is required.

Available as managed deployment — configured and operated for you on dedicated EU hardware, quoted per deployment.

What it is

Released byprimeline
TypeAudio & music
TaskSpeech→text
Runs withnemo
Released2025-12-10
Popularity1k downloads / month
LicenceOpen weights

About

What parakeet-primeline is

Description

primeline-parakeet is a state-of-the-art, 600-million-parameter multilingual Automatic Speech Recognition (ASR) model, specifically optimized for high-precision German transcription. It is based on the NVIDIA parakeet-tdt-0.6b-v3 architecture, utilizing the efficient FastConformer encoder and Token-and-Duration Transducer (TDT) decoder.

While the base model provides broad European language support, primeline-parakeet has been refined to deliver superior accuracy in German contexts, significantly reducing Word Error Rates (WER) across diverse benchmarks compared to both the original NVIDIA release and various Whisper-based architectures.

Read the full model card

Key Features

  • Optimized for German: Exceptional performance on German datasets like Tuda-De.
  • High Efficiency: Built on the TDT architecture, offering significantly higher throughput than standard Transducer models.
  • Rich Outputs: Includes automatic punctuation, capitalization, and precise word-level timestamps.
  • Robustness: Maintains high accuracy across different domains, from clean read speech to spontaneous conversations.
  • Long-Audio Support: Capable of transcribing audio files up to several hours in length using local attention mechanisms.

Performance

The following table compares the Word Error Rate (WER %) of primeline-parakeet against the base model and other industry standards. Lower is better.

ModelAll (Avg)Tuda-DeMultilingual LibriSpeechCommon Voice 19.0
primeline-parakeet2.954.112.603.03
nvidia-parakeet-tdt-0.6b-v33.647.052.953.70
openai-whisper-large-v33.287.862.853.46
openai-whisper-large-v3-turbo3.648.203.193.85

Analysis

primeline-parakeet demonstrates a significant leap in performance for German speech-to-text:

  • 41% improvement on the Tuda-De benchmark compared to the NVIDIA base model (4.11 vs 7.05).
  • Outperforms OpenAI Whisper-large-v3 across all tested categories while maintaining a much smaller and more efficient parameter count (0.6B).

Model Architecture

  • Architecture Type: FastConformer-TDT (Hybrid Transducer/CTC)
  • Parameters: 600 Million
  • Input: 16kHz Mono-channel audio (WAV, FLAC)
  • Output: Text (including Punctuation and Capitalization)

Use Cases

This model is designed for developers and researchers requiring high-speed, high-accuracy German transcription for:

  • Media & Entertainment: Subtitle generation and automated captioning.
  • Enterprise: Meeting minutes, call center analytics, and documentation.
  • Accessibility: Real-time speech-to-text services.
  • Research: Large-scale linguistic data processing.

Why This Model is a Game Changer: Instant Domain Adaptation

Beyond its compact 600M parameter size and blazing-fast TDT inference speed, the true power of primeline-parakeet lies in its architecture's compatibility with external Language Models (LM).

Unlike many modern ASR models that are "locked" after training, this model supports Shallow Fusion with KenLM-based N-gram models. This allows for massive accuracy gains without the need to retrain the neural network itself:

  • Zero-Retrain Customization: You can enhance the ASR accuracy by simply training a lightweight, "cheap" LM on pure text data (e.g., legal documents, medical records, or company-specific jargon).
  • Drastic Error Reduction: Internal tests show that adding a general-purpose LM can lower the Word Error Rate (WER) by up to 20%.
  • Niche Specialization: When targeting specific industries with unique vocabulary, the enhancement is even more significant, allowing the model to recognize specialized terms that standard models would miss.
  • Low Resource Requirements: Since the LM only processes text and works alongside the pre-trained ASR model, you can adapt your pipeline to new domains in minutes on standard CPU hardware.

This makes primeline-parakeet not just a static model, but a highly adaptable ASR engine that grows with your specific data needs.


Quellen für diese Integration:

  1. NVIDIA NeMo: GPU Language Modeling and Customization
  2. NVIDIA NeMo: Training N-gram LMs for ASR

To train, fine-tune or play with the model you will need to install NVIDIA NeMo. We recommend you install it after you've installed latest PyTorch version.

pip install -U nemo_toolkit['asr']

The model is available for use in the NeMo toolkit, and can be used as a pre-trained checkpoint for inference or for fine-tuning on another dataset.

Automatically instantiate the model

from huggingface_hub import hf_hub_download
from nemo.collections.asr.models import ASRModel
model_path = hf_hub_download(
    repo_id="primeline/parakeet-primeline", filename="2_95_WER.nemo"
)

asr_model = ASRModel.restore_from(model_path, map_location="cpu")
asr_model.eval()

Transcribing using Python

First, let's get a sample

wget https://dldata-public.s3.us-east-2.amazonaws.com/2086-149220-0033.wav

Then simply do:

output = asr_model.transcribe(['2086-149220-0033.wav'])
print(output[0].text)
Transcribing with timestamps

To transcribe with timestamps:

output = asr_model.transcribe(['2086-149220-0033.wav'], timestamps=True)
# by default, timestamps are enabled for char, word and segment level
word_timestamps = output[0].timestamp['word'] # word level timestamps for first sample
segment_timestamps = output[0].timestamp['segment'] # segm

From the published model card. Full card on the HuggingFace links in the sidebar.

How it works

How audio & music work

Audio or textinputAudio modelrecognise / synthesiseText or audiooutputSpeech-to-text turns audio into text; text-to-speech and music models turn text into audio.

Using it via the API

Call it like any OpenAI endpoint

Once AxForge deploys parakeet-primeline for you, it answers on the OpenAI-compatible API — the same base URL and keys as every other model. (parakeet-primeline below is illustrative; you get the exact model name on deployment.)

$ curl -sS https://api.axforge.ai/v1/audio/transcriptions \
  -H "Authorization: Bearer $AXFORGE_API_KEY" \
  -F model="parakeet-primeline" -F file=@audio.mp3

Create an account — your API key is available in the console. 3M free tokens every 30 days with every new account.

© 2026 AxForge · EU-hosted AI infrastructure Pricing Docs Trust Privacy Terms