• bitcoinBitcoin(BTC)$60,596.00-3.08%
  • ethereumEthereum(ETH)$1,557.61-6.99%
  • tetherTether(USDT)$1.000.02%
  • binancecoinBNB(BNB)$574.91-2.88%
  • usd-coinUSDC(USDC)$1.00-0.02%
  • rippleXRP(XRP)$1.08-4.40%
  • solanaSolana(SOL)$61.93-6.74%
  • tronTRON(TRX)$0.319131-1.92%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.030.95%
  • HyperliquidHyperliquid(HYPE)$58.97-3.70%
  • dogecoinDogecoin(DOGE)$0.080466-4.92%
  • USDSUSDS(USDS)$1.000.01%
  • leo-tokenLEO Token(LEO)$9.59-2.92%
  • RainRain(RAIN)$0.012920-3.91%
  • stellarStellar(XLM)$0.1953072.05%
  • zcashZcash(ZEC)$367.468.72%
  • CantonCanton(CC)$0.1532084.35%
  • cardanoCardano(ADA)$0.155360-5.30%
  • moneroMonero(XMR)$298.93-10.25%
  • chainlinkChainlink(LINK)$7.27-4.12%
  • whitebitWhiteBIT Coin(WBT)$43.16-3.66%
  • USD1USD1(USD1)$1.000.03%
  • Ethena USDeEthena USDe(USDE)$1.000.03%
  • bitcoin-cashBitcoin Cash(BCH)$219.83-5.20%
  • daiDai(DAI)$1.000.02%
  • the-open-networkToncoin(TON)$1.550.89%
  • MemeCoreMemeCore(M)$2.81-11.09%
  • hedera-hashgraphHedera(HBAR)$0.078323-4.61%
  • litecoinLitecoin(LTC)$42.54-4.17%
  • LABLAB(LAB)$9.43-9.19%
  • paypal-usdPayPal USD(PYUSD)$1.00-0.03%
  • avalanche-2Avalanche(AVAX)$6.63-7.59%
  • Circle USYCCircle USYC(USYC)$1.130.00%
  • suiSui(SUI)$0.69-3.03%
  • tether-goldTether Gold(XAUT)$4,283.22-3.52%
  • shiba-inuShiba Inu(SHIB)$0.000004-6.89%
  • crypto-com-chainCronos(CRO)$0.057615-2.93%
  • Global DollarGlobal Dollar(USDG)$1.000.02%
  • nearNEAR Protocol(NEAR)$1.88-7.23%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.130.13%
  • pax-goldPAX Gold(PAXG)$4,294.49-3.63%
  • BittensorBittensor(TAO)$192.31-3.75%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.055175-1.29%
  • mantleMantle(MNT)$0.51-3.69%
  • Ripple USDRipple USD(RLUSD)$1.000.00%
  • polkadotPolkadot(DOT)$0.94-6.05%
  • AsterAster(ASTER)$0.61-7.53%
  • OndoOndo(ONDO)$0.323524-8.86%
  • HTX DAOHTX DAO(HTX)$0.000002-2.61%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

NVIDIA Releases Nemotron 3.5 ASR: A 600M-Parameter Cache-Aware Streaming Model Transcribing 40 Language-Locales in Real Time

June 6, 2026
in AI & Technology
Reading Time: 10 mins read
A A
NVIDIA Releases Nemotron 3.5 ASR: A 600M-Parameter Cache-Aware Streaming Model Transcribing 40 Language-Locales in Real Time
ShareShareShareShareShare

NVIDIA’s Nemotron Speech team has released Nemotron 3.5 ASR. It is a 600M-parameter streaming Automatic Speech Recognition (ASR) model. A single checkpoint transcribes 40 language-locales in real time. Punctuation and capitalization are built in natively. The model ships as open weights on Hugging Face. The license is OpenMDW-1.1. The architecture is a Cache-Aware FastConformer-RNNT.

What is Nemotron 3.5 ASR

Nemotron 3.5 ASR extends nvidia/nemotron-speech-streaming-en-0.6b to many languages. It adds prompt-based language-ID conditioning to the base model. That lets one 600M-parameter checkpoint cover 40 language-locales. No per-language model or model-swapping is required.

