├── LICENSE ├── LJSpeech-1.1 ├── training.txt └── validation.txt ├── README.md ├── config_v1.json ├── config_v2.json ├── config_v3.json ├── env.py ├── inference.py ├── inference_e2e.py ├── meldataset.py ├── models.py ├── pqmf.py ├── requirements.txt ├── stft_loss.py ├── train.py ├── utils.py └── validation_loss.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/LICENSE -------------------------------------------------------------------------------- /LJSpeech-1.1/training.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/LJSpeech-1.1/training.txt -------------------------------------------------------------------------------- /LJSpeech-1.1/validation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/LJSpeech-1.1/validation.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/README.md -------------------------------------------------------------------------------- /config_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/config_v1.json -------------------------------------------------------------------------------- /config_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/config_v2.json -------------------------------------------------------------------------------- /config_v3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/config_v3.json -------------------------------------------------------------------------------- /env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/env.py -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/inference.py -------------------------------------------------------------------------------- /inference_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/inference_e2e.py -------------------------------------------------------------------------------- /meldataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/meldataset.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/models.py -------------------------------------------------------------------------------- /pqmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/pqmf.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/requirements.txt -------------------------------------------------------------------------------- /stft_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/stft_loss.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/utils.py -------------------------------------------------------------------------------- /validation_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/multiband-hifigan/HEAD/validation_loss.png --------------------------------------------------------------------------------