├── .gitignore ├── LICENSE ├── README.md ├── configs ├── svs │ ├── data.yaml │ ├── model.yaml │ └── train.yaml └── tts │ ├── data.yaml │ ├── model.yaml │ └── train.yaml ├── dataset ├── __init__.py ├── dataset_svs.py ├── dataset_tts.py ├── espnet_texts │ ├── __init__.py │ ├── cleaners.py │ ├── cmudict.py │ ├── dict.py │ ├── numbers.py │ └── symbols.py └── texts │ ├── __init__.py │ ├── cleaners.py │ ├── cmudict.py │ ├── numbers.py │ ├── pinyin.py │ └── symbols.py ├── lexicon ├── libritts-lexicon.txt └── pinyin-lexicon.txt ├── loss ├── __init__.py ├── fastspeech2_loss.py └── loss.py ├── models ├── __init__.py ├── discriminator.py ├── fastspeech2.py └── xiaoice2.py ├── modules ├── __init__.py ├── conv │ └── __init__.py ├── transformer │ ├── Constants.py │ ├── Layers.py │ ├── Models.py │ ├── Modules.py │ ├── SubLayers.py │ └── __init__.py └── variance │ ├── __init__.py │ └── modules.py ├── pics ├── 2085003136_145600.png ├── after_2085003136_145600.png ├── before_2085003136_145600.png ├── before_mel_l2_loss.png ├── post_mel_l2_loss.png └── xs1_before_2085003136_145600.png ├── preprocess ├── audio_preprocess.py └── data_prep.py ├── pyutils ├── __init__.py ├── gen_duration_from_tg.py ├── logger.py ├── mask.py ├── optimizer.py ├── parse_options.sh ├── plot.py ├── save_and_load.py └── scheduler.py ├── run.sh ├── train.py ├── train_gan.py └── utils /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/README.md -------------------------------------------------------------------------------- /configs/svs/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/configs/svs/data.yaml -------------------------------------------------------------------------------- /configs/svs/model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/configs/svs/model.yaml -------------------------------------------------------------------------------- /configs/svs/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/configs/svs/train.yaml -------------------------------------------------------------------------------- /configs/tts/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/configs/tts/data.yaml -------------------------------------------------------------------------------- /configs/tts/model.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/configs/tts/model.yaml -------------------------------------------------------------------------------- /configs/tts/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/configs/tts/train.yaml -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/__init__.py -------------------------------------------------------------------------------- /dataset/dataset_svs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/dataset_svs.py -------------------------------------------------------------------------------- /dataset/dataset_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/dataset_tts.py -------------------------------------------------------------------------------- /dataset/espnet_texts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/espnet_texts/__init__.py -------------------------------------------------------------------------------- /dataset/espnet_texts/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/espnet_texts/cleaners.py -------------------------------------------------------------------------------- /dataset/espnet_texts/cmudict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/espnet_texts/cmudict.py -------------------------------------------------------------------------------- /dataset/espnet_texts/dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/espnet_texts/dict.py -------------------------------------------------------------------------------- /dataset/espnet_texts/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/espnet_texts/numbers.py -------------------------------------------------------------------------------- /dataset/espnet_texts/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/espnet_texts/symbols.py -------------------------------------------------------------------------------- /dataset/texts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/texts/__init__.py -------------------------------------------------------------------------------- /dataset/texts/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/texts/cleaners.py -------------------------------------------------------------------------------- /dataset/texts/cmudict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/texts/cmudict.py -------------------------------------------------------------------------------- /dataset/texts/numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/texts/numbers.py -------------------------------------------------------------------------------- /dataset/texts/pinyin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/texts/pinyin.py -------------------------------------------------------------------------------- /dataset/texts/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/dataset/texts/symbols.py -------------------------------------------------------------------------------- /lexicon/libritts-lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/lexicon/libritts-lexicon.txt -------------------------------------------------------------------------------- /lexicon/pinyin-lexicon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/lexicon/pinyin-lexicon.txt -------------------------------------------------------------------------------- /loss/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/loss/__init__.py -------------------------------------------------------------------------------- /loss/fastspeech2_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/loss/fastspeech2_loss.py -------------------------------------------------------------------------------- /loss/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/loss/loss.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/models/discriminator.py -------------------------------------------------------------------------------- /models/fastspeech2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/models/fastspeech2.py -------------------------------------------------------------------------------- /models/xiaoice2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/models/xiaoice2.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/conv/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/transformer/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/modules/transformer/Constants.py -------------------------------------------------------------------------------- /modules/transformer/Layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/modules/transformer/Layers.py -------------------------------------------------------------------------------- /modules/transformer/Models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/modules/transformer/Models.py -------------------------------------------------------------------------------- /modules/transformer/Modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/modules/transformer/Modules.py -------------------------------------------------------------------------------- /modules/transformer/SubLayers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/modules/transformer/SubLayers.py -------------------------------------------------------------------------------- /modules/transformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/modules/transformer/__init__.py -------------------------------------------------------------------------------- /modules/variance/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/variance/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/modules/variance/modules.py -------------------------------------------------------------------------------- /pics/2085003136_145600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pics/2085003136_145600.png -------------------------------------------------------------------------------- /pics/after_2085003136_145600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pics/after_2085003136_145600.png -------------------------------------------------------------------------------- /pics/before_2085003136_145600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pics/before_2085003136_145600.png -------------------------------------------------------------------------------- /pics/before_mel_l2_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pics/before_mel_l2_loss.png -------------------------------------------------------------------------------- /pics/post_mel_l2_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pics/post_mel_l2_loss.png -------------------------------------------------------------------------------- /pics/xs1_before_2085003136_145600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pics/xs1_before_2085003136_145600.png -------------------------------------------------------------------------------- /preprocess/audio_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/preprocess/audio_preprocess.py -------------------------------------------------------------------------------- /preprocess/data_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/preprocess/data_prep.py -------------------------------------------------------------------------------- /pyutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pyutils/__init__.py -------------------------------------------------------------------------------- /pyutils/gen_duration_from_tg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pyutils/gen_duration_from_tg.py -------------------------------------------------------------------------------- /pyutils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pyutils/logger.py -------------------------------------------------------------------------------- /pyutils/mask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pyutils/mask.py -------------------------------------------------------------------------------- /pyutils/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pyutils/optimizer.py -------------------------------------------------------------------------------- /pyutils/parse_options.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pyutils/parse_options.sh -------------------------------------------------------------------------------- /pyutils/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pyutils/plot.py -------------------------------------------------------------------------------- /pyutils/save_and_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pyutils/save_and_load.py -------------------------------------------------------------------------------- /pyutils/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/pyutils/scheduler.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/run.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/train.py -------------------------------------------------------------------------------- /train_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zengchang233/xiaoicesing2/HEAD/train_gan.py -------------------------------------------------------------------------------- /utils: -------------------------------------------------------------------------------- 1 | /home/smg/zengchang/apps/kaldi/egs/wsj/s5/utils --------------------------------------------------------------------------------