Skip to content

Releases: timsainb/noisereduce

3.0.2

15 Mar 01:10
0ddc37c
Compare
Choose a tag to compare

Minor update to fix bugs related to import errors.

v3.0.0

10 Sep 15:34
658b8c6
Compare
Choose a tag to compare
  • Includes a PyTorch-based implementation of Spectral Gating, an algorithm for denoising audio signals.
  • You can now create a noisereduce nn.Module object which allows it to be used either as a standalone module or as part of a larger neural network architecture.
  • The run time of the algorithm decreases substantially.

v2.0.1

13 May 16:30
cafc36d
Compare
Choose a tag to compare

Fixes an issue with tqdm visibility being the opposite of the flag

v2.0.0

18 Jul 20:47
7013c98
Compare
Choose a tag to compare

This release adds a number of new features

  • Added two forms of spectral gating noise reduction: stationary noise reduction, and non-stationary noise reduction.
  • Added multiprocessing so you can perform noise reduction on bigger data.
  • The new version breaks the API of the old version.
  • The previous version is still available at from noisereduce.noisereducev1 import reduce_noise
  • You can now create a noisereduce object which allows you to reduce noise on subsets of longer recordings

v1.0.1

11 Jun 18:31
Compare
Choose a tag to compare

Minor bug fixes for tensorflow backend

v1.0

11 Jun 05:54
db94fe2
Compare
Choose a tag to compare

Major updates

  • Added optional tensorflow backend for acceleration
  • Added clipping option

spectral gating in python

17 Mar 19:45
15288d6
Compare
Choose a tag to compare

This release contains the first version of the noisereduce algorithm