Jinhanw commited on
Commit
aeb9faa
·
1 Parent(s): 41383e6

Add documents

Browse files

Signed-off-by: Jinhan <jinhanw@nvidia.com>

Files changed (5) hide show
  1. README.md +145 -0
  2. bias.md +9 -0
  3. explainability.md +15 -0
  4. privacy.md +16 -0
  5. safety.md +9 -0
README.md CHANGED
@@ -4,3 +4,148 @@ license_name: nvidia-software-and-model-evaluation-license
4
  license_link: >-
5
  https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-software-and-model-evaluation-license/
6
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  license_link: >-
5
  https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-software-and-model-evaluation-license/
6
  ---
7
+
8
+
9
+ # Model Overview
10
+
11
+
12
+ ### Description:
13
+ **Nemotron 3 ASR Multilingual (Nemotron-ASR-Streaming-Multilingual)** is a multilingual, streaming Automatic Speech Recognition (ASR) engineered to deliver high-quality multilingual transcription across both low-latency streaming and high-throughput batch workloads. Developed by NVIDIA, this 600M parameter model transcribes speech into text with native support for punctuation and capitalization. <br>
14
+
15
+ By leveraging a state-of-the-art **Cache-Aware FastConformer-RNNT** architecture, the model eliminates redundant overlapping computations common in traditional "buffered" streaming. This allows it to process only new audio chunks while reusing cached encoder context, significantly improving computational efficiency and minimizing end-to-end delay without sacrificing accuracy. <br>
16
+
17
+ The model transcribes the following languages: English (en-US, en-GB), Spanish (es-US, es-ES), German (de-DE), French (fr-FR, fr-CA), Italian (it-IT), Arabic (ar-AR), Japanese (ja-JP), Korean (ko-KR), Portuguese (pt-BR, pt-PT), Russian (ru-RU), Hindi (hi-IN), Mandarin (zh-CN), Vietnamese (vi-VN), Hebrew (he-IL), Dutch (nl-NL), Czech (cz-CZ), Danish (da-DK), Polish (pl-PL), Norwegian (nn-NO, nb-NO), Swedish (sv-SE), Thai (th-TH), Turkish (tr-TR), Bulgarian (bg-BG), Greek (el-GR), Estonian (et-EE), Finnish (fi-FI), Croatian (hr-HR), Hungarian (hu-HU), Lithuanian (lt-LT), Latvian (lv-LV), Romanian (ro-RO), Slovak (sk-SK), Ukrainian (uk-UA), Maltese (mt-MT), and Slovenian (sl-SL). It supports uppercase and lowercase letters, punctuation, spaces, and apostrophes.
18
+
19
+ It was trained on a massive ASR dataset of approximately 450,000 hours of speech and is engineered to perform across diverse and challenging acoustic conditions.
20
+
21
+ **This model is ready for commercial/non-commercial use.** <br>
22
+
23
+ ### License/Terms of Use:
24
+ Governing Terms: Use of this model is governed by the [NVIDIA Model Evaluation License Agreement](https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-software-and-model-evaluation-license/).
25
+
26
+ ### Deployment Geography:
27
+ Global <br>
28
+
29
+ ### Use Case: <br>
30
+ This model is for transcription of multilingual audio. <br>
31
+
32
+ ### Release Date: <br>
33
+ Hugging Face [06/05/2026] via [https://huggingface.co/nvidia/nemotron-asr-streaming-multilingual-0.6b] <br>
34
+
35
+ ## References(s):
36
+ [1] [Stateful Conformer with Cache-based Inference for Streaming Automatic Speech Recognition](https://arxiv.org/pdf/2312.17279) <br>
37
+ [2] [Fast Conformer with Linearly Scalable Attention for Efficient Speech Recognition](https://arxiv.org/abs/2305.05084) <nr>
38
+
39
+
40
+ ## Model Architecture:
41
+ **Architecture Type:** FastConformer-CacheAware-RNNT with Prompt <br>
42
+ The model is based on the Cache-Aware [1] FastConformer [2] architecture with 24 encoder layers and an RNNT (Recurrent Neural Network Transducer) decoder. The cache-aware streaming design enables efficient processing of audio in chunks while maintaining context from previous frames. Unlike buffered inference, this model maintains caches for all encoder self-attention and convolution layers. This enables reuse of hidden states at every streaming step, where cached activations eliminate redundant computations. As a result, there are no overlapping computations; each processed frame is strictly non-overlapping. This model leverages prompts to guide the transcription process, enabling language-specific transcription from a single ASR model through language ID conditioning. <br>
43
+
44
+ **Network Architecture:**
45
+ * Encoder: Cache-Aware FastConformer with 24 layers
46
+ * Decoder: RNNT (Recurrent Neural Network Transducer)
47
+
48
+ **This model was developed based on [nvidia/nemotron-speech-streaming-en-0.6b](https://huggingface.co/nvidia/nemotron-speech-streaming-en-0.6b) [1]. <br>
49
+
50
+ ** Number of model parameters: 600M <br>
51
+
52
+ ## Input(s): <br>
53
+ **Input Type(s):** Audio, Lang ID <br>
54
+
55
+ **Input Format(s):** wav, string <br>
56
+
57
+ **Input Parameters:** One-Dimensional (1D) for audio and One-Dimensional (1D) for Lang ID <br>
58
+
59
+ **Other Properties Related to Input:** Maximum Length in seconds specific to GPU Memory, No Pre-Processing Needed, Mono channel is required.
60
+
61
+ Our AI models are designed and/or optimized to run on NVIDIA GPU-accelerated systems. By leveraging NVIDIA’s hardware (e.g. GPU cores) and software frameworks (e.g., CUDA libraries), the model achieves faster training and inference times compared to CPU-only solutions. <br>
62
+
63
+ ## Output(s)
64
+
65
+ **Output Type(s):** Text String in Input Language <br>
66
+
67
+ **Output Format(s):** String <br>
68
+
69
+ **Output Parameters:** One-Dimensional (1D) <br>
70
+
71
+ **Other Properties Related to Output:** No Maximum Character Length, transcribe punctuation and capitalization.
72
+
73
+ Our AI models are designed and/or optimized to run on NVIDIA GPU-accelerated systems. By leveraging NVIDIA’s hardware (e.g. GPU cores) and software frameworks (e.g., CUDA libraries), the model achieves faster training and inference times compared to CPU-only solutions. <br>
74
+
75
+
76
+ ## Software Integration:
77
+ **Runtime Engine(s):**
78
+ * NeMo 25.11, Riva 2.25.0 or higher <br>
79
+
80
+ **Supported Hardware Microarchitecture Compatibility:** <br>
81
+ * NVIDIA Ampere <br>
82
+ * NVIDIA Blackwell <br>
83
+ * NVIDIA Jetson <br>
84
+ * NVIDIA Hopper <br>
85
+ * NVIDIA Lovelace <br>
86
+ * NVIDIA Turing <br>
87
+ * NVIDIA Volta <br>
88
+
89
+
90
+ **Supported Operating System(s):**
91
+ * Linux <br>
92
+ * Linux 4 Tegra <br>
93
+
94
+ The integration of foundation and fine-tuned models into AI systems requires additional testing using use-case-specific data to ensure safe and effective deployment. Following the V-model methodology, iterative testing and validation at both unit and system levels are essential to mitigate risks, meet technical and functional requirements, and ensure compliance with safety and ethical standards before deployment.<vr>
95
+
96
+ ## Model Version(s):
97
+ nemotron-asr-streaming-multilingual-v1 <br>
98
+
99
+ ## Training and Evaluation Datasets:
100
+
101
+ ## Training Dataset
102
+
103
+ ** Data Modality: Audio <br>
104
+
105
+ ** Audio Training Data Size: 10,000 to 1 Million Hours <br>
106
+
107
+ ** Data Collection Method by dataset <br>
108
+ * Human <br>
109
+
110
+ ** Labeling Method by dataset <br>
111
+ * Human <br>
112
+ * Synthetic: labels generated from Parakeet-CTC-XXL-1.1b model, PnC generated from [Qwen3-32B](https://huggingface.co/Qwen/Qwen3-32B) <br>
113
+
114
+ **Properties:**
115
+ In excess of 450,000 hours of speech across the following languages: English (en-US, en-GB), Spanish (es-US, es-ES), German (de-DE), French (fr-FR, fr-CA), Italian (it-IT), Arabic (ar-AR), Japanese (ja-JP), Korean (ko-KR), Portuguese (pt-BR, pt-PT), Russian (ru-RU), Hindi (hi-IN), Mandarin (zh-CN), Vietnamese (vi-VN), Hebrew (he-IL), Dutch (nl-NL), Czech (cz-CZ), Danish (da-DK), Polish (pl-PL), Norwegian (nn-NO, nb-NO), Swedish (sv-SE), Thai (th-TH), Turkish (tr-TR), Bulgarian (bg-BG), Greek (el-GR), Estonian (et-EE), Finnish (fi-FI), Croatian (hr-HR), Hungarian (hu-HU), Lithuanian (lt-LT), Latvian (lv-LV), Romanian (ro-RO), Slovak (sk-SK), Ukrainian (uk-UA), Maltese (mt-MT), and Slovenian (sl-SL). The training data is a dynamic blend of public and proprietary internal datasets normalized to have spoken forms in text with punctuation and capitalization. <br>
116
+
117
+ ## Evaluation Dataset
118
+
119
+ ** Data Collection Method by dataset <br>
120
+ * Human <br>
121
+
122
+ ** Labeling Method by dataset <br>
123
+ * Human <br>
124
+
125
+ **Properties:** A dynamic blend of public and internal proprietary normalized to spoken forms in text with punctuation and capitalization. <br>
126
+
127
+
128
+ # Inference:
129
+ **Acceleration Engine:** Triton <br>
130
+ **Test Hardware:** <br>
131
+ * NVIDIA Blackwell <br>
132
+ * NVIDIA A10 <br>
133
+ * NVIDIA A100 <br>
134
+ * NVIDIA A30 <br>
135
+ * NVIDIA H100 <br>
136
+ * NVIDIA L4 <br>
137
+ * NVIDIA L40 <br>
138
+
139
+
140
+ ## Ethical Considerations:
141
+ NVIDIA believes Trustworthy AI is a shared responsibility and we have established policies and practices to enable development for a wide array of AI applications. When downloaded or used in accordance with our terms of service, developers should work with their internal model team to ensure this model meets requirements for the relevant industry and use case and addresses unforeseen product misuse. <br>
142
+
143
+ For more detailed information on ethical considerations for this model, please see the [Model Card++ Bias, Explainability, Safety & Security, and Privacy Subcards](Insert Link Here). <br>
144
+
145
+ Please report model quality, risk, security vulnerabilities or NVIDIA AI Concerns [here](https://www.nvidia.com/en-us/support/submit-security-vulnerability/). <br>
146
+
147
+ ## Get Help
148
+
149
+ ### Enterprise Support
150
+
151
+ Get access to knowledge base articles and support cases or [submit a ticket](https://www.nvidia.com/en-us/data-center/products/ai-enterprise-suite/support/).
bias.md ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ Field | Response
2
+ :---------------------------------------------------------------------------------------------------|:---------------
3
+ What is the language balance of the model validation data? | en-US: 37.85%, es-US: 10.45%, ko-KR: 8.73%, ru-RU: 6.85%, ar-AR: 6.11%, de-DE: 5.62%, fr-FR: 4.97%, hi-IN: 4.96%, it-IT: 4.54%, pt-BR: 3.79%, ja-JP: 3.05%, es-ES: 2.05%, en-GB: 1.03%
4
+ What is the geographic origin language balance of the model validation data? | North America: 45.75%, Europe: 27.47%, Asia: 16.1%, Middle East: 7.2%, South America: 3.5%
5
+ What is the accent balance of the model validation data? | en-US: 37.85%, es-US: 10.45%, ko-KR: 8.73%, ru-RU: 6.85%, ar-AR: 6.11%, de-DE: 5.62%, fr-FR: 4.97%, hi-IN: 4.96%, it-IT: 4.54%, pt-BR: 3.79%, ja-JP: 3.05%, es-ES: 2.05%, en-GB: 1.03%
6
+ Participation considerations from adversely impacted groups ([protected classes](https://www.senate.ca.gov/protected-classes)) in model design and testing: | Age, Gender, Linguistic Background
7
+ Measures taken to mitigate against unwanted bias: | Used a custom dataset to evaluate model performance across genders, age groups, and linguistic backgrounds.
8
+
9
+
explainability.md ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Field | Response
2
+ :------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------
3
+ Intended Task/Domain: | Speech Transcription
4
+ Model Type: | FastConformer-RNNT
5
+ Intended Users: | This model is intended for developers and data scientists building interactive call centers, virtual assistants, and language learning assistants.
6
+ Output: | Transcribed text with timestamps and confidence scores
7
+ Describe how the model works: | Model transcribes audio input into text for the input language
8
+ Name the adversely impacted groups this has been tested to deliver comparable outcomes regardless of: | Age, Gender, National Origin
9
+ Technical Limitations & Mitigation: | Transcripts may not be 100% accurate. Accuracy varies depending on the characteristics of the input audio, such as domain, use case, accent, noise, speech type, and speech context.
10
+ Verified to have met prescribed NVIDIA quality standards: | Yes
11
+ Performance Metrics: | Word Error Rate (WER), Silence Robustness (Characters/mins of silent audio), Latency (in milliseconds), Throughput (Total audio processed per unit of time)
12
+ Potential Known Risks: | Not recommended for word-for-word transcription as accuracy varies based on the characteristics of input audio (domain, use case, accent, noise, speech type, and context of speech)
13
+ Licensing: | Governing Terms: Use of this model is governed by the [NVIDIA Model Evaluation License Agreement](https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-software-and-model-evaluation-license/).
14
+
15
+
privacy.md ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Field | Response
2
+ :----------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------
3
+ Generatable or reverse engineerable personal data? | No
4
+ Personal data used to create this model? | Yes - Voice
5
+ Was consent obtained for any personal data used? | Yes
6
+ Is a mechanism in place to honor data subject right of access or deletion of personal data? | Yes
7
+ If personal data was collected for the development of the model, was it collected directly by NVIDIA? | Yes
8
+ If personal data was collected for the development of the model by NVIDIA, do you maintain or have access to disclosures made to data subjects? | Yes
9
+ If personal data was collected for the development of this AI model, was it minimized to only what was required? | Yes
10
+ Is there provenance for all datasets used in training? | Yes
11
+ Does data labeling (annotation, metadata) comply with privacy laws? | Yes
12
+ Is data compliant with data subject requests for data correction or removal, if such a request was made? | No, not possible with externally-sourced data.
13
+ Applicable Privacy Policy | https://www.nvidia.com/en-us/about-nvidia/privacy-policy/
14
+ How often is dataset reviewed? | Dataset is initially reviewed upon addition, and subsequent reviews are conducted as needed or upon request for changes.
15
+ Was data from user interactions with the AI model (e.g. user input and prompts) used to train the model? | No
16
+
safety.md ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ Field | Response
2
+ :---------------------------------------------------|:----------------------------------
3
+ Model Application Field(s): | Speech Transcription
4
+ Describe the life critical impact (if present). | Not Applicable
5
+ Use Case Restrictions: | Abide by Governing terms: Use of this model is governed by the [NVIDIA Model Evaluation License Agreement](https://www.nvidia.com/en-us/agreements/enterprise-software/nvidia-software-and-model-evaluation-license/).
6
+ Model and dataset restrictions: | The Principle of least privilege (PoLP) is applied limiting access for dataset generation and model development. Restrictions enforce dataset access during training, and dataset license constraints adhered to.
7
+
8
+
9
+