The model targets two workloads. The first is low-latency streaming for live audio. The second is high-throughput batch transcription. Output is production-ready text with proper casing and punctuation. No separate punctuation-restoration step is needed.

Image source: https://huggingface.co/nvidia/nemotron-3.5-asr-streaming-0.6b

How Cache-Aware FastConformer-RNNT Works

The model has two main pieces. The first is a Cache-Aware FastConformer encoder with 24 layers. FastConformer is an efficient evolution of the Conformer architecture. It uses linearly scalable attention. The second piece is an RNNT (Recurrent Neural Network Transducer) decoder. RNNT emits text frame by frame as audio streams in.

The “cache-aware” design is the efficiency lever. Buffered streaming re-processes overlapping audio windows at every step. That repeats the same work and adds delay. This model caches encoder self-attention and convolution activations instead. It reuses those cached states as new audio arrives. So each audio frame is processed exactly once, with no overlap. Compute and end-to-end latency both drop, without an accuracy penalty.

The Latency Knob: att_context_size

One inference setting controls the latency-accuracy tradeoff. It is the attention context size, att_context_size. Smaller context emits text sooner but sees less future audio. Larger context raises accuracy at higher latency.

The same checkpoint covers the full range. Settings map to chunk sizes of 80ms, 160ms, 320ms, 560ms, and 1.12s. For example, [56,0] gives an 80ms ultra-low-latency mode. The [56,13] setting gives 1.12s for highest accuracy. Teams pick the operating point at inference time, with no retraining.

Language Detection and Coverage

The 40 language-locales include English, Spanish, German, and French variants. They also cover Arabic, Japanese, Korean, Mandarin, Hindi, and Thai. Several other European and Nordic languages are included too.

Language conditioning works two ways. Setting target_lang to a known locale usually gives the best accuracy. Setting target_lang=auto lets the model detect the language itself. In auto mode, it emits a language tag after terminal punctuation. One deployment can then transcribe mixed-language traffic. No separate language-ID component is required.

Comparison

Product Company Access Native streaming Language coverage Reported latency Pricing model
Nemotron 3.5 ASR NVIDIA Open weights (OpenMDW-1.1), self-host; hosted on DeepInfra Yes — cache-aware FastConformer-RNNT 40 language-locales 80ms–1.12s, configurable at inference Free to self-host; usage-based via host
Whisper large-v3 OpenAI Open weights (MIT), self-host; API No — offline/batch ~99 languages Not streaming-native Self-host free; API ~$0.006/min (batch)
Nova-3 Deepgram Closed API; on-premise/self-host (enterprise) Yes — streaming + batch Multilingual; +10 monolingual languages added Jan 2026 Low-latency streaming (reported sub-300ms) ~$0.0077/min (Nova-3 Monolingual, PAYG)
Universal-3 Pro Streaming AssemblyAI Closed API (EU endpoint available) Yes 6 languages: English, Spanish, French, German, Italian, Portuguese Sub-300ms (official); first partial ~750ms Usage-based (PAYG)
Scribe v2 Realtime ElevenLabs Closed API Yes 90+ languages (99 per ElevenLabs) ~150ms (p50) ~$0.28/hour
Ursa / streaming Speechmatics API + on-premise + edge Yes — streaming + batch 50+ languages with automatic identification Ultra-low latency (positioned) Enterprise/usage

Fine-Tuning Results

Because the weights are open, teams can fine-tune for a language, domain, or accent. NVIDIA published a worked example on Greek and Bulgarian. It fine-tuned the base checkpoint with the same Cache-Aware FastConformer-RNNT recipe. Each clip carried a target_lang tag for language conditioning. Training data came from public corpora, including Granary, Common Voice, and FLEURS.

Results were measured as WER on held-out FLEURS, at the 80ms setting. Greek WER fell from 35 to 24, a 32% relative improvement. Bulgarian fell from 22 to 15, a 31% relative improvement. These are raw WER percentages at the lowest-latency streaming mode. NVIDIA notes that evaluating at deployment latency, on held-out data, gives honest numbers.

