Views
No views yet
encoder.int8.onnx (1.1GB) - INT8 quantized encoder with external weightsencoder.int8.weights (2.0GB) - INT8 encoder weight filedecoder.int8.onnx (7.0MB) - INT8 quantized decoderjoiner.int8.onnx (1.7MB) - INT8 quantized joinertokens.txt (11KB) - Vocabulary fileencoder.onnx (41MB) + encoder.weights (4.0GB) - FP32 encoderdecoder.onnx (28MB) - FP32 decoderjoiner.onnx (6.6MB) - FP32 joiner1# Download all models (12GB)
2huggingface-cli download jenerallee78/parakeet-tdt-1.1b-onnx --local-dir ./models
3
4# Or download just INT8 quantized (3.8GB - recommended)
5huggingface-cli download jenerallee78/parakeet-tdt-1.1b-onnx \
6 --include "encoder.int8.*" "decoder.int8.onnx" "joiner.int8.onnx" "tokens.txt" \
7 --local-dir ./models1import onnxruntime as ort
2import numpy as np
3
4# Load models
5encoder_session = ort.InferenceSession("models/encoder.int8.onnx")
6decoder_session = ort.InferenceSession("models/decoder.int8.onnx")
7joiner_session = ort.InferenceSession("models/joiner.int8.onnx")
8
9# Load vocabulary
10with open("models/tokens.txt") as f:
11 vocab = [line.split()[0] for line in f]
12
13# Inference (simplified example)
14# ... (add mel feature extraction)
15encoder_out = encoder_session.run(None, {"audio_signal": mel_features})[0]
16# ... (add decoding loop with decoder and joiner)feat_dim: 80, vocab_size: 1024)1docker run --rm -v $(pwd):/workspace -w /workspace \
2 nvcr.io/nvidia/nemo:25.07 \
3 bash -c "pip install onnxruntime && python3 export_parakeet_tdt_1.1b.py"1{
2 "vocab_size": 1024,
3 "normalize_type": "per_feature",
4 "pred_rnn_layers": 2,
5 "pred_hidden": 640,
6 "subsampling_factor": 8,
7 "model_type": "EncDecRNNTBPEModel",
8 "feat_dim": 80
9}1@misc{parakeet-tdt-1.1b-onnx,
2 author = {Robert Lee},
3 title = {Parakeet-TDT 1.1B ONNX Export},
4 year = {2025},
5 publisher = {HuggingFace},
6 howpublished = {\url{https://huggingface.co/jenerallee78/parakeet-tdt-1.1b-onnx}},
7 note = {Verified ONNX export of NVIDIA's Parakeet-TDT 1.1B model}
8}1@misc{nvidia-parakeet-tdt,
2 author = {NVIDIA},
3 title = {Parakeet-TDT 1.1B},
4 year = {2024},
5 publisher = {HuggingFace},
6 howpublished = {\url{https://huggingface.co/nvidia/parakeet-tdt-1.1b}}
7}