AI SeedbankHelp preserve open and free AI for humanity's future

← All models

nvidia_parakeet-ctc-1.1b

nvidia · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


language:

  • en library_name: nemo datasets:
  • librispeech_asr
  • fisher_corpus
  • Switchboard-1
  • WSJ-0
  • WSJ-1
  • National-Singapore-Corpus-Part-1
  • National-Singapore-Corpus-Part-6
  • vctk
  • voxpopuli
  • europarl
  • multilingual_librispeech
  • mozilla-foundation/common_voice_8_0
  • MLCommons/peoples_speech thumbnail: null tags:
  • transformers
  • automatic-speech-recognition
  • speech
  • audio
  • FastConformer
  • Conformer
  • pytorch
  • NeMo
  • hf-asr-leaderboard
  • ctc license: cc-by-4.0 widget:
  • example_title: Librispeech sample 1 src: https://cdn-media.huggingface.co/speech_samples/sample1.flac
  • example_title: Librispeech sample 2 src: https://cdn-media.huggingface.co/speech_samples/sample2.flac model-index:
  • name: parakeet-ctc-1.1b results:
    • task: name: Automatic Speech Recognition type: automatic-speech-recognition dataset: name: AMI (Meetings test) type: edinburghcstr/ami config: ihm split: test args: language: en metrics:
      • name: Test WER type: wer value: 15.62
    • task: name: Automatic Speech Recognition type: automatic-speech-recognition dataset: name: Earnings-22 type: revdotcom/earnings22 split: test args: language: en metrics:
      • name: Test WER type: wer value: 13.69
    • task: name: Automatic Speech Recognition type: automatic-speech-recognition dataset: name: GigaSpeech type: speechcolab/gigaspeech split: test args: language: en metrics:
      • name: Test WER type: wer value: 10.27
    • task: name: Automatic Speech Recognition type: automatic-speech-recognition dataset: name: LibriSpeech (clean) type: librispeech_asr config: other split: test args: language: en metrics:
      • name: Test WER type: wer value: 1.83
    • task: name: Automatic Speech Recognition type: automatic-speech-recognition dataset: name: LibriSpeech (other) type: librispeech_asr config: other split: test args: language: en metrics:
      • name: Test WER type: wer value: 3.54
    • task: type: Automatic Speech Recognition name: automatic-speech-recognition dataset: name: SPGI Speech type: kensho/spgispeech config: test split: test args: language: en metrics:
      • name: Test WER type: wer value: 4.2
    • task: type: Automatic Speech Recognition name: automatic-speech-recognition dataset: name: tedlium-v3 type: LIUM/tedlium config: release1 split: test args: language: en metrics:
      • name: Test WER type: wer value: 3.54
    • task: name: Automatic Speech Recognition type: automatic-speech-recognition dataset: name: Vox Populi type: facebook/voxpopuli config: en split: test args: language: en metrics:
      • name: Test WER type: wer value: 6.53
    • task: type: Automatic Speech Recognition name: automatic-speech-recognition dataset: name: Mozilla Common Voice 9.0 type: mozilla-foundation/common_voice_9_0 config: en split: test args: language: en metrics:
      • name: Test WER type: wer value: 9.02

metrics:

  • wer pipeline_tag: automatic-speech-recognition

Parakeet CTC 1.1B (en)

| |

parakeet-ctc-1.1b is an ASR model that transcribes speech in lower case English alphabet. This model is jointly developed by NVIDIA NeMo and Suno.ai teams. It is an XXL version of FastConformer CTC [1] (around 1.1B parameters) model. See the model architecture section and NeMo documentation for complete architecture details.

NVIDIA NeMo: Training

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 nemo_toolkit['all']

How to Use this Model

There are several ways to use this model. Choose the one that fits your needs.

Run locally with NeMo-Speech.cpp

NeMo-Speech.cpp provides a lightweight native C++ runtime for local inference with this model. After installing the runtime:

hf download nvidia/parakeet-ctc-1.1b \
  parakeet-ctc-1.1b.q8_0.gguf \
  --local-dir models

nemo-speech transcribe audio.wav \
  --model models/parakeet-ctc-1.1b.q8_0.gguf

See the NeMo-Speech.cpp documentation for more details.

NVIDIA NeMo

The model is available for use in the NeMo toolkit [3], and can be used as a pre-trained checkpoint for inference or for fine-tuning on another dataset. Moreover, you can now run Parakeet CTC natively with Transformers 🤗.

Automatically instantiate the model

