· via dev.to (home feed)
Nvidia's Nemotron 3.5 ASR ships with open weights and a five-step fine-tuning guide
Nvidia's new 600M-parameter speech-to-text model handles 40 language locales from one checkpoint, and the company has published a reproducible fine-tuning pipeline for adapting it to specific languages, domains, and accents.

Nvidia has released Nemotron 3.5 ASR, a speech-to-text model that recognises 40 language locales in real time from a single checkpoint, and the company's research team has paired it with a complete fine-tuning walkthrough. According to a write-up on dev.to by JudyAI Lab, the guide on the Hugging Face blog covers every stage of adapting the model, from data preparation through deployment, so teams can tune it for a specific language, industry, or accent instead of training a recogniser from scratch.
A compact streaming recogniser with open weights
The model has 600 million parameters and runs on a Cache-Aware FastConformer-RNNT architecture designed for streaming speech recognition. The dev.to piece reports that it holds up well in low-latency scenarios, which points at use cases such as voice agents, live captioning, and call-centre analytics.
Punctuation and capitalisation restoration are handled inside the model itself. Transcripts come out readable without an extra cleanup pass, which the dev.to author singles out as a practical win during prototyping.
The weights are openly available on Hugging Face. Developers can download them, inspect them, fine-tune them, and deploy the model on their own infrastructure, with no dependency on an external API and no charges accruing per request.
The five-step adaptation pipeline
According to dev.to, the Hugging Face walkthrough from Nvidia's researchers breaks fine-tuning into five stages:
- Data preparation
- Training
- Evaluation
- Scaling
- Deployment
The guide is described as fully reproducible, meaning the same recipe can be rerun end to end. The intended workflow treats Nemotron 3.5 ASR as a capable general-purpose base: a team working in healthcare, legal, or finance, or targeting a particular accent the base model handles imperfectly, starts from the released checkpoint and specialises it rather than assembling the corpus and compute budget for a from-scratch system.
Local execution over cloud transcription
The JudyAI Lab commentary frames the release as part of a wider shift: running models at the edge or inside private environments is moving from a bonus feature to a core criterion when teams choose tooling. Speech data, including call recordings, medical dictation, and meeting audio, is sensitive, and local transcription keeps it off third-party clouds while sidestepping metered API pricing. The write-up's references include a LiveKit piece on running the model's multilingual transcription on a laptop, underscoring that local execution is the intended deployment path rather than an afterthought.
Why it matters
The pattern that reshaped language models, starting from an open base model and fine-tuning it for a domain, is now maturing on the speech side. A single checkpoint covering 40 locales removes the need to maintain separate recognisers per language, and open weights remove both recurring per-call costs and the privacy exposure of sending audio to a hosted API. The published pipeline lowers the barrier further for smaller teams that could never justify training an ASR system from scratch. The dev.to write-up does not include benchmark comparisons against larger hosted systems, so teams with strict accuracy requirements will need to evaluate the model on their own audio. Even so, the combination of a streaming architecture, built-in transcript formatting, open weights, and a documented fine-tuning recipe makes Nemotron 3.5 ASR a strong candidate for anyone building voice features that must run inside a private environment.
- #nvidia
- #speech-recognition
- #fine-tuning
- #open-weights
- #hugging-face