Painless Wiener Filters
Project description
Norbert
Norbert is an implementation of multichannel Wiener filter, that is a very popular way of filtering multichannel audio for several applications, notably speech enhancement and source separation.
This filtering method assumes you have some way of estimating power or magnitude spectrograms for all the audio sources (non-negative) composing a mixture. If you only have a model for some target sources, and not for the rest, you may use norbert.residual_model
to let Norbert create a residual model for you.
Given all source spectrograms and the mixture Time-Frequency representation, this repository can build and apply the filter that is appropriate for separation, by optimally exploiting multichannel information (like in stereo signals). This is done in an iterative procedure called Expectation Maximization, where filtering and re-estimation of the parameters are iterated.
From a beginner's perspective, all you need to do is often to call norbert.wiener
with the mix and your spectrogram estimates. This should handle the rest.
From a more expert perspective, you will find the different ingredients from the EM algorithm as functions in the module as described in the API documentation
Installation
pip install norbert
Usage
Asssuming a complex spectrogram X
, and a (magnitude) estimate of a target to be extracted from the spectrogram, performing the multichannel wiener filter is as simple as this:
X = stft(audio)
V = model(X)
Y = norbert.wiener(V, X)
estimate = istft(Y)
How to contribute
norbert is a community focused project, we therefore encourage the community to submit bug-fixes and requests for technical support through github issues. For more details of how to contribute, please follow our CONTRIBUTING.md
.
Authors
Antoine Liutkus, Fabian-Robert Stöter
Citation
If you want to cite the Norbert software package, please use the DOI from Zenodo:
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file norbert-0.2.1.tar.gz
.
File metadata
- Download URL: norbert-0.2.1.tar.gz
- Upload date:
- Size: 10.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bd4cbc2527f0550b81bf4265c1a64b352cab7f71e4e3c823d30b71a7368de74e |
|
MD5 | abef455452b32851c8996e0fffe333bb |
|
BLAKE2b-256 | 2ca0397cf82cfd0dcb73b2d6a8230ea89f8a4ff9c1c42cb97143cb867bebd6a5 |
File details
Details for the file norbert-0.2.1-py2.py3-none-any.whl
.
File metadata
- Download URL: norbert-0.2.1-py2.py3-none-any.whl
- Upload date:
- Size: 11.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/41.0.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 409ac3f173cfb1fdaad21563b8f730d7cbe01af81349bcd96fb2b8b9d5f74339 |
|
MD5 | 212d6ba983e217349b474f8207826997 |
|
BLAKE2b-256 | 22851e4f09c84d28b5541a4a8eece320902c4d2fa264dfe51f779548396f0fea |