Strengths and Considerations

Strengths:

  • One 600M-parameter checkpoint covers 40 language-locales, cutting deployment sprawl.
  • Cache-aware streaming processes each frame once, reported at 17x buffered concurrency on an H100.
  • att_context_size tunes latency from 80ms to 1.12s at inference, with no retraining.
  • Punctuation, capitalization, and auto language tagging are built in.
  • Open weights enabled a 31–32% relative WER drop on Greek and Bulgarian after fine-tuning.

Considerations:

  • The model handles English, but NVIDIA recommends its dedicated English model for English-only use.
  • The 80ms mode trades some accuracy for the lowest latency.
  • Japanese and Korean use CER, so cross-language error comparisons need care.
  • Throughput figures are measured on H100, so results on other GPUs will differ.
  • The production NIM with gRPC streaming is announced, but not yet released.

Key Takeaways

  • NVIDIA’s Nemotron 3.5 ASR is an open-weights (OpenMDW-1.1), 600M-parameter streaming model transcribing 40 language-locales from one checkpoint.
  • Its Cache-Aware FastConformer-RNNT design processes each audio frame once, reported at 17x the concurrent streams of buffered approaches on an H100.
  • Latency is configurable from 80ms to 1.12s at inference via att_context_size, with no retraining.
  • A short fine-tune cut FLEURS WER 32% on Greek (35→24) and 31% on Bulgarian (22→15), at the 80ms setting.
  • It is self-hostable and streaming-native, unlike closed APIs (Deepgram, AssemblyAI, ElevenLabs) or offline Whisper.

Marktechpost’s Visual Explainer


NEMOTRON 3.5 ASR
1 / 10

NVIDIA · STREAMING SPEECH AI · OPEN WEIGHTS

Nemotron 3.5 ASR

A 600M-parameter cache-aware streaming model that transcribes 40 language-locales in real time, from a single checkpoint.

600M parameters
40 language-locales
80ms–1.12s latency
OpenMDW-1.1

01 — WHAT IT IS

One model, 40 language-locales

  • Extends nvidia/nemotron-speech-streaming-en-0.6b with prompt-based language-ID conditioning.
  • A single 600M-parameter checkpoint covers 40 language-locales. No model-swapping.
  • Punctuation and capitalization are built in. No separate post-processing step.
  • Targets two workloads: low-latency streaming and high-throughput batch.
  • NVIDIA still recommends its English-only model for English-only use.

02 — ARCHITECTURE

Cache-Aware FastConformer-RNNT

  • A 24-layer FastConformer encoder paired with an RNNT decoder.
  • Buffered streaming re-processes overlapping audio windows at every step.
  • This model caches encoder self-attention and convolution states, then reuses them.
  • Each audio frame is processed exactly once, with no overlap.
  • Compute and end-to-end latency drop, with no accuracy penalty.

03 — THE LATENCY KNOB

One setting tunes latency vs. accuracy

att_context_size Chunk (latency) Use case
[56,0] 80ms (Ultra-Low) Ultra low latency voice agents
[56,1] 160ms (Low) Interactive voice agents
[56,3] 320ms (Balanced) Conversational AI, live caption
[56,6] 560ms (Medium) Higher accuracy, reasonable latency
[56,13] 1.12s (High) Highest accuracy

Same checkpoint, chosen at inference time. No retraining required.

04 — LANGUAGES & DETECTION

Coverage and automatic language ID

  • 40 language-locales, including English, Spanish, German, and French variants.
  • Also covers Arabic, Japanese, Korean, Mandarin, Hindi, and Thai.
  • Set target_lang to a known locale for the best accuracy.
  • Set target_lang=auto to let the model detect the language.
  • In auto mode, it emits a language tag after terminal punctuation.
  • One deployment handles mixed-language traffic, with no separate language-ID component.

05 — THROUGHPUT

Half the size, more concurrent streams

  • NVIDIA compares it against Parakeet RNNT 1.1B multilingual, which uses buffered streaming.
  • Nemotron 3.5 ASR is roughly half the size: 0.6B versus 1.1B.
  • The team reports 17x the concurrent streams of buffered approaches, on the same H100.
  • Avoiding redundant recomputation lowers the cost per stream in production.

