Instructions to use dys-asr/parakeet-tdt-0.6b-syn with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use dys-asr/parakeet-tdt-0.6b-syn with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="dys-asr/parakeet-tdt-0.6b-syn")# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("dys-asr/parakeet-tdt-0.6b-syn", device_map="auto") - Notebooks
- Google Colab
- Kaggle
parakeet-tdt-0.6b-syn
nvidia/parakeet-tdt-0.6b-v3 fine-tuned for English atypical-speech
recognition on real and synthetic dysarthric speech. The real training set joins
the Speech Accessibility Project corpora, HeyJay! (ICPSR 39448), and one Google
Project Relate takeout of UK ataxic speech. It is augmented with 103.1 hours of
zero-shot CosyVoice speech conditioned on recordings from dysarthric speakers.
This is a token-and-duration transducer (TDT), not CTC. It has a prediction network, joint network, and duration head, and decoding is autoregressive.
Evaluation
On all 17,582 utterances from the 48 SAPC2 dev speakers who appear nowhere in the real training data:
| model | WER | CER |
|---|---|---|
dys-asr/parakeet-tdt-0.6b-unconstrained |
10.52% | 6.45% |
| this model | 10.87% | 6.72% |
Both scores use greedy decoding without a language model and the same transcript
normaliser. Adding the synthetic corpus did not improve this benchmark: this
checkpoint is 0.35 WER points and 0.27 CER points worse than the
unconstrained checkpoint.
That is not a perfectly controlled synthetic-data ablation. This run accepts audio up to 45 seconds instead of 30 seconds and uses a different physical batch layout, although both runs have effective batch 32 and BatchNorm statistics over 16 examples. The result supports no claim that synthetic augmentation helps.
Read the evaluation set carefully
Training includes SAPC1 dev, which shares 28,253 recordings and 76 of SAPC2 dev's 124 speakers. Neither SAPC1 dev nor all of SAPC2 dev is therefore a fair test. The reported set contains only the 48 SAPC2 dev speakers absent from training (17,582 utterances, 126,993 reference words, 35.6 hours).
This subset has no Parkinson's speech: all 35 Parkinson's speakers in SAPC2 dev also appear in SAPC1 dev. It is consequently harder than SAPC2 dev as a whole, and its WER should not be compared directly with results reported on the full dev split.
Requirements and usage
transformers>=5.9 is required. Earlier Transformers releases do not
provide ParakeetForTDT.
import torch
from transformers import AutoProcessor, ParakeetForTDT
model_id = "dys-asr/parakeet-tdt-0.6b-syn"
processor = AutoProcessor.from_pretrained(model_id)
model = ParakeetForTDT.from_pretrained(model_id).eval()
# `audio` is a mono waveform sampled at 16 kHz.
inputs = processor(audio, sampling_rate=16_000, return_tensors="pt")
with torch.inference_mode():
outputs = model.generate(**inputs)
text = processor.batch_decode(outputs.sequences, skip_special_tokens=True)
print(text)
Autoregressive TDT decoding is substantially slower than framewise CTC decoding—roughly an order of magnitude fewer samples per second in this model family.
Output text convention
The model emits lower-case, unpunctuated text with numbers written as words.
audio: "lower the temperature three degrees"
output: lower the temperature three degrees
Lower-casing is part of training rather than display post-processing. The v3 tokenizer is overwhelmingly lower-case; capitalized labels fragment into many more tokens. Evaluation normalises both references and hypotheses consistently.
Training data
The input manifest contains 469,430 recordings (1,023.2 hours). Duration and label-length filters leave 463,740 training examples.
| source | recordings | duration |
|---|---|---|
| deduplicated SAPC1 train + dev and SAPC2 train | 403,514 | 904.6 h |
| HeyJay! (ICPSR 39448) | 8,577 | 13.3 h |
| Project Relate takeout, UK ataxia | 1,351 | 2.2 h |
| synthetic CosyVoice speech | 55,988 | 103.1 h |
| total before filtering | 469,430 | 1,023.2 h |
SAPC2 republishes much of SAPC1. Real SAP recordings are deduplicated by audio filename so those utterances are not silently upweighted. Square-bracketed interview prompts, which were shown but not spoken, are removed from labels.
The underlying corpora have separate access terms. The Speech Accessibility Project data is governed by its data-use agreement; HeyJay! and the Project Relate takeout carry their own terms. Publishing model weights does not publish the source recordings, but reproducing this training set requires authorized access to each corpus.
Synthetic corpus
The synthetic set was generated with a fine-tuned Fun-CosyVoice3 model in zero-shot voice-cloning mode and converted to 16 kHz mono PCM. Its reference voices come from real Speech Accessibility Project recordings. Reference speakers are sampled within etiology with probability proportional to the square root of their baseline CER, softly emphasizing voices the stock ASR model finds difficult.
| target etiology | utterances | duration |
|---|---|---|
| Cerebral Palsy | 27,994 | 52.6 h |
| Down Syndrome | 16,796 | 30.3 h |
| Stroke | 9,518 | 17.5 h |
| ALS | 1,680 | 2.7 h |
The text mix is 30% uncommon existing SAP transcripts, 50% novel SAP-like sentences, and 20% sentences targeted at errors made by the baseline recognizer. The manifest retains whether each example is existing, novel, or error-targeted, along with its reference speaker and that speaker's baseline CER.
Synthetic speech can contain TTS artifacts, can imperfectly reproduce a speaker's impairment, and does not create independent speaker diversity when it is conditioned on voices already represented in the source corpus. It must not be treated as a clinical simulation or as evidence about any diagnosis.
Training hyperparameters
| base model | nvidia/parakeet-tdt-0.6b-v3 |
| optimizer | AdamW, weight decay 0.01 |
| learning rate | 1e-4 |
| schedule | tri-stage, 10% warmup, 40% hold |
| per-device batch | 4 x 4 GPUs, SyncBatchNorm over 16 |
| gradient accumulation | 2 |
| effective batch | 32 |
| epochs | 10 (144,920 optimizer updates) |
| precision | bf16 mixed precision, float32 weights |
| layerdrop | 0.05 |
| gradient clipping | 1.0 |
| audio duration | 0.5-45 s |
| max label length | 130 tokens |
| gradient checkpointing | off |
| batch sampling | length-grouped |
| speed perturbation | 0.9 / 1.0 / 1.1 |
| SpecAugment | time 0.05 x 10 frames; frequency 0.4 x 27 bins |
| seed | 42 |
Model weights remain float32 under bf16 autocast. Loading the checkpoint itself in bfloat16 can fail because the feature extractor emits float32 and the first convolution requires matching dtypes.
WER on the fixed 4,000-utterance development subset by epoch:
| epoch | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
|---|---|---|---|---|---|---|---|---|---|---|
| WER | 13.79 | 12.70 | 12.03 | 11.75 | 11.81 | 11.50 | 11.03 | 11.08 | 11.03 | 10.79 |
| CER | 8.76 | 7.89 | 7.46 | 7.14 | 7.29 | 7.00 | 6.79 | 6.84 | 6.89 | 6.72 |
Epoch 10 is the released checkpoint. On the full held-out split it scores 10.87% WER and 6.72% CER.
Limitations
- Requires
transformers>=5.9and autoregressive decoding is slow relative to CTC. - Produces lower-case, unpunctuated English with numerals written as words.
- The multilingual base model was fine-tuned only on English, so its original multilingual capability is not preserved or evaluated.
- The synthetic corpus did not improve the held-out benchmark relative to the closest real-data model.
- The held-out set excludes Parkinson's speech and is not representative of all etiologies in training.
- HeyJay!, Project Relate, and the synthetic reference voices all appear in training, leaving no clean out-of-corpus evaluation for those sources.
- Synthetic samples may contain voice-cloning artifacts and should not be used as clinical representations of disability.
- Results are from one training seed, with no variance estimate or per-speaker breakdown.
- Downloads last month
- 42
Model tree for dys-asr/parakeet-tdt-0.6b-syn
Base model
nvidia/parakeet-tdt-0.6b-v3Evaluation results
- WER on SAPC2 dev, speakers held out of SAPC1 devself-reported10.870
- CER on SAPC2 dev, speakers held out of SAPC1 devself-reported6.720