Pytorch based speech enhancement toolkit.
Go to file
shahules786 e2e413f8f3 rmv 2022-11-05 16:55:23 +05:30
.github/workflows sudo install 2022-10-06 21:15:35 +05:30
enhancer rmv 2022-11-05 16:55:23 +05:30
tests complex batchnorm 2d test 2022-11-03 16:06:14 +05:30
.flake8 flake8 2022-10-05 20:43:04 +05:30
.gitignore gitignore 2022-10-20 09:53:06 +05:30
.pre-commit-config.yaml pre commit hooks 2022-10-05 20:42:37 +05:30
README.md add tagline 2022-10-13 11:34:28 +05:30
environment.yml environment 2022-10-05 20:43:25 +05:30
hpc_entrypoint.sh hawk 2022-10-12 17:57:11 +05:30
pyproject.toml toml 2022-10-05 20:42:51 +05:30
requirements.txt add torch audiomentations 2022-10-24 22:13:19 +05:30
setup.cfg rmv typo 2022-10-06 21:08:46 +05:30
setup.py setup files 2022-10-06 17:24:39 +05:30
setup.sh setup 2022-10-05 20:42:18 +05:30
version.txt version 2022-10-06 17:24:55 +05:30

README.md

mayavoz is a Pytorch-based opensource toolkit for speech enhancement. It is designed to save time for audio researchers. Is provides easy to use pretrained audio enhancement models and facilitates highly customisable model training.

| Quick Start | Installation | Tutorials | Available Recipes

Key features 🔑

  • Various pretrained models nicely integrated with huggingface 🤗 that users can select and use without any hastle.
  • 📦 Ability to train and validation your own custom speech enhancement models with just under 10 lines of code!
  • 🪄 A command line tool that facilitates training of highly customisable speech enhacement models from the terminal itself!
  • Supports multi-gpu training integrated with Pytorch Lightning.

Quick Start 🔥

from mayavoz import Mayamodel

model = Mayamodel.from_pretrained("mayavoz/waveunet")
model("noisy_audio.wav")

Installation

Only Python 3.8+ is officially supported (though it might work with Python 3.7)

  • With Pypi
pip install mayavoz
  • With conda
conda env create -f environment.yml
conda activate mayavoz
  • From source code
git clone url
cd mayavoz
pip install -e .