├── .gitignore ├── 1.wav ├── 2.wav ├── 3.wav ├── 4.wav ├── README.md ├── api.py ├── arch.png ├── bpe_tokenizers ├── __init__.py ├── en_tokenizer.json ├── jp_tokenizer.json ├── kr_tokenizer.json ├── voice_tokenizer.py └── zh_tokenizer.json ├── demo.ipynb ├── dtts.egg-info └── PKG-INFO ├── gen.wav ├── gpt ├── __init__.py ├── config.json ├── dataset.py ├── model.py ├── model_deprect.py ├── modules │ ├── modules.py │ └── typical_sampling.py └── train.py ├── prepare ├── 0_vad_asr_save_to_jsonl.py ├── 1_slice.py ├── 2_resample.py ├── 3_filst.py ├── 4_hubert_f0.py ├── 5_save_vq_to_disk.py ├── __init__.py ├── asr_process.py ├── extract_vq.py ├── hubert_f0_one.py ├── load_infer.py ├── slicer2.py └── vad_process.py ├── train.py └── vqvae ├── __init__.py ├── configs ├── config.json ├── config_24k.json └── init ├── dataset_24k.py ├── diff_model.py ├── filelists └── init ├── model_24k.py ├── modules ├── DSConv.py ├── F0Predictor │ ├── CrepeF0Predictor.py │ ├── DioF0Predictor.py │ ├── F0Predictor.py │ ├── FCPEF0Predictor.py │ ├── HarvestF0Predictor.py │ ├── PMF0Predictor.py │ ├── RMVPEF0Predictor.py │ ├── __init__.py │ ├── crepe.py │ ├── fcpe │ │ ├── __init__.py │ │ ├── model.py │ │ ├── nvSTFT.py │ │ └── pcmer.py │ └── rmvpe │ │ ├── __init__.py │ │ ├── constants.py │ │ ├── deepunet.py │ │ ├── inference.py │ │ ├── model.py │ │ ├── seq.py │ │ ├── spec.py │ │ └── utils.py ├── __init__.py ├── attentions.py ├── commons.py ├── core_vq.py ├── dac_discriminator.py ├── enhancer.py ├── losses.py ├── mel_processing.py ├── modules.py └── quantize.py ├── utils ├── __init__.py ├── data_utils.py ├── diff_util.py ├── diffusion.py ├── dpm_solver.py ├── log_utils.py ├── utils.py └── xtransformers.py ├── vdecoder ├── __init__.py ├── hifigan │ ├── env.py │ ├── models.py │ ├── nvSTFT.py │ └── utils.py └── nsf_hifigan │ ├── env.py │ ├── models.py │ ├── nvSTFT.py │ └── utils.py └── vencoder ├── ContentVec256L12_Onnx.py ├── ContentVec768L12.py ├── ContentVec768L12_Onnx.py ├── __init__.py ├── encoder.py └── hubert ├── __init__.py ├── hubert_model.py └── hubert_model_onnx.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/.gitignore -------------------------------------------------------------------------------- /1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/1.wav -------------------------------------------------------------------------------- /2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/2.wav -------------------------------------------------------------------------------- /3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/3.wav -------------------------------------------------------------------------------- /4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/4.wav -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/README.md -------------------------------------------------------------------------------- /api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/api.py -------------------------------------------------------------------------------- /arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/arch.png -------------------------------------------------------------------------------- /bpe_tokenizers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bpe_tokenizers/en_tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/bpe_tokenizers/en_tokenizer.json -------------------------------------------------------------------------------- /bpe_tokenizers/jp_tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/bpe_tokenizers/jp_tokenizer.json -------------------------------------------------------------------------------- /bpe_tokenizers/kr_tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/bpe_tokenizers/kr_tokenizer.json -------------------------------------------------------------------------------- /bpe_tokenizers/voice_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/bpe_tokenizers/voice_tokenizer.py -------------------------------------------------------------------------------- /bpe_tokenizers/zh_tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/bpe_tokenizers/zh_tokenizer.json -------------------------------------------------------------------------------- /demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/demo.ipynb -------------------------------------------------------------------------------- /dtts.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/dtts.egg-info/PKG-INFO -------------------------------------------------------------------------------- /gen.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/gen.wav -------------------------------------------------------------------------------- /gpt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gpt/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/gpt/config.json -------------------------------------------------------------------------------- /gpt/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/gpt/dataset.py -------------------------------------------------------------------------------- /gpt/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/gpt/model.py -------------------------------------------------------------------------------- /gpt/model_deprect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/gpt/model_deprect.py -------------------------------------------------------------------------------- /gpt/modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/gpt/modules/modules.py -------------------------------------------------------------------------------- /gpt/modules/typical_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/gpt/modules/typical_sampling.py -------------------------------------------------------------------------------- /gpt/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/gpt/train.py -------------------------------------------------------------------------------- /prepare/0_vad_asr_save_to_jsonl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/prepare/0_vad_asr_save_to_jsonl.py -------------------------------------------------------------------------------- /prepare/1_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/prepare/1_slice.py -------------------------------------------------------------------------------- /prepare/2_resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/prepare/2_resample.py -------------------------------------------------------------------------------- /prepare/3_filst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/prepare/3_filst.py -------------------------------------------------------------------------------- /prepare/4_hubert_f0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/prepare/4_hubert_f0.py -------------------------------------------------------------------------------- /prepare/5_save_vq_to_disk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/prepare/5_save_vq_to_disk.py -------------------------------------------------------------------------------- /prepare/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /prepare/asr_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/prepare/asr_process.py -------------------------------------------------------------------------------- /prepare/extract_vq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/prepare/extract_vq.py -------------------------------------------------------------------------------- /prepare/hubert_f0_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/prepare/hubert_f0_one.py -------------------------------------------------------------------------------- /prepare/load_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/prepare/load_infer.py -------------------------------------------------------------------------------- /prepare/slicer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/prepare/slicer2.py -------------------------------------------------------------------------------- /prepare/vad_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/prepare/vad_process.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/train.py -------------------------------------------------------------------------------- /vqvae/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vqvae/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/configs/config.json -------------------------------------------------------------------------------- /vqvae/configs/config_24k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/configs/config_24k.json -------------------------------------------------------------------------------- /vqvae/configs/init: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vqvae/dataset_24k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/dataset_24k.py -------------------------------------------------------------------------------- /vqvae/diff_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/diff_model.py -------------------------------------------------------------------------------- /vqvae/filelists/init: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vqvae/model_24k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/model_24k.py -------------------------------------------------------------------------------- /vqvae/modules/DSConv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/DSConv.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/CrepeF0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/CrepeF0Predictor.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/DioF0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/DioF0Predictor.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/F0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/F0Predictor.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/FCPEF0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/FCPEF0Predictor.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/HarvestF0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/HarvestF0Predictor.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/PMF0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/PMF0Predictor.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/RMVPEF0Predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/RMVPEF0Predictor.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/crepe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/crepe.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/fcpe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/fcpe/__init__.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/fcpe/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/fcpe/model.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/fcpe/nvSTFT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/fcpe/nvSTFT.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/fcpe/pcmer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/fcpe/pcmer.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/rmvpe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/rmvpe/__init__.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/rmvpe/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/rmvpe/constants.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/rmvpe/deepunet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/rmvpe/deepunet.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/rmvpe/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/rmvpe/inference.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/rmvpe/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/rmvpe/model.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/rmvpe/seq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/rmvpe/seq.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/rmvpe/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/rmvpe/spec.py -------------------------------------------------------------------------------- /vqvae/modules/F0Predictor/rmvpe/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/F0Predictor/rmvpe/utils.py -------------------------------------------------------------------------------- /vqvae/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vqvae/modules/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/attentions.py -------------------------------------------------------------------------------- /vqvae/modules/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/commons.py -------------------------------------------------------------------------------- /vqvae/modules/core_vq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/core_vq.py -------------------------------------------------------------------------------- /vqvae/modules/dac_discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/dac_discriminator.py -------------------------------------------------------------------------------- /vqvae/modules/enhancer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/enhancer.py -------------------------------------------------------------------------------- /vqvae/modules/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/losses.py -------------------------------------------------------------------------------- /vqvae/modules/mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/mel_processing.py -------------------------------------------------------------------------------- /vqvae/modules/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/modules.py -------------------------------------------------------------------------------- /vqvae/modules/quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/modules/quantize.py -------------------------------------------------------------------------------- /vqvae/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vqvae/utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/utils/data_utils.py -------------------------------------------------------------------------------- /vqvae/utils/diff_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/utils/diff_util.py -------------------------------------------------------------------------------- /vqvae/utils/diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/utils/diffusion.py -------------------------------------------------------------------------------- /vqvae/utils/dpm_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/utils/dpm_solver.py -------------------------------------------------------------------------------- /vqvae/utils/log_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/utils/log_utils.py -------------------------------------------------------------------------------- /vqvae/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/utils/utils.py -------------------------------------------------------------------------------- /vqvae/utils/xtransformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/utils/xtransformers.py -------------------------------------------------------------------------------- /vqvae/vdecoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vqvae/vdecoder/hifigan/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vdecoder/hifigan/env.py -------------------------------------------------------------------------------- /vqvae/vdecoder/hifigan/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vdecoder/hifigan/models.py -------------------------------------------------------------------------------- /vqvae/vdecoder/hifigan/nvSTFT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vdecoder/hifigan/nvSTFT.py -------------------------------------------------------------------------------- /vqvae/vdecoder/hifigan/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vdecoder/hifigan/utils.py -------------------------------------------------------------------------------- /vqvae/vdecoder/nsf_hifigan/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vdecoder/nsf_hifigan/env.py -------------------------------------------------------------------------------- /vqvae/vdecoder/nsf_hifigan/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vdecoder/nsf_hifigan/models.py -------------------------------------------------------------------------------- /vqvae/vdecoder/nsf_hifigan/nvSTFT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vdecoder/nsf_hifigan/nvSTFT.py -------------------------------------------------------------------------------- /vqvae/vdecoder/nsf_hifigan/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vdecoder/nsf_hifigan/utils.py -------------------------------------------------------------------------------- /vqvae/vencoder/ContentVec256L12_Onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vencoder/ContentVec256L12_Onnx.py -------------------------------------------------------------------------------- /vqvae/vencoder/ContentVec768L12.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vencoder/ContentVec768L12.py -------------------------------------------------------------------------------- /vqvae/vencoder/ContentVec768L12_Onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vencoder/ContentVec768L12_Onnx.py -------------------------------------------------------------------------------- /vqvae/vencoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vqvae/vencoder/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vencoder/encoder.py -------------------------------------------------------------------------------- /vqvae/vencoder/hubert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vqvae/vencoder/hubert/hubert_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vencoder/hubert/hubert_model.py -------------------------------------------------------------------------------- /vqvae/vencoder/hubert/hubert_model_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adelacvg/detail_tts/HEAD/vqvae/vencoder/hubert/hubert_model_onnx.py --------------------------------------------------------------------------------