├── .gitignore ├── AR ├── __init__.py ├── data │ ├── __init__.py │ ├── bucket_sampler.py │ ├── data_module.py │ └── dataset.py ├── models │ ├── __init__.py │ ├── t2s_lightning_module.py │ ├── t2s_model.py │ └── utils.py ├── modules │ ├── __init__.py │ ├── activation.py │ ├── embedding.py │ ├── lr_schedulers.py │ ├── optim.py │ ├── patched_mha_with_cache.py │ ├── scaling.py │ └── transformer.py ├── text_processing │ ├── __init__.py │ ├── phonemizer.py │ └── symbols.py └── utils │ ├── __init__.py │ ├── initialize.py │ └── io.py ├── LICENSE ├── On-Termux-Ubuntu.md ├── README.md ├── _lib ├── attentions.py ├── cnhubert.py ├── commons.py ├── core_vq.py ├── mel_processing.py ├── models.py ├── modules.py ├── mrte_model.py ├── quantize.py └── transforms.py ├── config.json ├── ffmpeg ├── ffmpeg.exe ├── requirements.txt ├── server.py ├── text ├── __init__.py ├── chinese.py ├── cleaner.py ├── cmudict.rep ├── cmudict_cache.pickle ├── opencpop-strict.txt ├── symbols.py └── tone_sandhi.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/.gitignore -------------------------------------------------------------------------------- /AR/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AR/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AR/data/bucket_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/data/bucket_sampler.py -------------------------------------------------------------------------------- /AR/data/data_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/data/data_module.py -------------------------------------------------------------------------------- /AR/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/data/dataset.py -------------------------------------------------------------------------------- /AR/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AR/models/t2s_lightning_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/models/t2s_lightning_module.py -------------------------------------------------------------------------------- /AR/models/t2s_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/models/t2s_model.py -------------------------------------------------------------------------------- /AR/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/models/utils.py -------------------------------------------------------------------------------- /AR/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AR/modules/activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/modules/activation.py -------------------------------------------------------------------------------- /AR/modules/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/modules/embedding.py -------------------------------------------------------------------------------- /AR/modules/lr_schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/modules/lr_schedulers.py -------------------------------------------------------------------------------- /AR/modules/optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/modules/optim.py -------------------------------------------------------------------------------- /AR/modules/patched_mha_with_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/modules/patched_mha_with_cache.py -------------------------------------------------------------------------------- /AR/modules/scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/modules/scaling.py -------------------------------------------------------------------------------- /AR/modules/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/modules/transformer.py -------------------------------------------------------------------------------- /AR/text_processing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AR/text_processing/phonemizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/text_processing/phonemizer.py -------------------------------------------------------------------------------- /AR/text_processing/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/text_processing/symbols.py -------------------------------------------------------------------------------- /AR/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/utils/__init__.py -------------------------------------------------------------------------------- /AR/utils/initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/utils/initialize.py -------------------------------------------------------------------------------- /AR/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/AR/utils/io.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/LICENSE -------------------------------------------------------------------------------- /On-Termux-Ubuntu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/On-Termux-Ubuntu.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/README.md -------------------------------------------------------------------------------- /_lib/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/_lib/attentions.py -------------------------------------------------------------------------------- /_lib/cnhubert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/_lib/cnhubert.py -------------------------------------------------------------------------------- /_lib/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/_lib/commons.py -------------------------------------------------------------------------------- /_lib/core_vq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/_lib/core_vq.py -------------------------------------------------------------------------------- /_lib/mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/_lib/mel_processing.py -------------------------------------------------------------------------------- /_lib/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/_lib/models.py -------------------------------------------------------------------------------- /_lib/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/_lib/modules.py -------------------------------------------------------------------------------- /_lib/mrte_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/_lib/mrte_model.py -------------------------------------------------------------------------------- /_lib/quantize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/_lib/quantize.py -------------------------------------------------------------------------------- /_lib/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/_lib/transforms.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/config.json -------------------------------------------------------------------------------- /ffmpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/ffmpeg -------------------------------------------------------------------------------- /ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/ffmpeg.exe -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/server.py -------------------------------------------------------------------------------- /text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/text/__init__.py -------------------------------------------------------------------------------- /text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/text/chinese.py -------------------------------------------------------------------------------- /text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/text/cleaner.py -------------------------------------------------------------------------------- /text/cmudict.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/text/cmudict.rep -------------------------------------------------------------------------------- /text/cmudict_cache.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/text/cmudict_cache.pickle -------------------------------------------------------------------------------- /text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/text/opencpop-strict.txt -------------------------------------------------------------------------------- /text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/text/symbols.py -------------------------------------------------------------------------------- /text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/text/tone_sandhi.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ben0oil1/GPT-SoVITS-Server/HEAD/utils.py --------------------------------------------------------------------------------