Skip to main content

NeMo CTC Models

NeMo CTC models are developed by NVIDIA and provide excellent performance for English speech recognition. They use Connectionist Temporal Classification (CTC) for fast, streaming-capable recognition.

Model Architecture

NeMo CTC models use a simple, efficient architecture:
  • Model (model.onnx or model.int8.onnx) – Single neural network
  • Tokens (tokens.txt) – Token vocabulary
CTC models are faster than encoder-decoder models because they don’t require autoregressive decoding.

When to Use

English Streaming

Real-time English transcription with low latency

Live Captions

English subtitles for videos or meetings

Fast Recognition

Quick batch transcription of English audio

Voice Assistants

English voice interfaces and commands

Supported Languages

NeMo CTC models are primarily designed for:
  • English (US, UK, and other variants)
  • Some multilingual variants available (check download page)
For other languages, consider Whisper, Paraformer (Chinese), or multilingual transducer models.

Performance Characteristics

NeMo CTC Models

Browse and download pretrained NeMo CTC models

Configuration Example

Offline Transcription

Streaming Recognition

With Hardware Acceleration

Model Detection

NeMo CTC models are detected by:
  • Folder name containing nemo or parakeet
  • Presence of model.onnx (or model.int8.onnx) and tokens.txt
Expected files:
  • model.onnx (or model.int8.onnx)
  • tokens.txt

Performance Tips

Use Quantized Models

Int8 quantization provides excellent speedup:

Optimize for Real-Time

For streaming applications:

Hardware Acceleration

Streaming Support

Streaming: ✅ YesNeMo CTC models have excellent streaming support. Use createStreamingSTT() for real-time recognition with low latency.

Advantages

  1. Fast: CTC decoding is very fast
  2. Low Latency: Excellent for real-time applications
  3. Streaming: Native streaming support
  4. High Accuracy: NVIDIA-trained models with excellent English accuracy
  5. Low Memory: Efficient single-model architecture
  6. Mobile-Friendly: Small models suitable for mobile deployment

Limitations

  1. English-Focused: Primarily designed for English (limited multilingual support)
  2. No Hotwords: Does not support contextual biasing (use transducer models for hotwords)
  3. Domain-Specific: Best for general English (specialized domains may need fine-tuning)

Parakeet Models

NeMo Parakeet is a family of streaming ASR models:
  • Detected with parakeet in folder name
  • Same nemo_ctc model type
  • Optimized for low latency

Use Cases

Voice Commands

English voice control for apps and IoT devices

Live Captions

Real-time English subtitles for videos

Call Transcription

Transcribing English phone calls and meetings

Voice Assistants

English voice interfaces with fast response

Common Issues

  • Verify folder name contains nemo or parakeet
  • Check that model.onnx and tokens.txt are present
  • Ensure sufficient device memory
  • NeMo CTC models are optimized for English
  • Use Whisper or Paraformer for other languages
  • Check if a multilingual variant is available
  • Increase numThreads on multi-core devices
  • Use preferInt8: true for quantized models
  • Enable hardware acceleration with provider
  • Adjust endpoint config for faster utterance detection

Comparison with Other Models

Next Steps

Streaming STT

Learn about real-time recognition

STT API

Detailed API documentation

Model Setup

How to download and bundle models

Execution Providers

Hardware acceleration options