├── .gitignore ├── .idea └── .gitignore ├── LICENSE ├── LJSpeech-1.1 ├── training.txt └── validation.txt ├── README.md ├── config.json ├── discriminator.py ├── dwt.py ├── export_torchscript.py ├── generator.py ├── loss.py ├── meldataset.py ├── modules.py ├── requirements.txt ├── stft_loss.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /LJSpeech-1.1/training.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/LJSpeech-1.1/training.txt -------------------------------------------------------------------------------- /LJSpeech-1.1/validation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/LJSpeech-1.1/validation.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/config.json -------------------------------------------------------------------------------- /discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/discriminator.py -------------------------------------------------------------------------------- /dwt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/dwt.py -------------------------------------------------------------------------------- /export_torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/export_torchscript.py -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/generator.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/loss.py -------------------------------------------------------------------------------- /meldataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/meldataset.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/modules.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyWavelets -------------------------------------------------------------------------------- /stft_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/stft_loss.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rishikksh20/Fre-GAN-pytorch/HEAD/utils.py --------------------------------------------------------------------------------