import nemo.collections.asr as nemo_asr
asr_model = nemo_asr.models.EncDecCTCModelBPE.from_pretrained(model_name="nvidia/parakeet-ctc-1.1b")

Transcribing using NeMo

First, let's get a sample

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

Then simply do:

asr_model.transcribe(['2086-149220-0033.wav'])

Transcribing using Transformers 🤗

Make sure to install transformers from source.

pip install git+https://github.com/huggingface/transformers

➡️ Pipeline usage

from transformers import pipeline

pipe = pipeline("automatic-speech-recognition", model="nvidia/parakeet-ctc-1.1b")
out = pipe("https://huggingface.co/datasets/hf-internal-testing/dummy-audio-samples/resolve/main/bcn_weather.mp3")
print(out)

➡️ AutoModel

from transformers import AutoModelForCTC, AutoProcessor
from datasets import load_dataset, Audio
import torch

device = "cuda" if torch.cuda.is_available() else "cpu"

processor = AutoProcessor.from_pretrained("nvidia/parakeet-ctc-1.1b")
model = AutoModelForCTC.from_pretrained("nvidia/parakeet-ctc-1.1b", dtype="auto", device_map=device)

ds = load_dataset("hf-internal-testing/librispeech_asr_dummy", "clean", split="validation")
ds = ds.cast_column("audio", Audio(sampling_rate=processor.feature_extractor.sampling_rate))
speech_samples = [el['array'] for el in ds["audio"][:5]]

inputs = processor(speech_samples, sampling_rate=processor.feature_extractor.sampling_rate)
inputs.to(model.device, dtype=model.dtype)
outputs = model.generate(**inputs)
print(processor.batch_decode(outputs))

➡️ Training

from transformers import AutoModelForCTC, AutoProcessor
from datasets import load_dataset, Audio
import torch

device = "cuda" if torch.cuda.is_available() else "cpu"

processor = AutoProcessor.from_pretrained("nvidia/parakeet-ctc-1.1b")
model = AutoModelForCTC.from_pretrained("nvidia/parakeet-ctc-1.1b", dtype="auto", device_map=device)

ds = load_dataset("hf-internal-testing/librispeech_asr_dummy", "clean", split="validation")
ds = ds.cast_column("audio", Audio(sampling_rate=processor.feature_extractor.sampling_rate))
speech_samples = [el['array'] for el in ds["audio"][:5]]
text_samples = [el for el in ds["text"][:5]]

# passing `text` to the processor will prepare inputs' `labels` key
inputs = processor(audio=speech_samples, text=text_samples, sampling_rate=processor.feature_extractor.sampling_rate)
inputs.to(device, dtype=model.dtype)

outputs = model(**inputs)
outputs.loss.backward()

For more details about usage, the refer to Transformers' documentation.

Transcribing many audio files

python [NEMO_GIT_FOLDER]/examples/asr/transcribe_speech.py 
 pretrained_name="nvidia/parakeet-ctc-1.1b" 
 audio_dir="<DIRECTORY CONTAINING AUDIO FILES>"

Input

This model accepts 16000 Hz mono-channel audio (wav files) as input.

Output

This model provides transcribed speech as a string for a given audio sample.

Model Architecture

FastConformer [1] is an optimized version of the Conformer model with 8x depthwise-separable convolutional downsampling. The model is trained using CTC loss. You may find more information on the details of FastConformer here: Fast-Conformer Model.

Training

The NeMo toolkit [3] was used for training the models for over several hundred epochs. These model are trained with this example script and this base config.

The tokenizers for these models were built using the text transcripts of the train set with this script.

Datasets

The model was trained on 64K hours of English speech collected and prepared by NVIDIA NeMo and Suno teams.

The training dataset consists of private subset with 40K hours of English speech plus 24K hours from the following public datasets:

  • Librispeech 960 hours of English speech
  • Fisher Corpus
  • Switchboard-1 Dataset
  • WSJ-0 and WSJ-1
  • National Speech Corpus (Part 1, Part 6)
  • VCTK
  • VoxPopuli (EN)
  • Europarl-ASR (EN)
  • Multilingual Librispeech (MLS EN) - 2,000 hour subset
  • Mozilla Common Voice (v7.0)
  • People's Speech - 12,000 hour subset

Performance

The performance of Automatic Speech Recognition models is measuring using Word Error Rate. Since this dataset is trained on multiple domains and a much larger corpus, it will generally perform better at transcribing audio in general.

The following tables summarizes the performance of the available models in this collection with the CTC decoder. Performances of the ASR models are reported in terms of Word Error Rate (WER%) with greedy decoding.

