Code Monkey home page Code Monkey logo

ci_sdr's Introduction

Convolutive Transfer Function Invariant SDR

Run python tests codecov.io License: MIT

This repository contains an implementation for the Convolutive transfer function Invariant Signal-to-Distortion Ratio objective for PyTorch as described in the publication Convolutive Transfer Function Invariant SDR training criteria for Multi-Channel Reverberant Speech Separation (link arXiv).

Here, a small example, how you can use this CI-SDR objective in your own source code:

import torch
import ci_sdr

reference: torch.tensor = ...
# reference.shape: [speakers, samples]

estimation: torch.tensor = ...
# estimation shape: [speakers, samples]

sdr = ci_sdr.pt.ci_sdr_loss(estimation, reference)
# sdr shape: [speakers]

The idea of this objective function is based in the theory from E. Vincent, R. Gribonval and C. Févotte, Performance measurement in blind audio source separation, IEEE Trans. Audio, Speech and Language Processing, known as BSSEval. The original author provided MATLAB source code (link) and the package mir_eval (link) contains a python port. Some peoble refer to these implementations as BSSEval v3 (link).

The PyTorch code in this package is tested to yield the same SDR values as mir_eval with the default parameters.

NOTE: If you want to use BSSEval v3 SDR as metric, I recomment to use mir_eval.separation.bss_eval_sources and use as reference the clean/unreverberated source signals. The implementation in this repository has minor difference that makes it problematic to compare SDR values accorss different publications (e.g. here the permutation is calculated on the SDR, while mir_eval computes it based on the SIR.).

Installation

Install it directly with Pip, if you just want to use it:

pip install git+https://github.com/fgnt/ci_sdr.git

If you want to install it with all dependencies (test and doctest dependencies), run:

pip install git+https://github.com/fgnt/ci_sdr.git#egg=ci_sdr[all]

When you want to change the code, clone this repository and install it as editable:

git clone https://github.com/fgnt/ci_sdr.git
cd ci_sdr
pip install --editable .
# pip install --editable .[all]

Citation

To cite this implementation, you can cite the following paper (link):

@article{boeddeker2020convolutive,
  title   = {Convolutive Transfer Function Invariant {SDR} training criteria for Multi-Channel Reverberant Speech Separation},
  author  = {Boeddeker, Christoph and Zhang, Wangyou and Nakatani, Tomohiro and Kinoshita, Keisuke and Ochiai, Tsubasa and Delcroix, Marc and Kamo, Naoyuki and Qian, Yanmin and Haeb-Umbach, Reinhold},
  journal = {arXiv preprint arXiv:2011.15003},
  year    = {2020}
}

ci_sdr's People

Contributors

boeddeker avatar jensheit avatar thequilo avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.