├── README.md ├── data └── convert │ └── history │ ├── sf2tm-100.wav │ ├── sf2tm-150.wav │ ├── sf2tm-50.wav │ ├── tm2sf-100.wav │ ├── tm2sf-150.wav │ └── tm2sf-50.wav ├── download.py ├── figures ├── d_loss.png ├── g_loss.png └── network.png ├── log_store.txt ├── model_VC2.py ├── model_m.py ├── preprocess.py ├── preprocess_training.py ├── test.py ├── train.py └── trainingDataset.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/README.md -------------------------------------------------------------------------------- /data/convert/history/sf2tm-100.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/data/convert/history/sf2tm-100.wav -------------------------------------------------------------------------------- /data/convert/history/sf2tm-150.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/data/convert/history/sf2tm-150.wav -------------------------------------------------------------------------------- /data/convert/history/sf2tm-50.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/data/convert/history/sf2tm-50.wav -------------------------------------------------------------------------------- /data/convert/history/tm2sf-100.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/data/convert/history/tm2sf-100.wav -------------------------------------------------------------------------------- /data/convert/history/tm2sf-150.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/data/convert/history/tm2sf-150.wav -------------------------------------------------------------------------------- /data/convert/history/tm2sf-50.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/data/convert/history/tm2sf-50.wav -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/download.py -------------------------------------------------------------------------------- /figures/d_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/figures/d_loss.png -------------------------------------------------------------------------------- /figures/g_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/figures/g_loss.png -------------------------------------------------------------------------------- /figures/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/figures/network.png -------------------------------------------------------------------------------- /log_store.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/log_store.txt -------------------------------------------------------------------------------- /model_VC2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/model_VC2.py -------------------------------------------------------------------------------- /model_m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/model_m.py -------------------------------------------------------------------------------- /preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/preprocess.py -------------------------------------------------------------------------------- /preprocess_training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/preprocess_training.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/train.py -------------------------------------------------------------------------------- /trainingDataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TaiChunYen/Pytorch-CycleGAN-VC2/HEAD/trainingDataset.py --------------------------------------------------------------------------------