Model reference · open weights
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 by | primeline |
|---|---|
| Type | Audio & music |
| Task | Speech→text |
| Runs with | nemo |
| Released | 2025-12-10 |
| Popularity | 1k downloads / month |
| Licence | Open weights |
About
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.
The following table compares the Word Error Rate (WER %) of primeline-parakeet against the base model and other industry standards. Lower is better.
| Model | All (Avg) | Tuda-De | Multilingual LibriSpeech | Common Voice 19.0 |
|---|---|---|---|---|
| primeline-parakeet | 2.95 | 4.11 | 2.60 | 3.03 |
| nvidia-parakeet-tdt-0.6b-v3 | 3.64 | 7.05 | 2.95 | 3.70 |
| openai-whisper-large-v3 | 3.28 | 7.86 | 2.85 | 3.46 |
| openai-whisper-large-v3-turbo | 3.64 | 8.20 | 3.19 | 3.85 |
primeline-parakeet demonstrates a significant leap in performance for German speech-to-text:
4.11 vs 7.05).This model is designed for developers and researchers requiring high-speed, high-accuracy German transcription for:
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:
This makes primeline-parakeet not just a static model, but a highly adaptable ASR engine that grows with your specific data needs.
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.
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()
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)
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'] # segmFrom the published model card. Full card on the HuggingFace links in the sidebar.
How it works
Using it via the API
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.