Skip to main content

CleanUNet based audio denoiser

Project description

Speech Denoiser System (With NVIDIA CleanUNet)

Developed by Mahfuzul Kabir,
Machine Learning Engineer,
ACI Limited
Website: MahfuzulKabir.com

An image of the gradio app

Description:

This system is the backbone of speech denoiser system, incorporating NVIDIA's CleanUNet. The denoiser module is built for use in any python system with ease. The system also offers an API for usage in developments.

Algorithmic difficulties

The CleanUNet is a very GPU hungry system. Upon my own testing, it can take upto 10GB of GPU usage for a 3 minute audio file (I know, crazy and shouldn't be like that at all). I guess the underlying reason is very poor handling and optimization of data usage in CleanUNet.

To tackle such situation, I extensively used batching. After some initial EDA, I found that the system can handle audio file roughly upto 3 seconds without any problem (I have checked with 60s audio file and it still crashes CUDA). So, each audio file is divided in chunks of 3 seconds and created batches, hoping for batch inference achieving faster and optimized system.

I wish that was the case. In case of longer audios, the number of batches are huge and yet again, CleanUNet fails to handle data properly, causing to crash the system and demanding 5GB of GPU memory while inferencing with 3s audio chunks. So, I batched them. The underlying code uses batches of 20 audio chunks. The number of each batch containing audio chunks and the duration of each audio chunks can be controlled using 'chunk_length_s' and 'max_batch_size' arguements while initializing the module (default values are defined, so if you don't want to experiment, no need to worry).

This approach creates amazing results. A 50 minute audio from World Economic Forum took only 4s to process. And about performance of CleanUNet itself, give it a try and see for yourself (spoiler: it's amazinggg).

I plan to add more speech enhancement options in this module as time goes. Surely you can contribute yourself or give me ideas that can be done as well.

Thank you for using this system. Give it a STAR if it helps you in any way.

Usage

Use with user interface:

The latest addition to this project is the addition of gradio interface for non-tech people. Simple run the following codes in your terminal and a gradio user interface will be launched.

# Clone the git repository
git clone https://github.com/Kabir5296/Speech-Denoiser-System.git

# Change directory
cd Speech-Denoiser-System

# Install necessary modules
pip install -r requirements.txt

# Launch gradio_app.py
python gradio_app.py

The gradio app will be accessible at https://127.0.0.0:7862

Use wiith API:

To use with API follow the commands below. The system was built on python3.9 and it's preferable to use in same version. Create a python environment using python3.9 if needed.

# Clone the git repository
git clone https://github.com/Kabir5296/Speech-Denoiser-System.git

# Change directory
cd Speech-Denoiser-System

# Install necessary modules
pip install -r requirements.txt

# Launch main.py
python main.py

The APIs can be accessed at https://127.0.0.0:8877 and access the swagger at https://127.0.0.0:8877/docs

Use with denoiser module:

For usage in development, the denoiser module can be used. To do so, install the pip package first.

pip install cleanunet-denoiser

Use the following codes to run the denoiser. The following codes can be helpful.

from denoiser import DenoiserAudio

denoise = DenoiserAudio()

denoised_audio = DenoiserAudio("--> path/to/your/audio/file <--")

To save the denoised audio use the following code.

import torchaudio

torchaudio.save(output_filename, 
                torch.from_numpy(denoised_audio).unsqueeze(0), 
                sample_rate = 16000)

Citation

Don't forget to cite NVIDIA's original paper on CleanUNet. Kudos to them (not for handling the data efficiently though :p )

@inproceedings{kong2022speech,
  title={Speech Denoising in the Waveform Domain with Self-Attention},
  author={Kong, Zhifeng and Ping, Wei and Dantrey, Ambrish and Catanzaro, Bryan},
  booktitle={ICASSP 2022-2022 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP)},
  pages={7867--7871},
  year={2022},
  organization={IEEE}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cleanunet_denoiser-0.0.1.dev4.tar.gz (50.9 kB view details)

Uploaded Source

Built Distribution

cleanunet_denoiser-0.0.1.dev4-py3-none-any.whl (6.9 kB view details)

Uploaded Python 3

File details

Details for the file cleanunet_denoiser-0.0.1.dev4.tar.gz.

File metadata

File hashes

Hashes for cleanunet_denoiser-0.0.1.dev4.tar.gz
Algorithm Hash digest
SHA256 8193f0f1c14119d0c5704e28d5c65bd480bbb4b236ac8b070556b6bd25ea3e77
MD5 5ac944aaf0d41524dc057a79303b52e2
BLAKE2b-256 2c474971905755a190aeda6f89ba51a34c8525060a5748b4e6c3e386524a9c26

See more details on using hashes here.

File details

Details for the file cleanunet_denoiser-0.0.1.dev4-py3-none-any.whl.

File metadata

File hashes

Hashes for cleanunet_denoiser-0.0.1.dev4-py3-none-any.whl
Algorithm Hash digest
SHA256 377d65b37e0c3750d30b2fee893f1c3843c64970324b3b616d16d74fd2e887bc
MD5 e5e785c15f8dc1780255ee00607a65b6
BLAKE2b-256 cc5966631afffd5897c7c554d7615905584a4cdbc92e403743d0cd501c5c5f01

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page