Views
No views yet
| Property | Value |
|---|---|
| Base Model | nvidia/nemotron-3.5-asr-streaming-multilingual-0.6b |
| Architecture | FastConformer RNNT with Prompt-Streaming |
| Parameters | 638M |
| Encoder | 24-layer Conformer, d_model=1024, 8-head attention |
| Decoder | 2-layer LSTM, pred_hidden=640 |
| Joint | RNNT Joint, joint_hidden=640 |
| Vocabulary | 13,087 BPE tokens + blank (13088) |
| Language Prompts | 128 (covering 100+ languages) |
| Context Size | Left: 56, Right: 3 (320ms balanced streaming) |
| Subsampling | Factor 8 (dw_striding) |
| Preprocessor | 128 Mel filters, 16kHz, 25ms window, 10ms stride |
| Training | Full fine-tune (all params trainable), encoder frozen |
| Training Steps | 12,000 steps (~8,124 best step) |
| Hardware | RTX 5070 Ti (16 GB) |
| License | Apache 2.0 |
| Split | Samples | WER% | CER% | FTR% | Δ WER vs Base |
|---|---|---|---|---|---|
| Clean Hindi | 500 | 24.75 | 10.54 | 0.80 | +2.85 (regression) |
| Conversational Hinglish | 1,036 | 24.57 | 17.69 | 0.97 | -17.60 |
| Noisy Hindi | 250 | 31.67 | 32.33 | 11.60 | -7.46 |
| Negatives (noise) | 200 | 0.00 | 0.00 | 99.50 | +99.50 |
.
├── README.md # This file
├── config.json # Deployment configuration
├── tokenizer.model # BPE tokenizer
├── model/
│ ├── nemotron-3.5-hinglish.nemo # NeMo checkpoint (full model)
│ ├── encoder.onnx # ONNX encoder for deployment
│ ├── decoder_joint.onnx # ONNX decoder+joint for deployment
│ └── *.weight / onnx__* # External ONNX weight files
├── scripts/
│ ├── export_onnx.py # ONNX export from .nemo
│ ├── evaluate_finetuned.py # Benchmark evaluation
│ ├── finetune_frozen_encoder.py # Training script
│ ├── run_finetune.sh # Training launcher
│ ├── prepare_training_data.py # Data preparation
│ └── unpack_dataset.py # Dataset extraction
└── results/
├── finetuned_benchmark_results.md
└── nemotron_baseline_results.md1import torch
2from nemo.collections.asr.models import EncDecRNNTBPEModelWithPrompt
3
4model = EncDecRNNTBPEModelWithPrompt.restore_from("model/nemotron-3.5-hinglish.nemo")
5model.eval()
6
7# Transcribe with language prompt
8transcription = model.transcribe(
9 ["path/to/audio.wav"],
10 batch_size=1,
11 target_lang="hi-IN",
12 prompt_mode="langID",
13)[0]
14print(transcription)model/ directory contains exported ONNX models suitable for production deployment:1# Export from .nemo yourself (optional)
2python scripts/export_onnx.py1{
2 "streaming": {
3 "chunkMs": 320,
4 "chunkSize": 4,
5 "rightContext": 3,
6 "lookaheadMs": 240,
7 "melFrames": 32,
8 "preCacheSize": 9,
9 "outputFrames": 4
10 }
11}1@misc{nemotron-3.5-hinglish-2026,
2 author = {Aditya},
3 title = {Nemotron-3.5 Hinglish Fine-Tuned ASR},
4 year = {2026},
5 publisher = {Hugging Face},
6 url = {https://huggingface.co/addyo07/nemotron-3.5-0.6b-hinglish}
7}