Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vincentherrmann/pytorch-wavenet

An implementation of WaveNet with fast generation
https://github.com/vincentherrmann/pytorch-wavenet

Last synced: about 2 months ago
JSON representation

An implementation of WaveNet with fast generation

Awesome Lists containing this project

README

        

# pytorch-wavenet
This is an implementation of the WaveNet architecture, as described in the [original paper](https://arxiv.org/abs/1609.03499).

## Features
- Automatic creation of a dataset (training and validation/test set) from all sound files (.wav, .aiff, .mp3) in a directory
- Efficient multithreaded data loading
- Logging to TensorBoard (Training loss, validation loss, validation accuracy, parameter and gradient histograms, generated samples)
- Fast generation, as introduced [here](https://arxiv.org/abs/1611.09482)

## Requirements
- python 3
- pytorch 0.3
- numpy
- librosa
- jupyter
- tensorflow for TensorBoard logging

## Demo
For an introduction on how to use this model, take a look at the [WaveNet demo notebook](https://github.com/vincentherrmann/pytorch-wavenet/blob/master/WaveNet_demo.ipynb).
You can find audio clips generated by a simple trained model in the [generated samples directory](https://github.com/vincentherrmann/pytorch-wavenet/tree/master/generated_samples)