├── .gitignore ├── LICENSE ├── README.md ├── data ├── am │ ├── final.raw │ ├── phones.txt │ ├── trans.txt │ └── tree ├── arpa_phonemes ├── feats │ ├── final.mat │ ├── reduce_dim.mat │ └── splice_opts └── filelists │ ├── training-set.txt │ └── validation-set.txt ├── environment.yml ├── spec-file.txt ├── src ├── __init__.py ├── common │ ├── __init__.py │ ├── align.py │ ├── audio_processing.py │ ├── data_utils.py │ ├── data_utterance.proto │ ├── decode.py │ ├── feat.py │ ├── fp16_optimizer.py │ ├── hparams.py │ ├── layers.py │ ├── logger.py │ ├── loss_function.py │ ├── loss_scaler.py │ ├── model.py │ ├── multiproc.py │ ├── plotting_utils.py │ ├── stft.py │ ├── utils.py │ └── utterance.py ├── ppg │ ├── __init__.py │ └── compute_ppg.py ├── script │ ├── generate_synthesis.py │ ├── train_ppg2mel.py │ └── train_waveglow.py └── waveglow │ ├── config.json │ ├── convert_model.py │ ├── denoiser.py │ ├── distributed.py │ ├── glow.py │ ├── glow_old.py │ ├── inference.py │ └── mel2samp.py └── test ├── __init__.py ├── data ├── lda.mat ├── nnet3.raw ├── phoneme_table ├── reduce_dim.mat ├── test.TextGrid ├── test_dual_channel.txt ├── test_dual_channel.wav ├── test_mono_channel.txt └── test_mono_channel.wav ├── run_coverage.sh ├── test_align.py ├── test_decode.py ├── test_feat.py ├── test_ppg.py └── test_utterance.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/README.md -------------------------------------------------------------------------------- /data/am/final.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/data/am/final.raw -------------------------------------------------------------------------------- /data/am/phones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/data/am/phones.txt -------------------------------------------------------------------------------- /data/am/trans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/data/am/trans.txt -------------------------------------------------------------------------------- /data/am/tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/data/am/tree -------------------------------------------------------------------------------- /data/arpa_phonemes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/data/arpa_phonemes -------------------------------------------------------------------------------- /data/feats/final.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/data/feats/final.mat -------------------------------------------------------------------------------- /data/feats/reduce_dim.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/data/feats/reduce_dim.mat -------------------------------------------------------------------------------- /data/feats/splice_opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/data/feats/splice_opts -------------------------------------------------------------------------------- /data/filelists/training-set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/data/filelists/training-set.txt -------------------------------------------------------------------------------- /data/filelists/validation-set.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/data/filelists/validation-set.txt -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/environment.yml -------------------------------------------------------------------------------- /spec-file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/spec-file.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/__init__.py -------------------------------------------------------------------------------- /src/common/align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/align.py -------------------------------------------------------------------------------- /src/common/audio_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/audio_processing.py -------------------------------------------------------------------------------- /src/common/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/data_utils.py -------------------------------------------------------------------------------- /src/common/data_utterance.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/data_utterance.proto -------------------------------------------------------------------------------- /src/common/decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/decode.py -------------------------------------------------------------------------------- /src/common/feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/feat.py -------------------------------------------------------------------------------- /src/common/fp16_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/fp16_optimizer.py -------------------------------------------------------------------------------- /src/common/hparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/hparams.py -------------------------------------------------------------------------------- /src/common/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/layers.py -------------------------------------------------------------------------------- /src/common/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/logger.py -------------------------------------------------------------------------------- /src/common/loss_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/loss_function.py -------------------------------------------------------------------------------- /src/common/loss_scaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/loss_scaler.py -------------------------------------------------------------------------------- /src/common/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/model.py -------------------------------------------------------------------------------- /src/common/multiproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/multiproc.py -------------------------------------------------------------------------------- /src/common/plotting_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/plotting_utils.py -------------------------------------------------------------------------------- /src/common/stft.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/stft.py -------------------------------------------------------------------------------- /src/common/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/utils.py -------------------------------------------------------------------------------- /src/common/utterance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/common/utterance.py -------------------------------------------------------------------------------- /src/ppg/__init__.py: -------------------------------------------------------------------------------- 1 | from .compute_ppg import * 2 | 3 | -------------------------------------------------------------------------------- /src/ppg/compute_ppg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/ppg/compute_ppg.py -------------------------------------------------------------------------------- /src/script/generate_synthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/script/generate_synthesis.py -------------------------------------------------------------------------------- /src/script/train_ppg2mel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/script/train_ppg2mel.py -------------------------------------------------------------------------------- /src/script/train_waveglow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/script/train_waveglow.py -------------------------------------------------------------------------------- /src/waveglow/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/waveglow/config.json -------------------------------------------------------------------------------- /src/waveglow/convert_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/waveglow/convert_model.py -------------------------------------------------------------------------------- /src/waveglow/denoiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/waveglow/denoiser.py -------------------------------------------------------------------------------- /src/waveglow/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/waveglow/distributed.py -------------------------------------------------------------------------------- /src/waveglow/glow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/waveglow/glow.py -------------------------------------------------------------------------------- /src/waveglow/glow_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/waveglow/glow_old.py -------------------------------------------------------------------------------- /src/waveglow/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/waveglow/inference.py -------------------------------------------------------------------------------- /src/waveglow/mel2samp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/src/waveglow/mel2samp.py -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/data/lda.mat: -------------------------------------------------------------------------------- 1 | ../../data/feats/final.mat -------------------------------------------------------------------------------- /test/data/nnet3.raw: -------------------------------------------------------------------------------- 1 | ../../data/am/final.raw -------------------------------------------------------------------------------- /test/data/phoneme_table: -------------------------------------------------------------------------------- 1 | ../../data/arpa_phonemes -------------------------------------------------------------------------------- /test/data/reduce_dim.mat: -------------------------------------------------------------------------------- 1 | ../../data/feats/reduce_dim.mat -------------------------------------------------------------------------------- /test/data/test.TextGrid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/test/data/test.TextGrid -------------------------------------------------------------------------------- /test/data/test_dual_channel.txt: -------------------------------------------------------------------------------- 1 | This is a testing file. 2 | -------------------------------------------------------------------------------- /test/data/test_dual_channel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/test/data/test_dual_channel.wav -------------------------------------------------------------------------------- /test/data/test_mono_channel.txt: -------------------------------------------------------------------------------- 1 | Author of the danger trail, Philip Steels, etc. -------------------------------------------------------------------------------- /test/data/test_mono_channel.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/test/data/test_mono_channel.wav -------------------------------------------------------------------------------- /test/run_coverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/test/run_coverage.sh -------------------------------------------------------------------------------- /test/test_align.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/test/test_align.py -------------------------------------------------------------------------------- /test/test_decode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/test/test_decode.py -------------------------------------------------------------------------------- /test/test_feat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/test/test_feat.py -------------------------------------------------------------------------------- /test/test_ppg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/test/test_ppg.py -------------------------------------------------------------------------------- /test/test_utterance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guanlongzhao/fac-via-ppg/HEAD/test/test_utterance.py --------------------------------------------------------------------------------