├── .dockerignore ├── .gitattributes ├── .gitignore ├── .python-version ├── .vscode ├── extensions.json └── settings.json ├── App.bat ├── ConvertONNX.bat ├── Data └── .gitignore ├── Dataset.bat ├── Dockerfile.deploy ├── Dockerfile.train ├── Editor.bat ├── Inference.bat ├── Initialize.bat ├── LGPL_LICENSE ├── LICENSE ├── Merge.bat ├── README.md ├── Server.bat ├── StyleVectors.bat ├── Train.bat ├── app.py ├── bert ├── bert_models.json ├── chinese-roberta-wwm-ext-large-onnx │ ├── added_tokens.json │ ├── config.json │ ├── special_tokens_map.json │ ├── tokenizer.json │ ├── tokenizer_config.json │ └── vocab.txt ├── chinese-roberta-wwm-ext-large │ ├── added_tokens.json │ ├── config.json │ ├── special_tokens_map.json │ ├── tokenizer.json │ ├── tokenizer_config.json │ └── vocab.txt ├── deberta-v2-large-japanese-char-wwm-onnx │ ├── config.json │ ├── special_tokens_map.json │ ├── tokenizer.json │ ├── tokenizer_config.json │ └── vocab.txt ├── deberta-v2-large-japanese-char-wwm │ ├── config.json │ ├── special_tokens_map.json │ ├── tokenizer.json │ ├── tokenizer_config.json │ └── vocab.txt ├── deberta-v3-large-onnx │ ├── config.json │ ├── generator_config.json │ ├── tokenizer.json │ └── tokenizer_config.json └── deberta-v3-large │ ├── config.json │ ├── generator_config.json │ ├── tokenizer.json │ └── tokenizer_config.json ├── bert_gen.py ├── colab.ipynb ├── config.py ├── configs ├── config.json ├── config_jp_extra.json └── default_paths.yml ├── convert_bert_onnx.py ├── convert_onnx.py ├── data_utils.py ├── default_config.yml ├── default_style.py ├── dict_data ├── .gitignore └── default.csv ├── docs ├── CHANGELOG.md ├── CLI.md ├── FAQ.md ├── Style-Bert-VITS2_en.md ├── TERMS_OF_USE.md └── paperspace.md ├── gen_yaml.py ├── gradio_tabs ├── convert_onnx.py ├── dataset.py ├── inference.py ├── merge.py ├── style_vectors.py └── train.py ├── initialize.py ├── inputs └── .gitignore ├── library.ipynb ├── losses.py ├── mel_processing.py ├── model_assets └── .gitignore ├── preprocess_all.py ├── preprocess_text.py ├── pyproject.toml ├── requirements-colab.txt ├── requirements-infer.txt ├── requirements.txt ├── resample.py ├── scripts ├── Install-Style-Bert-VITS2-CPU.bat ├── Install-Style-Bert-VITS2.bat ├── Setup-Python.bat └── Update-Style-Bert-VITS2.bat ├── server_editor.py ├── server_fastapi.py ├── slice.py ├── slm └── wavlm-base-plus │ ├── .gitattributes │ ├── README.md │ ├── config.json │ └── preprocessor_config.json ├── speech_mos.py ├── style_bert_vits2 ├── .editorconfig ├── __init__.py ├── constants.py ├── logging.py ├── models │ ├── __init__.py │ ├── attentions.py │ ├── commons.py │ ├── hyper_parameters.py │ ├── infer.py │ ├── infer_onnx.py │ ├── models.py │ ├── models_jp_extra.py │ ├── modules.py │ ├── monotonic_alignment.py │ ├── transforms.py │ └── utils │ │ ├── __init__.py │ │ ├── checkpoints.py │ │ └── safetensors.py ├── nlp │ ├── __init__.py │ ├── bert_models.py │ ├── chinese │ │ ├── __init__.py │ │ ├── bert_feature.py │ │ ├── g2p.py │ │ ├── normalizer.py │ │ ├── opencpop-strict.txt │ │ └── tone_sandhi.py │ ├── english │ │ ├── __init__.py │ │ ├── bert_feature.py │ │ ├── cmudict.py │ │ ├── cmudict.rep │ │ ├── cmudict_cache.pickle │ │ ├── g2p.py │ │ └── normalizer.py │ ├── japanese │ │ ├── __init__.py │ │ ├── bert_feature.py │ │ ├── g2p.py │ │ ├── g2p_utils.py │ │ ├── mora_list.py │ │ ├── normalizer.py │ │ ├── pyopenjtalk_worker │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── worker_client.py │ │ │ ├── worker_common.py │ │ │ └── worker_server.py │ │ └── user_dict │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── part_of_speech_data.py │ │ │ └── word_model.py │ ├── onnx_bert_models.py │ └── symbols.py ├── tts_model.py ├── utils │ ├── __init__.py │ ├── stdout_wrapper.py │ ├── strenum.py │ └── subprocess.py └── voice.py ├── style_gen.py ├── tests ├── .gitignore ├── __init__.py └── test_main.py ├── train_ms.py ├── train_ms_jp_extra.py └── transcribe.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.bat text eol=crlf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /App.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/App.bat -------------------------------------------------------------------------------- /ConvertONNX.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/ConvertONNX.bat -------------------------------------------------------------------------------- /Data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /Dataset.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/Dataset.bat -------------------------------------------------------------------------------- /Dockerfile.deploy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/Dockerfile.deploy -------------------------------------------------------------------------------- /Dockerfile.train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/Dockerfile.train -------------------------------------------------------------------------------- /Editor.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/Editor.bat -------------------------------------------------------------------------------- /Inference.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/Inference.bat -------------------------------------------------------------------------------- /Initialize.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/Initialize.bat -------------------------------------------------------------------------------- /LGPL_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/LGPL_LICENSE -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/LICENSE -------------------------------------------------------------------------------- /Merge.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/Merge.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/README.md -------------------------------------------------------------------------------- /Server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/Server.bat -------------------------------------------------------------------------------- /StyleVectors.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/StyleVectors.bat -------------------------------------------------------------------------------- /Train.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/Train.bat -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/app.py -------------------------------------------------------------------------------- /bert/bert_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/bert_models.json -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large-onnx/added_tokens.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large-onnx/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/chinese-roberta-wwm-ext-large-onnx/config.json -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large-onnx/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/chinese-roberta-wwm-ext-large-onnx/special_tokens_map.json -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large-onnx/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/chinese-roberta-wwm-ext-large-onnx/tokenizer.json -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large-onnx/tokenizer_config.json: -------------------------------------------------------------------------------- 1 | {"init_inputs": []} 2 | -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large-onnx/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/chinese-roberta-wwm-ext-large-onnx/vocab.txt -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/added_tokens.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/chinese-roberta-wwm-ext-large/config.json -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/chinese-roberta-wwm-ext-large/special_tokens_map.json -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/chinese-roberta-wwm-ext-large/tokenizer.json -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/tokenizer_config.json: -------------------------------------------------------------------------------- 1 | {"init_inputs": []} 2 | -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/chinese-roberta-wwm-ext-large/vocab.txt -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm-onnx/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v2-large-japanese-char-wwm-onnx/config.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm-onnx/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v2-large-japanese-char-wwm-onnx/special_tokens_map.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm-onnx/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v2-large-japanese-char-wwm-onnx/tokenizer.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm-onnx/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v2-large-japanese-char-wwm-onnx/tokenizer_config.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm-onnx/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v2-large-japanese-char-wwm-onnx/vocab.txt -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v2-large-japanese-char-wwm/config.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v2-large-japanese-char-wwm/special_tokens_map.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v2-large-japanese-char-wwm/tokenizer.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v2-large-japanese-char-wwm/tokenizer_config.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v2-large-japanese-char-wwm/vocab.txt -------------------------------------------------------------------------------- /bert/deberta-v3-large-onnx/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v3-large-onnx/config.json -------------------------------------------------------------------------------- /bert/deberta-v3-large-onnx/generator_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v3-large-onnx/generator_config.json -------------------------------------------------------------------------------- /bert/deberta-v3-large-onnx/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v3-large-onnx/tokenizer.json -------------------------------------------------------------------------------- /bert/deberta-v3-large-onnx/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v3-large-onnx/tokenizer_config.json -------------------------------------------------------------------------------- /bert/deberta-v3-large/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v3-large/config.json -------------------------------------------------------------------------------- /bert/deberta-v3-large/generator_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v3-large/generator_config.json -------------------------------------------------------------------------------- /bert/deberta-v3-large/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v3-large/tokenizer.json -------------------------------------------------------------------------------- /bert/deberta-v3-large/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert/deberta-v3-large/tokenizer_config.json -------------------------------------------------------------------------------- /bert_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/bert_gen.py -------------------------------------------------------------------------------- /colab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/colab.ipynb -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/config.py -------------------------------------------------------------------------------- /configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/configs/config.json -------------------------------------------------------------------------------- /configs/config_jp_extra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/configs/config_jp_extra.json -------------------------------------------------------------------------------- /configs/default_paths.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/configs/default_paths.yml -------------------------------------------------------------------------------- /convert_bert_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/convert_bert_onnx.py -------------------------------------------------------------------------------- /convert_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/convert_onnx.py -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/data_utils.py -------------------------------------------------------------------------------- /default_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/default_config.yml -------------------------------------------------------------------------------- /default_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/default_style.py -------------------------------------------------------------------------------- /dict_data/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !default.csv 4 | -------------------------------------------------------------------------------- /dict_data/default.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/dict_data/default.csv -------------------------------------------------------------------------------- /docs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/docs/CHANGELOG.md -------------------------------------------------------------------------------- /docs/CLI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/docs/CLI.md -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/Style-Bert-VITS2_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/docs/Style-Bert-VITS2_en.md -------------------------------------------------------------------------------- /docs/TERMS_OF_USE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/docs/TERMS_OF_USE.md -------------------------------------------------------------------------------- /docs/paperspace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/docs/paperspace.md -------------------------------------------------------------------------------- /gen_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/gen_yaml.py -------------------------------------------------------------------------------- /gradio_tabs/convert_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/gradio_tabs/convert_onnx.py -------------------------------------------------------------------------------- /gradio_tabs/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/gradio_tabs/dataset.py -------------------------------------------------------------------------------- /gradio_tabs/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/gradio_tabs/inference.py -------------------------------------------------------------------------------- /gradio_tabs/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/gradio_tabs/merge.py -------------------------------------------------------------------------------- /gradio_tabs/style_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/gradio_tabs/style_vectors.py -------------------------------------------------------------------------------- /gradio_tabs/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/gradio_tabs/train.py -------------------------------------------------------------------------------- /initialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/initialize.py -------------------------------------------------------------------------------- /inputs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /library.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/library.ipynb -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/losses.py -------------------------------------------------------------------------------- /mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/mel_processing.py -------------------------------------------------------------------------------- /model_assets/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /preprocess_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/preprocess_all.py -------------------------------------------------------------------------------- /preprocess_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/preprocess_text.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements-colab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/requirements-colab.txt -------------------------------------------------------------------------------- /requirements-infer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/requirements-infer.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/requirements.txt -------------------------------------------------------------------------------- /resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/resample.py -------------------------------------------------------------------------------- /scripts/Install-Style-Bert-VITS2-CPU.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/scripts/Install-Style-Bert-VITS2-CPU.bat -------------------------------------------------------------------------------- /scripts/Install-Style-Bert-VITS2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/scripts/Install-Style-Bert-VITS2.bat -------------------------------------------------------------------------------- /scripts/Setup-Python.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/scripts/Setup-Python.bat -------------------------------------------------------------------------------- /scripts/Update-Style-Bert-VITS2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/scripts/Update-Style-Bert-VITS2.bat -------------------------------------------------------------------------------- /server_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/server_editor.py -------------------------------------------------------------------------------- /server_fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/server_fastapi.py -------------------------------------------------------------------------------- /slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/slice.py -------------------------------------------------------------------------------- /slm/wavlm-base-plus/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/slm/wavlm-base-plus/.gitattributes -------------------------------------------------------------------------------- /slm/wavlm-base-plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/slm/wavlm-base-plus/README.md -------------------------------------------------------------------------------- /slm/wavlm-base-plus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/slm/wavlm-base-plus/config.json -------------------------------------------------------------------------------- /slm/wavlm-base-plus/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/slm/wavlm-base-plus/preprocessor_config.json -------------------------------------------------------------------------------- /speech_mos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/speech_mos.py -------------------------------------------------------------------------------- /style_bert_vits2/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/.editorconfig -------------------------------------------------------------------------------- /style_bert_vits2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style_bert_vits2/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/constants.py -------------------------------------------------------------------------------- /style_bert_vits2/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/logging.py -------------------------------------------------------------------------------- /style_bert_vits2/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style_bert_vits2/models/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/models/attentions.py -------------------------------------------------------------------------------- /style_bert_vits2/models/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/models/commons.py -------------------------------------------------------------------------------- /style_bert_vits2/models/hyper_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/models/hyper_parameters.py -------------------------------------------------------------------------------- /style_bert_vits2/models/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/models/infer.py -------------------------------------------------------------------------------- /style_bert_vits2/models/infer_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/models/infer_onnx.py -------------------------------------------------------------------------------- /style_bert_vits2/models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/models/models.py -------------------------------------------------------------------------------- /style_bert_vits2/models/models_jp_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/models/models_jp_extra.py -------------------------------------------------------------------------------- /style_bert_vits2/models/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/models/modules.py -------------------------------------------------------------------------------- /style_bert_vits2/models/monotonic_alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/models/monotonic_alignment.py -------------------------------------------------------------------------------- /style_bert_vits2/models/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/models/transforms.py -------------------------------------------------------------------------------- /style_bert_vits2/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/models/utils/__init__.py -------------------------------------------------------------------------------- /style_bert_vits2/models/utils/checkpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/models/utils/checkpoints.py -------------------------------------------------------------------------------- /style_bert_vits2/models/utils/safetensors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/models/utils/safetensors.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/__init__.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/bert_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/bert_models.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/chinese/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style_bert_vits2/nlp/chinese/bert_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/chinese/bert_feature.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/chinese/g2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/chinese/g2p.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/chinese/normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/chinese/normalizer.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/chinese/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/chinese/opencpop-strict.txt -------------------------------------------------------------------------------- /style_bert_vits2/nlp/chinese/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/chinese/tone_sandhi.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/english/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style_bert_vits2/nlp/english/bert_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/english/bert_feature.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/english/cmudict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/english/cmudict.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/english/cmudict.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/english/cmudict.rep -------------------------------------------------------------------------------- /style_bert_vits2/nlp/english/cmudict_cache.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/english/cmudict_cache.pickle -------------------------------------------------------------------------------- /style_bert_vits2/nlp/english/g2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/english/g2p.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/english/normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/english/normalizer.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/bert_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/bert_feature.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/g2p.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/g2p.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/g2p_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/g2p_utils.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/mora_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/mora_list.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/normalizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/normalizer.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/pyopenjtalk_worker/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/pyopenjtalk_worker/__init__.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/pyopenjtalk_worker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/pyopenjtalk_worker/__main__.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/pyopenjtalk_worker/worker_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/pyopenjtalk_worker/worker_client.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/pyopenjtalk_worker/worker_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/pyopenjtalk_worker/worker_common.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/pyopenjtalk_worker/worker_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/pyopenjtalk_worker/worker_server.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/user_dict/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/user_dict/README.md -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/user_dict/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/user_dict/__init__.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/user_dict/part_of_speech_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/user_dict/part_of_speech_data.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/japanese/user_dict/word_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/japanese/user_dict/word_model.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/onnx_bert_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/onnx_bert_models.py -------------------------------------------------------------------------------- /style_bert_vits2/nlp/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/nlp/symbols.py -------------------------------------------------------------------------------- /style_bert_vits2/tts_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/tts_model.py -------------------------------------------------------------------------------- /style_bert_vits2/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/utils/__init__.py -------------------------------------------------------------------------------- /style_bert_vits2/utils/stdout_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/utils/stdout_wrapper.py -------------------------------------------------------------------------------- /style_bert_vits2/utils/strenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/utils/strenum.py -------------------------------------------------------------------------------- /style_bert_vits2/utils/subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/utils/subprocess.py -------------------------------------------------------------------------------- /style_bert_vits2/voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_bert_vits2/voice.py -------------------------------------------------------------------------------- /style_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/style_gen.py -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.wav -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/tests/test_main.py -------------------------------------------------------------------------------- /train_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/train_ms.py -------------------------------------------------------------------------------- /train_ms_jp_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/train_ms_jp_extra.py -------------------------------------------------------------------------------- /transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/litagin02/Style-Bert-VITS2/HEAD/transcribe.py --------------------------------------------------------------------------------