szuweifu commited on
Commit
9b4a2cf
·
verified ·
1 Parent(s): 9bfa26c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +150 -7
README.md CHANGED
@@ -1,10 +1,153 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
- tags:
3
- - model_hub_mixin
4
- - pytorch_model_hub_mixin
 
 
 
 
 
 
 
 
 
 
 
 
5
  ---
6
 
7
- This model has been pushed to the Hub using the [PytorchModelHubMixin](https://huggingface.co/docs/huggingface_hub/package_reference/mixins#huggingface_hub.PyTorchModelHubMixin) integration:
8
- - Code: [More Information Needed]
9
- - Paper: [More Information Needed]
10
- - Docs: [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # **<span style="color:#76b900;">🤫 RE-USE: Multilingual Universal Speech Enhancement</span>**
2
+ # Model Overview
3
+
4
+
5
+ ## Description
6
+ In universal speech enhancement, the goal is to restore the **quality** of diverse degraded speech while preserving **fidelity**, ensuring that all other factors remain unchanged, e.g., linguistic content, speaker identity, emotion, accent, and other paralinguistic attributes. Inspired by the **distortion–perception trade-off theory**, our proposed single model achieves a good balance between these two objectives and has the following desirable properties:
7
+
8
+ - Robustness to **diverse degradations**, including additive noise, reverberation, clipping, bandwidth limitation, codec artifacts, packet loss and low-quality mics .
9
+ - Support for **multiple input sampling rates**, including 8, 16, 22.05, 24, 32, 44.1, and 48 kHz.
10
+ - Strong **language-agnostic** capability, enabling effective performance across different languages.
11
+
12
+ This model is for research and development only.
13
+
14
+ ## Usage
15
+ Directly try our [**Gradio Interactive Demo**](https://huggingface.co/spaces/nvidia/RE-USE) by uploading your noisy audio/video !!
16
+
17
+ ## Environment Setup
18
+ 1. (For **Mamba** setup)Pre-built Docker environments can be downloaded [here](https://github.com/RoyChao19477/SEMamba?tab=readme-ov-file#-docker-support) to simplify **Mamba** setup.
19
+
20
+ 2. If you need bandwidth extension:
21
+
22
+ ```bash
23
+ pip install resampy
24
+ ```
25
+ 3. Download and navigate to the HuggingFace repository:
26
+ ```
27
+ huggingface-cli download nvidia/RE-USE --local-dir ./REUSE --local-dir-use-symlinks False
28
+ cd ./REUSE
29
+ ```
30
+
31
+ ## Inference
32
+ Follow the simple steps below to generate enhanced speech using our model:
33
+ 1. Place your noisy speech files in the folder `noisy_audio/`
34
+ 2. Run the following command:
35
+ ```bash
36
+ sh inference.sh
37
+ ```
38
+ 3. The enhanced speech files will be saved in `enhanced_audio/`.
39
+
40
+ That's all !
41
+
42
+ **Note:**
43
+
44
+ a. You can enable bandwidth extension by setting the target bandwidth using the `BWE argument` in the script.
45
+
46
  ---
47
+
48
+ If your noisy speech files are **long and may cause GPU out-of-memory (OOM)** errors, please use the following procedure instead:
49
+ 1. Place your long noisy speech files in the folder `long_noisy_audio/`
50
+ 2. Run the following command:
51
+ ```bash
52
+ sh inference_chunk_wise.sh
53
+ ```
54
+ 3. The enhanced speech files will be saved in `Long_enhanced_audio/`.
55
+
56
+ **Note:**
57
+
58
+ a. You can enable bandwidth extension by setting the target bandwidth using the `BWE argument` in the script.
59
+
60
+ b. You can also configure the `chunk_size_in_seconds` and `hop_length_portion` directly in the script.
61
+
62
  ---
63
 
64
+ ## License/Terms of Use
65
+ This model is released under the [NVIDIA One-Way Noncommercial License (NSCLv1)](https://github.com/NVlabs/HMAR/blob/main/LICENSE).
66
+
67
+ ## Deployment Geography
68
+ Global.
69
+
70
+ ## Use Case
71
+ Researchers and general users can use this model to enhance the quality of their speech data.
72
+
73
+ ## Release Date
74
+ Hugging Face 2026/03/18
75
+
76
+ ## References
77
+ [1] [Rethinking Training Targets, Architectures and Data Quality for Universal Speech Enhancement](https://arxiv.org/abs/2603.02641), 2025.
78
+ (Note: The released model checkpoint differs from the one reported in the paper. It incorporates additional degradation types (e.g., microphone response and more codecs) and is fine-tuned on a smaller, high-quality clean subset.)
79
+
80
+ ## Model Architecture
81
+ **Architecture Type:** Convolutional encoder, Convolutional decoder, and Mamba for time–frequency modeling <br>
82
+ **Network Architecture:** Bi-directional Mamba with 30 layers <br>
83
+ **Number of model parameters:** 9.6M <br>
84
+
85
+ ## Input
86
+ Input Type(s): Audio <br>
87
+ Input Format(s): .wav files <br>
88
+ Input Parameters: One-Dimensional (1D) <br>
89
+ Other Properties Related to Input: 8000 Hz - 48000 Hz Mono-channel Audio <br>
90
+
91
+ ## Output
92
+ Output Type(s): Audio <br>
93
+ Output Format: .wav files <br>
94
+ Output Parameters: One-Dimensional (1D) <br>
95
+ Other Properties Related to Output: 8000 Hz - 48000 Hz Mono-channel Audio <br>
96
+
97
+ 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.
98
+
99
+ ## Software Integration
100
+ **Runtime Engine(s):**
101
+ * Not Applicable (N/A)
102
+
103
+ **Supported Hardware Microarchitecture Compatibility:**
104
+ * NVIDIA Ampere (A100)
105
+
106
+ **Preferred Operating System(s):**
107
+ * Linux
108
+
109
+ 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.
110
+
111
+ ## Model Version(s)
112
+ Current version: 30USEMamba_peak+GAN_tel_mic_1134k
113
+
114
+ ## Training Datasets
115
+ **Data Modality:**
116
+ Audio
117
+
118
+ **Audio Training Data Size:**
119
+ Less than 10,000 Hours
120
+
121
+ * [LibriVox data from DNS5 challenge (EN)](https://github.com/microsoft/DNS-Challenge/tree/master) (~350 hours of speech data)
122
+ * [LibriTTS (EN)](https://openslr.org/60/) (~200 hours of speech data)
123
+ * [VCTK (EN)](https://datashare.ed.ac.uk/handle/10283/3443) (~80 hours of speech data)
124
+ * [WSJ (EN)](https://catalog.ldc.upenn.edu/LDC93S6A) (~85 hours of speech data)
125
+ * [EARS (EN)](https://sp-uhh.github.io/ears_dataset/) (~100 hours of speech data)
126
+ * [Multilingual Librispeech (De, En, Es, Fr)](https://www.openslr.org/94/) (~450 hours of speech data)
127
+ * [CommonVoice 19.0 (De, En, Es, Fr, zh-CN)](https://huggingface.co/datasets/fsicoli/common_voice_19_0) (~1300 hours of speech data)
128
+ * [Audioset+FreeSound noise in DNS5 challenge](https://github.com/microsoft/DNS-Challenge/tree/master) (~180 hours of noise data)
129
+ * [WHAM! Noise](http://wham.whisper.ai/) (~80 hours of noise data)
130
+ * [FSD50K (human voice filtered)](https://huggingface.co/datasets/Fhrozen/FSD50k) (~100 hours of non-speech data)
131
+ * [(Part of) Free Music Archive (medium)](https://github.com/mdeff/fma) (~200 hours of non-speech data)
132
+ * [Simulated RIRs from DNS5 challenge](https://github.com/microsoft/DNS-Challenge/tree/master) (~60k samples of room impulse response)
133
+ * [MicIRP](https://micirp.blogspot.com/p/about-micirp.html) (~70 samples of microphone impulse response)
134
+
135
+ ## Inference
136
+ **Acceleration Engine:** None <br>
137
+ **Test Hardware:** NVIDIA A100
138
+
139
+ ## Ethical Considerations
140
+ 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.
141
+ Please report model quality, risk, security vulnerabilities or NVIDIA AI Concerns [here](https://app.intigriti.com/programs/nvidia/nvidiavdp/detail).
142
+
143
+ ## Citation
144
+ Please consider to cite our paper and this framework, if they are helpful in your research.
145
+
146
+ ```bibtex
147
+ @article{fu2026rethinking,
148
+ title={Rethinking Training Targets, Architectures and Data Quality for Universal Speech Enhancement},
149
+ author={Fu, Szu-Wei and Chao, Rong and Yang, Xuesong and Huang, Sung-Feng and Zezario, Ryandhimas E and Nasretdinov, Rauf and Juki{\'c}, Ante and Tsao, Yu and Wang, Yu-Chiang Frank},
150
+ journal={arXiv preprint arXiv:2603.02641},
151
+ year={2026}
152
+ }
153
+ ```