GithubHelp home page GithubHelp logo

melvocoder's Introduction

M4Singer MelVocoder

Description

This repository includes the project for the second homework of the course "Deep Learning for Music Analysis and Generation" lectured by Prof. Yang at the National Taiwan University. The main goals of this work is to train a melvocoder on the M4Singer dataset. Given an mel-spectrogram of a singing segment, the model should generate the waveform corresponding to the sepctrogram. This project relies on HiFi-GAN and sobel-operator-pytorch, big thanks to the authors.

Create Environment

pip install -r requirements.txt

Training

The file structure of the dataset is expected to be something similar like this:

./dataset
    |- audios/
        |- 0001.mp3
        |- 0002.mp3
        |- 0003.mp3
        ...
    |- split
        |- train.txt
        |- valid.txt

The following command starts the training process with configuration 'config/config_v1.json' and save the checkpoint to the 'checkpoint/test/' folder:

python train.py \
--config=configs/config_v1.json \
--input_wavs_dir=dataset/audios \
--input_training_file=./dataset/split/train.txt \
--input_validation_file=./dataset/split/valid.txt \
--checkpoint_path=./checkpoints/test

Inference

Preprocess Audio Files for Mel-Spectrogram

Please change the source and destination folders and run the 'preprocess.py' file to derive the mel-spectrograms.

python -m preprocess

Generate the Waveforms

  • Please download the model weights and config from Google Drive: config.json, weights
  • Inference with the following command:
python -m inference \
# the folder path for the mel-spectrograms
--input_mels_dir=$input_mel_spec_folder \ 
# the folder path to save the generated audios
--output_dir=$output_audio_folder \ 
# the path that includes both the weight and the config
--checkpoint_file=$generator_checkpoint_path 

melvocoder's People

Contributors

jik876 avatar odd2 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.