The 17x figure is from the release announcement; the model card states the qualitative claim directly.

06 — FINE-TUNING RESULTS

A short fine-tune lifts weaker languages

Language Base WER Fine-tuned Relative
Greek 35 24 32%
Bulgarian 22 15 31%

Raw WER (%) on held-out FLEURS at the 80ms setting. Data: Granary, Common Voice, FLEURS.

07 — AVAILABILITY & ACCESS

Open weights, plus a hosted path

  • Weights on Hugging Face under the OpenMDW-1.1 license.
  • Runtime is NeMo 26.06 or newer. Input must be mono-channel.
  • Hosted on DeepInfra, which adds word boosting for domain vocabulary.
  • NVIDIA says a NIM release is planned for later in the month, with gRPC streaming.
  • Stated GPU support: Ampere, Hopper, Blackwell, Lovelace, Turing, Volta, and Jetson.

08 — HOW IT COMPARES

Where it sits in the landscape

Product Access Streaming Languages
Nemotron 3.5 ASR Open weights Native 40 locales
Whisper large-v3 Open weights No (batch) ~99
Deepgram Nova-3 API / on-prem Native Multilingual
AssemblyAI U-3 Pro API Native 6
ElevenLabs Scribe v2 API Native 90+
Google Chirp / Azure API Native 100+ / 140+

Latency and WER are not directly comparable across vendors; this compares structure, not a ranking.

09 — KEY TAKEAWAYS

The short version

  • An open-weights 600M streaming model transcribing 40 language-locales from one checkpoint.
  • Cache-aware design processes each frame once; reported 17x buffered concurrency on an H100.
  • Latency configurable from 80ms to 1.12s at inference, with no retraining.
  • A short fine-tune cut FLEURS WER 32% (Greek) and 31% (Bulgarian).
  • Self-hostable and streaming-native, unlike closed APIs or offline Whisper.


Curated for AI engineers by Marktechpost — practitioner-first coverage of AI & ML.

YOU MAY ALSO LIKE

EA’s Star Wars Zero Company Drops August 27

Stellar Blade’s Slick-Looking Sequel Is Officially Called Blood Rain


Check out the Model weights. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us


Credit: Source link

ShareTweetSendSharePin

Related Posts

EA’s Star Wars Zero Company Drops August 27
AI & Technology

EA’s Star Wars Zero Company Drops August 27

June 6, 2026
Stellar Blade’s Slick-Looking Sequel Is Officially Called Blood Rain
AI & Technology

Stellar Blade’s Slick-Looking Sequel Is Officially Called Blood Rain

June 6, 2026
Microsoft AI chief says company was “set free” from OpenAI to pursue superintelligence
AI & Technology

Microsoft AI chief says company was “set free” from OpenAI to pursue superintelligence

June 5, 2026
A Hands-On Coding Tutorial on Qualcomm AI Hub Models for Classification, Object Detection, and Hardware-Aware Deployment
AI & Technology

A Hands-On Coding Tutorial on Qualcomm AI Hub Models for Classification, Object Detection, and Hardware-Aware Deployment

June 5, 2026
Next Post
CIA director travels to Cuba as DOJ seeks to indict Raúl Castro

CIA director travels to Cuba as DOJ seeks to indict Raúl Castro

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
U.S. will ‘stand firm’ if China continues to be ‘belligerent’ on Taiwan: House Republican

U.S. will ‘stand firm’ if China continues to be ‘belligerent’ on Taiwan: House Republican

June 6, 2026
ASUS’ ROG Xbox Ally X20 Bundle Includes A Limited-Edition OLED Ally X Handheld PC And AR Gaming Glasses

ASUS’ ROG Xbox Ally X20 Bundle Includes A Limited-Edition OLED Ally X Handheld PC And AR Gaming Glasses

June 1, 2026
MSI’s Claw 8 EX AI+ Handheld Comes Out On June 23

MSI’s Claw 8 EX AI+ Handheld Comes Out On June 23

May 31, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!