Skip to content

NSNet2 Deep Noise Suppression (DNS) package

License

CC-BY-4.0, MIT licenses found

Licenses found

CC-BY-4.0
LICENSE
MIT
LICENSE-CODE
Notifications You must be signed in to change notification settings

NeonGeckoCom/nsnet2-denoiser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Noise Suppression Net 2 (NSNet2) baseline inference script

  • As a baseline for ICASSP 2021 Deep Noise Suppression challenge, we will use the recently developed SE method based on Recurrent Neural Network (RNN). For ease of reference, we will call this method as Noise Suppression Net 2 (NSNet 2). More details about this method can be found in here.

Installation

pip install nsnet2-denoiser

Usage:

From the NSNet2-baseline directory, run run_nsnet2.py with the following required arguments:

  • -i "Specify the path to noisy speech files that you want to enhance"
  • -o "Specify the path to a directory where you want to store the enhanced clips"
  • -fs "Sampling rate of the input audio. (48000/16000)"

python -m nsnet2_denoiser.denoise -i audio/

Use default values for the rest. Run to enhance the clips.

Python

from nsnet2_denoiser import NSnet2Enhancer
enhancer = NSnet2Enhancer(fs=48000)

# numpy
import soundfile as sf
sigIn, fs = sf.read("audio.wav")
outSig = enhancer(sigIn, fs)

# pcm_16le
from pydub import AudioSegment
audioIn = AudioSegment.from_wav("audio.wav")
audioOut = enhancer.pcm_16le(audioIn.raw_data)

Attribution:

Pretrained model NSNet2 by Microsoft is licensed under CC BY 4.0

Citation:

The baseline NSNet noise suppression:

@misc{braun2020data,
    title={Data augmentation and loss normalization for deep noise suppression},
    author={Sebastian Braun and Ivan Tashev},
    year={2020},
    eprint={2008.06412},
    archivePrefix={arXiv},
    primaryClass={eess.AS}
}

About

NSNet2 Deep Noise Suppression (DNS) package

Topics

Resources

License

CC-BY-4.0, MIT licenses found

Licenses found

CC-BY-4.0
LICENSE
MIT
LICENSE-CODE

Stars

Watchers

Forks

Languages