Version Tokenizer Vocabulary Size AMI Earnings-22 Giga Speech LS test-clean SPGI Speech TEDLIUM-v3 Vox Populi Common Voice
1.22.0 SentencePiece Unigram 1024 15.62 13.69 10.27 1.83 3.54 4.20 3.54 6.53

These are greedy WER numbers without external LM. More details on evaluation can be found at HuggingFace ASR Leaderboard

NVIDIA Riva: Deployment

NVIDIA Riva, is an accelerated speech AI SDK deployable on-prem, in all clouds, multi-cloud, hybrid, on edge, and embedded. Additionally, Riva provides:

  • World-class out-of-the-box accuracy for the most common languages with model checkpoints trained on proprietary data with hundreds of thousands of GPU-compute hours
  • Best in class accuracy with run-time word boosting (e.g., brand and product names) and customization of acoustic model, language model, and inverse text normalization
  • Streaming speech recognition, Kubernetes compatible scaling, and enterprise-grade support

Although this model isn’t supported yet by Riva, the list of supported models is here.
Check out Riva live demo.

References

[1] Fast Conformer with Linearly Scalable Attention for Efficient Speech Recognition

[2] Google Sentencepiece Tokenizer

[3] NVIDIA NeMo Toolkit

[4] Suno.ai

[5] HuggingFace ASR Leaderboard

Licence

License to use this model is covered by the CC-BY-4.0. By downloading the public and release version of the model, you accept the terms and conditions of the CC-BY-4.0 license.

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:14cb6e98165f5b06a92009319c271b2552b8a9ed&dn=nvidia_parakeet-ctc-1.1b

Open magnet in torrent client · infohash 14cb6e98165f5b06a92009319c271b2552b8a9ed

Files & hashes

PathSizesha1sha256
README.md12.7 KB (13,026 B)80edf3177e49c1ff244cf393268568d0fe5edd8d1c0d57c1d2d0f0ec0cda6775f7c091c317493208d83f25f2b77d41093cffb33a
config.json962 B (962 B)d3576385b6acb26c5a40489639676356271515adc33a8ddbf447d68d31b2f1d1e4efa061548813b7647913e67560a9b198f06ae1
model.safetensors3.96 GB (4,250,698,604 B)9c1789c5afbee51874faf2fa4476ad5a05d34c4b57e0bc26772f3360b7ae0c087f184364179906674d08fc8b71d48a54d4f52145
parakeet-ctc-1.1b.nemo3.96 GB (4,251,525,120 B)02f95a547d53204b4e328bd703553c8ce791add48e91253dd1380b0988e34606d0b6bdfdf244a4fbb0f67e01a088083fc7485a08
preprocessor_config.json314 B (314 B)54683c2afb1e841dfe59d03ad92c060a6cf50c0d7f26808482a58d8dd187c4b87364810292b91ed7721e099bdbb05ca50da37a98
special_tokens_map.json279 B (279 B)815fbdc56abc60a0f29e51ff2373c998d7779805af8c98917af6cb493513e5f1f8a35efdc28fa82cac15b2bb5f065d64f8bc904d
tokenizer.json402.7 KB (412,363 B)80af47728aab88c918efe5ce9fa5e2d2ceec7511f3f1dd45c3889ed2b5bf67180caf05f51d7d7e4948c20e5f24d8c24df9cc47aa
tokenizer_config.json634 B (634 B)9eed1211df25e491ced8228e05d3f26cf625c49047bf2c494c913e35cad22b0fc1474721219b643a45a5f61c1456646f94699037
vocab.json16.1 KB (16,509 B)a11bef891862fec02e1e0d055b535fb2a5783c0e4d2cda042d92cd2e819e9a03d81b67e6635ab118b207de1f2f80a6349b88185c

Cite this release

Canonical URL
https://aiseedbank.org/models/nvidia_parakeet-ctc-1.1b/
Slug
nvidia_parakeet-ctc-1.1b
Infohash
14cb6e98165f5b06a92009319c271b2552b8a9ed
License
cc-by-4.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: nvidia_parakeet-ctc-1.1b.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorynvidia/parakeet-ctc-1.1b
Revision (pinned)20e63a0fed6aedba145b74b826dbd41df0941730
Fetched at2026-09-04T04:29:28Z
License at fetchcc-by-4.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-04T04:30:52Z

cc-by-4.07.92 GB (8,502,667,811 bytes)nemosafetensorsggufparakeet_ctcautomatic-speech-recognitiontransformersspeechaudioFastConformerConformerpytorchNeMohf-asr-leaderboardctcmodel-indexeval-results1 language (en)paper: 2305.05084