├── .gitignore ├── README.md ├── SEGAN ├── Data Investigating.ipynb ├── Discriminator Raw.ipynb ├── GAN Simple.ipynb ├── README.md ├── Spectrogram.ipynb ├── Supervised Raw.ipynb ├── Supervised Spec.ipynb ├── modelckpt │ ├── checkpoint │ ├── model.ckpt.data-00000-of-00001 │ ├── model.ckpt.index │ ├── model.ckpt.meta │ ├── modelGAN.ckpt.data-00000-of-00001 │ ├── modelGAN.ckpt.index │ ├── modelGAN.ckpt.meta │ ├── supervised_spec.ckpt.data-00000-of-00001 │ ├── supervised_spec.ckpt.index │ └── supervised_spec.ckpt.meta ├── preproc.py ├── preproc.pyc └── samples │ ├── generated_audio.wav │ ├── generated_audio1.wav │ ├── inverse_audio_spec.wav │ ├── org_audio.wav │ ├── org_audio1.wav │ ├── org_audio_spec.wav │ ├── target_audio.wav │ └── target_audio1.wav ├── Tacotron_GAN ├── .README.md.swp ├── Data Pipeline.ipynb ├── LICENSE ├── README.md ├── data │ └── .placeholder ├── data_load.py ├── downloadData.sh ├── eval.py ├── eval_gan.py ├── fig │ ├── gan_loss.png │ ├── mean_loss.png │ ├── mean_loss1.png │ └── mean_loss2.png ├── hyperparams.py ├── modules.py ├── networks.py ├── prepro.py ├── samples_git │ ├── gan_4_act.wav │ ├── gan_4_gen.wav │ ├── gan_4_org.wav │ ├── gan_6_act.wav │ ├── gan_6_gen.wav │ ├── gan_6_org.wav │ └── non_gan │ │ ├── model_epoch_1646_gs_54135_0.wav │ │ ├── model_epoch_1646_gs_54135_10.wav │ │ └── model_epoch_1646_gs_54135_11.wav ├── timeline │ └── .placeholder ├── train.py ├── train_gan.py ├── train_multi_gpus.py └── utils.py ├── downloadData.sh ├── env.yml ├── imgs ├── Tacotron_generator.png ├── VC.png ├── cmu_artic.png ├── segan_cyc_disx.png ├── segan_cyc_disy.png ├── segan_cyc_noskip.png ├── segan_cycle_consistency.png ├── segan_disc_loss.png ├── segan_gen_loss.png ├── segan_results_audio.png └── tacotron.png ├── license └── tb_logs └── .placeholder /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/README.md -------------------------------------------------------------------------------- /SEGAN/Data Investigating.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/Data Investigating.ipynb -------------------------------------------------------------------------------- /SEGAN/Discriminator Raw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/Discriminator Raw.ipynb -------------------------------------------------------------------------------- /SEGAN/GAN Simple.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/GAN Simple.ipynb -------------------------------------------------------------------------------- /SEGAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/README.md -------------------------------------------------------------------------------- /SEGAN/Spectrogram.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/Spectrogram.ipynb -------------------------------------------------------------------------------- /SEGAN/Supervised Raw.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/Supervised Raw.ipynb -------------------------------------------------------------------------------- /SEGAN/Supervised Spec.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/Supervised Spec.ipynb -------------------------------------------------------------------------------- /SEGAN/modelckpt/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/modelckpt/checkpoint -------------------------------------------------------------------------------- /SEGAN/modelckpt/model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/modelckpt/model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /SEGAN/modelckpt/model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/modelckpt/model.ckpt.index -------------------------------------------------------------------------------- /SEGAN/modelckpt/model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/modelckpt/model.ckpt.meta -------------------------------------------------------------------------------- /SEGAN/modelckpt/modelGAN.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/modelckpt/modelGAN.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /SEGAN/modelckpt/modelGAN.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/modelckpt/modelGAN.ckpt.index -------------------------------------------------------------------------------- /SEGAN/modelckpt/modelGAN.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/modelckpt/modelGAN.ckpt.meta -------------------------------------------------------------------------------- /SEGAN/modelckpt/supervised_spec.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/modelckpt/supervised_spec.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /SEGAN/modelckpt/supervised_spec.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/modelckpt/supervised_spec.ckpt.index -------------------------------------------------------------------------------- /SEGAN/modelckpt/supervised_spec.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/modelckpt/supervised_spec.ckpt.meta -------------------------------------------------------------------------------- /SEGAN/preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/preproc.py -------------------------------------------------------------------------------- /SEGAN/preproc.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/preproc.pyc -------------------------------------------------------------------------------- /SEGAN/samples/generated_audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/samples/generated_audio.wav -------------------------------------------------------------------------------- /SEGAN/samples/generated_audio1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/samples/generated_audio1.wav -------------------------------------------------------------------------------- /SEGAN/samples/inverse_audio_spec.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/samples/inverse_audio_spec.wav -------------------------------------------------------------------------------- /SEGAN/samples/org_audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/samples/org_audio.wav -------------------------------------------------------------------------------- /SEGAN/samples/org_audio1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/samples/org_audio1.wav -------------------------------------------------------------------------------- /SEGAN/samples/org_audio_spec.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/samples/org_audio_spec.wav -------------------------------------------------------------------------------- /SEGAN/samples/target_audio.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/samples/target_audio.wav -------------------------------------------------------------------------------- /SEGAN/samples/target_audio1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/SEGAN/samples/target_audio1.wav -------------------------------------------------------------------------------- /Tacotron_GAN/.README.md.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/.README.md.swp -------------------------------------------------------------------------------- /Tacotron_GAN/Data Pipeline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/Data Pipeline.ipynb -------------------------------------------------------------------------------- /Tacotron_GAN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/LICENSE -------------------------------------------------------------------------------- /Tacotron_GAN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/README.md -------------------------------------------------------------------------------- /Tacotron_GAN/data/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tacotron_GAN/data_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/data_load.py -------------------------------------------------------------------------------- /Tacotron_GAN/downloadData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/downloadData.sh -------------------------------------------------------------------------------- /Tacotron_GAN/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/eval.py -------------------------------------------------------------------------------- /Tacotron_GAN/eval_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/eval_gan.py -------------------------------------------------------------------------------- /Tacotron_GAN/fig/gan_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/fig/gan_loss.png -------------------------------------------------------------------------------- /Tacotron_GAN/fig/mean_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/fig/mean_loss.png -------------------------------------------------------------------------------- /Tacotron_GAN/fig/mean_loss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/fig/mean_loss1.png -------------------------------------------------------------------------------- /Tacotron_GAN/fig/mean_loss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/fig/mean_loss2.png -------------------------------------------------------------------------------- /Tacotron_GAN/hyperparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/hyperparams.py -------------------------------------------------------------------------------- /Tacotron_GAN/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/modules.py -------------------------------------------------------------------------------- /Tacotron_GAN/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/networks.py -------------------------------------------------------------------------------- /Tacotron_GAN/prepro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/prepro.py -------------------------------------------------------------------------------- /Tacotron_GAN/samples_git/gan_4_act.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/samples_git/gan_4_act.wav -------------------------------------------------------------------------------- /Tacotron_GAN/samples_git/gan_4_gen.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/samples_git/gan_4_gen.wav -------------------------------------------------------------------------------- /Tacotron_GAN/samples_git/gan_4_org.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/samples_git/gan_4_org.wav -------------------------------------------------------------------------------- /Tacotron_GAN/samples_git/gan_6_act.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/samples_git/gan_6_act.wav -------------------------------------------------------------------------------- /Tacotron_GAN/samples_git/gan_6_gen.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/samples_git/gan_6_gen.wav -------------------------------------------------------------------------------- /Tacotron_GAN/samples_git/gan_6_org.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/samples_git/gan_6_org.wav -------------------------------------------------------------------------------- /Tacotron_GAN/samples_git/non_gan/model_epoch_1646_gs_54135_0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/samples_git/non_gan/model_epoch_1646_gs_54135_0.wav -------------------------------------------------------------------------------- /Tacotron_GAN/samples_git/non_gan/model_epoch_1646_gs_54135_10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/samples_git/non_gan/model_epoch_1646_gs_54135_10.wav -------------------------------------------------------------------------------- /Tacotron_GAN/samples_git/non_gan/model_epoch_1646_gs_54135_11.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/samples_git/non_gan/model_epoch_1646_gs_54135_11.wav -------------------------------------------------------------------------------- /Tacotron_GAN/timeline/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tacotron_GAN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/train.py -------------------------------------------------------------------------------- /Tacotron_GAN/train_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/train_gan.py -------------------------------------------------------------------------------- /Tacotron_GAN/train_multi_gpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/train_multi_gpus.py -------------------------------------------------------------------------------- /Tacotron_GAN/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/Tacotron_GAN/utils.py -------------------------------------------------------------------------------- /downloadData.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/downloadData.sh -------------------------------------------------------------------------------- /env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/env.yml -------------------------------------------------------------------------------- /imgs/Tacotron_generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/imgs/Tacotron_generator.png -------------------------------------------------------------------------------- /imgs/VC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/imgs/VC.png -------------------------------------------------------------------------------- /imgs/cmu_artic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/imgs/cmu_artic.png -------------------------------------------------------------------------------- /imgs/segan_cyc_disx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/imgs/segan_cyc_disx.png -------------------------------------------------------------------------------- /imgs/segan_cyc_disy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/imgs/segan_cyc_disy.png -------------------------------------------------------------------------------- /imgs/segan_cyc_noskip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/imgs/segan_cyc_noskip.png -------------------------------------------------------------------------------- /imgs/segan_cycle_consistency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/imgs/segan_cycle_consistency.png -------------------------------------------------------------------------------- /imgs/segan_disc_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/imgs/segan_disc_loss.png -------------------------------------------------------------------------------- /imgs/segan_gen_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/imgs/segan_gen_loss.png -------------------------------------------------------------------------------- /imgs/segan_results_audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/imgs/segan_results_audio.png -------------------------------------------------------------------------------- /imgs/tacotron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/imgs/tacotron.png -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmulc18/S2SCycleGAN/HEAD/license -------------------------------------------------------------------------------- /tb_logs/.placeholder: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------