├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── Data └── Yennefer │ ├── config.json │ ├── configs │ └── config.json │ └── models │ └── test.txt ├── LICENSE ├── README.md ├── Web ├── assets │ ├── index-21bc6a28.css │ └── index-42e3d9eb.js ├── img │ ├── Hiyori.ico │ ├── Hiyori2.png │ ├── helps1.png │ └── helps2.png └── index.html ├── attentions.py ├── audio_slicer.bat ├── audio_slicer.py ├── audio_transcribe.bat ├── bert ├── Erlangshen-DeBERTa-v2-710M-Chinese │ ├── config.json │ ├── special_tokens_map.json │ ├── tokenizer_config.json │ └── vocab.txt ├── Erlangshen-MegatronBert-1.3B-Chinese │ ├── config.json │ └── vocab.txt ├── Erlangshen-MegatronBert-3.9B-Chinese │ ├── config.json │ ├── special_tokens_map.json │ ├── tokenizer_config.json │ └── vocab.txt ├── bert-base-japanese-v3 │ ├── .gitattributes │ ├── README.md │ ├── config.json │ ├── tokenizer_config.json │ └── vocab.txt ├── bert-large-japanese-v2 │ ├── .gitattributes │ ├── README.md │ ├── config.json │ ├── tokenizer_config.json │ └── vocab.txt ├── bert_models.json ├── chinese-roberta-wwm-ext-large │ ├── .gitattributes │ ├── README.md │ ├── added_tokens.json │ ├── config.json │ ├── special_tokens_map.json │ ├── tokenizer.json │ ├── tokenizer_config.json │ └── vocab.txt ├── deberta-v2-large-japanese-char-wwm │ ├── .gitattributes │ ├── README.md │ ├── config.json │ ├── special_tokens_map.json │ ├── tokenizer_config.json │ └── vocab.txt ├── deberta-v2-large-japanese │ ├── .gitattributes │ ├── README.md │ ├── config.json │ ├── special_tokens_map.json │ ├── tokenizer.json │ └── tokenizer_config.json └── deberta-v3-large │ ├── .gitattributes │ ├── README.md │ ├── config.json │ ├── generator_config.json │ └── tokenizer_config.json ├── bert_gen.py ├── clap_gen.py ├── clap_wrapper.py ├── commons.py ├── compress_model.py ├── config.py ├── config.yml ├── configs └── config.json ├── css └── custom.css ├── data_utils.py ├── default_config.yml ├── emotional ├── clap-htsat-fused │ ├── .gitattributes │ ├── README.md │ ├── config.json │ ├── merges.txt │ ├── preprocessor_config.json │ ├── special_tokens_map.json │ ├── tokenizer.json │ ├── tokenizer_config.json │ └── vocab.json └── wav2vec2-large-robust-12-ft-emotion-msp-dim │ ├── .gitattributes │ ├── LICENSE │ ├── README.md │ ├── config.json │ ├── preprocessor_config.json │ └── vocab.json ├── empty_emo.npy ├── export_onnx.py ├── filelists └── sample.list ├── for_deploy ├── infer.py ├── infer_utils.py └── webui.py ├── infer.py ├── losses.py ├── mel_processing.py ├── models.py ├── modules.py ├── monotonic_align ├── __init__.py └── core.py ├── oldVersion ├── V101 │ ├── __init__.py │ ├── models.py │ └── text │ │ ├── __init__.py │ │ ├── chinese.py │ │ ├── chinese_bert.py │ │ ├── cleaner.py │ │ ├── english.py │ │ ├── english_bert_mock.py │ │ ├── japanese.py │ │ ├── opencpop-strict.txt │ │ ├── symbols.py │ │ └── tone_sandhi.py ├── V110 │ ├── __init__.py │ ├── models.py │ └── text │ │ ├── __init__.py │ │ ├── chinese.py │ │ ├── chinese_bert.py │ │ ├── cleaner.py │ │ ├── english.py │ │ ├── english_bert_mock.py │ │ ├── japanese.py │ │ ├── japanese_bert.py │ │ ├── opencpop-strict.txt │ │ ├── symbols.py │ │ └── tone_sandhi.py ├── V111 │ ├── __init__.py │ ├── models.py │ └── text │ │ ├── __init__.py │ │ ├── chinese.py │ │ ├── chinese_bert.py │ │ ├── cleaner.py │ │ ├── english.py │ │ ├── english_bert_mock.py │ │ ├── fix │ │ ├── __init__.py │ │ ├── japanese.py │ │ └── japanese_bert.py │ │ ├── japanese.py │ │ ├── japanese_bert.py │ │ ├── opencpop-strict.txt │ │ ├── symbols.py │ │ └── tone_sandhi.py ├── V200 │ ├── __init__.py │ ├── models.py │ └── text │ │ ├── __init__.py │ │ ├── bert_utils.py │ │ ├── chinese.py │ │ ├── chinese_bert.py │ │ ├── cleaner.py │ │ ├── cmudict.rep │ │ ├── cmudict_cache.pickle │ │ ├── english.py │ │ ├── english_bert_mock.py │ │ ├── japanese.py │ │ ├── japanese_bert.py │ │ ├── opencpop-strict.txt │ │ ├── symbols.py │ │ └── tone_sandhi.py ├── V210 │ ├── __init__.py │ ├── emo_gen.py │ ├── models.py │ └── text │ │ ├── __init__.py │ │ ├── bert_utils.py │ │ ├── chinese.py │ │ ├── chinese_bert.py │ │ ├── cleaner.py │ │ ├── cmudict.rep │ │ ├── cmudict_cache.pickle │ │ ├── english.py │ │ ├── english_bert_mock.py │ │ ├── japanese.py │ │ ├── japanese_bert.py │ │ ├── opencpop-strict.txt │ │ ├── symbols.py │ │ └── tone_sandhi.py └── __init__.py ├── onnx_infer.py ├── onnx_modules ├── V200 │ ├── __init__.py │ ├── attentions_onnx.py │ ├── models_onnx.py │ └── text │ │ ├── __init__.py │ │ ├── bert_utils.py │ │ ├── chinese.py │ │ ├── chinese_bert.py │ │ ├── cleaner.py │ │ ├── english.py │ │ ├── english_bert_mock.py │ │ ├── japanese.py │ │ ├── japanese_bert.py │ │ ├── opencpop-strict.txt │ │ ├── symbols.py │ │ └── tone_sandhi.py ├── V200_OnnxInference │ └── __init__.py ├── V210 │ ├── __init__.py │ ├── attentions_onnx.py │ ├── models_onnx.py │ └── text │ │ ├── __init__.py │ │ └── symbols.py ├── V210_OnnxInference │ └── __init__.py ├── V220 │ ├── __init__.py │ ├── attentions_onnx.py │ ├── models_onnx.py │ └── text │ │ ├── __init__.py │ │ └── symbols.py ├── V220_OnnxInference │ └── __init__.py ├── V220_novq_dev │ ├── __init__.py │ ├── attentions_onnx.py │ ├── models_onnx.py │ └── text │ │ ├── __init__.py │ │ └── symbols.py ├── V230 │ ├── __init__.py │ ├── attentions_onnx.py │ ├── models_onnx.py │ └── text │ │ ├── __init__.py │ │ └── symbols.py ├── V230_OnnxInference │ └── __init__.py └── __init__.py ├── preprocess_text.py ├── re_matching.py ├── requirements.txt ├── resample.py ├── resample_legacy.py ├── run_MnodesAndMgpus.sh ├── server_fastapi.bat ├── server_fastapi.py ├── short_audio_transcribe.py ├── slicer2.py ├── slm └── wavlm-base-plus │ ├── .gitattributes │ ├── README.md │ ├── config.json │ └── preprocessor_config.json ├── spec_gen.py ├── text ├── __init__.py ├── bert_utils.py ├── chinese.py ├── chinese_bert.py ├── cleaner.py ├── cmudict.rep ├── cmudict_cache.pickle ├── english.py ├── english_bert_mock.py ├── japanese.py ├── japanese_bert.py ├── opencpop-strict.txt ├── symbols.py └── tone_sandhi.py ├── tools ├── __init__.py ├── classify_language.py ├── log.py ├── sentence.py └── translate.py ├── train.bat ├── train_ms.py ├── transforms.py ├── update_status.py ├── utils.py ├── webui.bat ├── webui.py ├── webui_preprocess.bat ├── webui_preprocess.py └── yolo_add.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Data/Yennefer/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/Data/Yennefer/config.json -------------------------------------------------------------------------------- /Data/Yennefer/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/Data/Yennefer/configs/config.json -------------------------------------------------------------------------------- /Data/Yennefer/models/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/README.md -------------------------------------------------------------------------------- /Web/assets/index-21bc6a28.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/Web/assets/index-21bc6a28.css -------------------------------------------------------------------------------- /Web/assets/index-42e3d9eb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/Web/assets/index-42e3d9eb.js -------------------------------------------------------------------------------- /Web/img/Hiyori.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/Web/img/Hiyori.ico -------------------------------------------------------------------------------- /Web/img/Hiyori2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/Web/img/Hiyori2.png -------------------------------------------------------------------------------- /Web/img/helps1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/Web/img/helps1.png -------------------------------------------------------------------------------- /Web/img/helps2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/Web/img/helps2.png -------------------------------------------------------------------------------- /Web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/Web/index.html -------------------------------------------------------------------------------- /attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/attentions.py -------------------------------------------------------------------------------- /audio_slicer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/audio_slicer.bat -------------------------------------------------------------------------------- /audio_slicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/audio_slicer.py -------------------------------------------------------------------------------- /audio_transcribe.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/audio_transcribe.bat -------------------------------------------------------------------------------- /bert/Erlangshen-DeBERTa-v2-710M-Chinese/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/Erlangshen-DeBERTa-v2-710M-Chinese/config.json -------------------------------------------------------------------------------- /bert/Erlangshen-DeBERTa-v2-710M-Chinese/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/Erlangshen-DeBERTa-v2-710M-Chinese/special_tokens_map.json -------------------------------------------------------------------------------- /bert/Erlangshen-DeBERTa-v2-710M-Chinese/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/Erlangshen-DeBERTa-v2-710M-Chinese/tokenizer_config.json -------------------------------------------------------------------------------- /bert/Erlangshen-DeBERTa-v2-710M-Chinese/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/Erlangshen-DeBERTa-v2-710M-Chinese/vocab.txt -------------------------------------------------------------------------------- /bert/Erlangshen-MegatronBert-1.3B-Chinese/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/Erlangshen-MegatronBert-1.3B-Chinese/config.json -------------------------------------------------------------------------------- /bert/Erlangshen-MegatronBert-1.3B-Chinese/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/Erlangshen-MegatronBert-1.3B-Chinese/vocab.txt -------------------------------------------------------------------------------- /bert/Erlangshen-MegatronBert-3.9B-Chinese/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/Erlangshen-MegatronBert-3.9B-Chinese/config.json -------------------------------------------------------------------------------- /bert/Erlangshen-MegatronBert-3.9B-Chinese/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/Erlangshen-MegatronBert-3.9B-Chinese/special_tokens_map.json -------------------------------------------------------------------------------- /bert/Erlangshen-MegatronBert-3.9B-Chinese/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/Erlangshen-MegatronBert-3.9B-Chinese/tokenizer_config.json -------------------------------------------------------------------------------- /bert/Erlangshen-MegatronBert-3.9B-Chinese/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/Erlangshen-MegatronBert-3.9B-Chinese/vocab.txt -------------------------------------------------------------------------------- /bert/bert-base-japanese-v3/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/bert-base-japanese-v3/.gitattributes -------------------------------------------------------------------------------- /bert/bert-base-japanese-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/bert-base-japanese-v3/README.md -------------------------------------------------------------------------------- /bert/bert-base-japanese-v3/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/bert-base-japanese-v3/config.json -------------------------------------------------------------------------------- /bert/bert-base-japanese-v3/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/bert-base-japanese-v3/tokenizer_config.json -------------------------------------------------------------------------------- /bert/bert-base-japanese-v3/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/bert-base-japanese-v3/vocab.txt -------------------------------------------------------------------------------- /bert/bert-large-japanese-v2/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/bert-large-japanese-v2/.gitattributes -------------------------------------------------------------------------------- /bert/bert-large-japanese-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/bert-large-japanese-v2/README.md -------------------------------------------------------------------------------- /bert/bert-large-japanese-v2/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/bert-large-japanese-v2/config.json -------------------------------------------------------------------------------- /bert/bert-large-japanese-v2/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/bert-large-japanese-v2/tokenizer_config.json -------------------------------------------------------------------------------- /bert/bert-large-japanese-v2/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/bert-large-japanese-v2/vocab.txt -------------------------------------------------------------------------------- /bert/bert_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/bert_models.json -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/chinese-roberta-wwm-ext-large/.gitattributes -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/chinese-roberta-wwm-ext-large/README.md -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/added_tokens.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/chinese-roberta-wwm-ext-large/config.json -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/chinese-roberta-wwm-ext-large/special_tokens_map.json -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/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/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/chinese-roberta-wwm-ext-large/vocab.txt -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v2-large-japanese-char-wwm/.gitattributes -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v2-large-japanese-char-wwm/README.md -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/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/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v2-large-japanese-char-wwm/special_tokens_map.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v2-large-japanese-char-wwm/tokenizer_config.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v2-large-japanese-char-wwm/vocab.txt -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v2-large-japanese/.gitattributes -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v2-large-japanese/README.md -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v2-large-japanese/config.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v2-large-japanese/special_tokens_map.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v2-large-japanese/tokenizer.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v2-large-japanese/tokenizer_config.json -------------------------------------------------------------------------------- /bert/deberta-v3-large/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v3-large/.gitattributes -------------------------------------------------------------------------------- /bert/deberta-v3-large/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v3-large/README.md -------------------------------------------------------------------------------- /bert/deberta-v3-large/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v3-large/config.json -------------------------------------------------------------------------------- /bert/deberta-v3-large/generator_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v3-large/generator_config.json -------------------------------------------------------------------------------- /bert/deberta-v3-large/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert/deberta-v3-large/tokenizer_config.json -------------------------------------------------------------------------------- /bert_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/bert_gen.py -------------------------------------------------------------------------------- /clap_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/clap_gen.py -------------------------------------------------------------------------------- /clap_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/clap_wrapper.py -------------------------------------------------------------------------------- /commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/commons.py -------------------------------------------------------------------------------- /compress_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/compress_model.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/config.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/config.yml -------------------------------------------------------------------------------- /configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/configs/config.json -------------------------------------------------------------------------------- /css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/css/custom.css -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/data_utils.py -------------------------------------------------------------------------------- /default_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/default_config.yml -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/clap-htsat-fused/.gitattributes -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/clap-htsat-fused/README.md -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/clap-htsat-fused/config.json -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/merges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/clap-htsat-fused/merges.txt -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/clap-htsat-fused/preprocessor_config.json -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/clap-htsat-fused/special_tokens_map.json -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/clap-htsat-fused/tokenizer.json -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/clap-htsat-fused/tokenizer_config.json -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/clap-htsat-fused/vocab.json -------------------------------------------------------------------------------- /emotional/wav2vec2-large-robust-12-ft-emotion-msp-dim/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/wav2vec2-large-robust-12-ft-emotion-msp-dim/.gitattributes -------------------------------------------------------------------------------- /emotional/wav2vec2-large-robust-12-ft-emotion-msp-dim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/wav2vec2-large-robust-12-ft-emotion-msp-dim/LICENSE -------------------------------------------------------------------------------- /emotional/wav2vec2-large-robust-12-ft-emotion-msp-dim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/wav2vec2-large-robust-12-ft-emotion-msp-dim/README.md -------------------------------------------------------------------------------- /emotional/wav2vec2-large-robust-12-ft-emotion-msp-dim/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/wav2vec2-large-robust-12-ft-emotion-msp-dim/config.json -------------------------------------------------------------------------------- /emotional/wav2vec2-large-robust-12-ft-emotion-msp-dim/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/emotional/wav2vec2-large-robust-12-ft-emotion-msp-dim/preprocessor_config.json -------------------------------------------------------------------------------- /emotional/wav2vec2-large-robust-12-ft-emotion-msp-dim/vocab.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /empty_emo.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/empty_emo.npy -------------------------------------------------------------------------------- /export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/export_onnx.py -------------------------------------------------------------------------------- /filelists/sample.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/filelists/sample.list -------------------------------------------------------------------------------- /for_deploy/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/for_deploy/infer.py -------------------------------------------------------------------------------- /for_deploy/infer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/for_deploy/infer_utils.py -------------------------------------------------------------------------------- /for_deploy/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/for_deploy/webui.py -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/infer.py -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/losses.py -------------------------------------------------------------------------------- /mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/mel_processing.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/models.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/modules.py -------------------------------------------------------------------------------- /monotonic_align/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/monotonic_align/__init__.py -------------------------------------------------------------------------------- /monotonic_align/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/monotonic_align/core.py -------------------------------------------------------------------------------- /oldVersion/V101/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V101/__init__.py -------------------------------------------------------------------------------- /oldVersion/V101/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V101/models.py -------------------------------------------------------------------------------- /oldVersion/V101/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V101/text/__init__.py -------------------------------------------------------------------------------- /oldVersion/V101/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V101/text/chinese.py -------------------------------------------------------------------------------- /oldVersion/V101/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V101/text/chinese_bert.py -------------------------------------------------------------------------------- /oldVersion/V101/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V101/text/cleaner.py -------------------------------------------------------------------------------- /oldVersion/V101/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V101/text/english.py -------------------------------------------------------------------------------- /oldVersion/V101/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V101/text/english_bert_mock.py -------------------------------------------------------------------------------- /oldVersion/V101/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V101/text/japanese.py -------------------------------------------------------------------------------- /oldVersion/V101/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V101/text/opencpop-strict.txt -------------------------------------------------------------------------------- /oldVersion/V101/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V101/text/symbols.py -------------------------------------------------------------------------------- /oldVersion/V101/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V101/text/tone_sandhi.py -------------------------------------------------------------------------------- /oldVersion/V110/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V110/__init__.py -------------------------------------------------------------------------------- /oldVersion/V110/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V110/models.py -------------------------------------------------------------------------------- /oldVersion/V110/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V110/text/__init__.py -------------------------------------------------------------------------------- /oldVersion/V110/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V110/text/chinese.py -------------------------------------------------------------------------------- /oldVersion/V110/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V110/text/chinese_bert.py -------------------------------------------------------------------------------- /oldVersion/V110/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V110/text/cleaner.py -------------------------------------------------------------------------------- /oldVersion/V110/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V110/text/english.py -------------------------------------------------------------------------------- /oldVersion/V110/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V110/text/english_bert_mock.py -------------------------------------------------------------------------------- /oldVersion/V110/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V110/text/japanese.py -------------------------------------------------------------------------------- /oldVersion/V110/text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V110/text/japanese_bert.py -------------------------------------------------------------------------------- /oldVersion/V110/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V110/text/opencpop-strict.txt -------------------------------------------------------------------------------- /oldVersion/V110/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V110/text/symbols.py -------------------------------------------------------------------------------- /oldVersion/V110/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V110/text/tone_sandhi.py -------------------------------------------------------------------------------- /oldVersion/V111/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/__init__.py -------------------------------------------------------------------------------- /oldVersion/V111/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/models.py -------------------------------------------------------------------------------- /oldVersion/V111/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/text/__init__.py -------------------------------------------------------------------------------- /oldVersion/V111/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/text/chinese.py -------------------------------------------------------------------------------- /oldVersion/V111/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/text/chinese_bert.py -------------------------------------------------------------------------------- /oldVersion/V111/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/text/cleaner.py -------------------------------------------------------------------------------- /oldVersion/V111/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/text/english.py -------------------------------------------------------------------------------- /oldVersion/V111/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/text/english_bert_mock.py -------------------------------------------------------------------------------- /oldVersion/V111/text/fix/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /oldVersion/V111/text/fix/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/text/fix/japanese.py -------------------------------------------------------------------------------- /oldVersion/V111/text/fix/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/text/fix/japanese_bert.py -------------------------------------------------------------------------------- /oldVersion/V111/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/text/japanese.py -------------------------------------------------------------------------------- /oldVersion/V111/text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/text/japanese_bert.py -------------------------------------------------------------------------------- /oldVersion/V111/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/text/opencpop-strict.txt -------------------------------------------------------------------------------- /oldVersion/V111/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/text/symbols.py -------------------------------------------------------------------------------- /oldVersion/V111/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V111/text/tone_sandhi.py -------------------------------------------------------------------------------- /oldVersion/V200/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/__init__.py -------------------------------------------------------------------------------- /oldVersion/V200/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/models.py -------------------------------------------------------------------------------- /oldVersion/V200/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/__init__.py -------------------------------------------------------------------------------- /oldVersion/V200/text/bert_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/bert_utils.py -------------------------------------------------------------------------------- /oldVersion/V200/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/chinese.py -------------------------------------------------------------------------------- /oldVersion/V200/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/chinese_bert.py -------------------------------------------------------------------------------- /oldVersion/V200/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/cleaner.py -------------------------------------------------------------------------------- /oldVersion/V200/text/cmudict.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/cmudict.rep -------------------------------------------------------------------------------- /oldVersion/V200/text/cmudict_cache.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/cmudict_cache.pickle -------------------------------------------------------------------------------- /oldVersion/V200/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/english.py -------------------------------------------------------------------------------- /oldVersion/V200/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/english_bert_mock.py -------------------------------------------------------------------------------- /oldVersion/V200/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/japanese.py -------------------------------------------------------------------------------- /oldVersion/V200/text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/japanese_bert.py -------------------------------------------------------------------------------- /oldVersion/V200/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/opencpop-strict.txt -------------------------------------------------------------------------------- /oldVersion/V200/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/symbols.py -------------------------------------------------------------------------------- /oldVersion/V200/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V200/text/tone_sandhi.py -------------------------------------------------------------------------------- /oldVersion/V210/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/__init__.py -------------------------------------------------------------------------------- /oldVersion/V210/emo_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/emo_gen.py -------------------------------------------------------------------------------- /oldVersion/V210/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/models.py -------------------------------------------------------------------------------- /oldVersion/V210/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/__init__.py -------------------------------------------------------------------------------- /oldVersion/V210/text/bert_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/bert_utils.py -------------------------------------------------------------------------------- /oldVersion/V210/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/chinese.py -------------------------------------------------------------------------------- /oldVersion/V210/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/chinese_bert.py -------------------------------------------------------------------------------- /oldVersion/V210/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/cleaner.py -------------------------------------------------------------------------------- /oldVersion/V210/text/cmudict.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/cmudict.rep -------------------------------------------------------------------------------- /oldVersion/V210/text/cmudict_cache.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/cmudict_cache.pickle -------------------------------------------------------------------------------- /oldVersion/V210/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/english.py -------------------------------------------------------------------------------- /oldVersion/V210/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/english_bert_mock.py -------------------------------------------------------------------------------- /oldVersion/V210/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/japanese.py -------------------------------------------------------------------------------- /oldVersion/V210/text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/japanese_bert.py -------------------------------------------------------------------------------- /oldVersion/V210/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/opencpop-strict.txt -------------------------------------------------------------------------------- /oldVersion/V210/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/symbols.py -------------------------------------------------------------------------------- /oldVersion/V210/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/oldVersion/V210/text/tone_sandhi.py -------------------------------------------------------------------------------- /oldVersion/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | 老版本模型推理兼容 3 | """ 4 | -------------------------------------------------------------------------------- /onnx_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_infer.py -------------------------------------------------------------------------------- /onnx_modules/V200/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V200/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/attentions_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V200/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/models_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/__init__.py: -------------------------------------------------------------------------------- 1 | from .symbols import * 2 | -------------------------------------------------------------------------------- /onnx_modules/V200/text/bert_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/text/bert_utils.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/text/chinese.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/text/chinese_bert.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/text/cleaner.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/text/english.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/text/english_bert_mock.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/text/japanese.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/text/japanese_bert.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/text/opencpop-strict.txt -------------------------------------------------------------------------------- /onnx_modules/V200/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/text/symbols.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200/text/tone_sandhi.py -------------------------------------------------------------------------------- /onnx_modules/V200_OnnxInference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V200_OnnxInference/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V210/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V210/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V210/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V210/attentions_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V210/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V210/models_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V210/text/__init__.py: -------------------------------------------------------------------------------- 1 | from .symbols import * 2 | -------------------------------------------------------------------------------- /onnx_modules/V210/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V210/text/symbols.py -------------------------------------------------------------------------------- /onnx_modules/V210_OnnxInference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V210_OnnxInference/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V220/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V220/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V220/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V220/attentions_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V220/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V220/models_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V220/text/__init__.py: -------------------------------------------------------------------------------- 1 | from .symbols import * 2 | -------------------------------------------------------------------------------- /onnx_modules/V220/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V220/text/symbols.py -------------------------------------------------------------------------------- /onnx_modules/V220_OnnxInference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V220_OnnxInference/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V220_novq_dev/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V220_novq_dev/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V220_novq_dev/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V220_novq_dev/attentions_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V220_novq_dev/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V220_novq_dev/models_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V220_novq_dev/text/__init__.py: -------------------------------------------------------------------------------- 1 | from .symbols import * 2 | -------------------------------------------------------------------------------- /onnx_modules/V220_novq_dev/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V220_novq_dev/text/symbols.py -------------------------------------------------------------------------------- /onnx_modules/V230/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V230/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V230/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V230/attentions_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V230/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V230/models_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V230/text/__init__.py: -------------------------------------------------------------------------------- 1 | from .symbols import * 2 | -------------------------------------------------------------------------------- /onnx_modules/V230/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V230/text/symbols.py -------------------------------------------------------------------------------- /onnx_modules/V230_OnnxInference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/V230_OnnxInference/__init__.py -------------------------------------------------------------------------------- /onnx_modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/onnx_modules/__init__.py -------------------------------------------------------------------------------- /preprocess_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/preprocess_text.py -------------------------------------------------------------------------------- /re_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/re_matching.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/requirements.txt -------------------------------------------------------------------------------- /resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/resample.py -------------------------------------------------------------------------------- /resample_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/resample_legacy.py -------------------------------------------------------------------------------- /run_MnodesAndMgpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/run_MnodesAndMgpus.sh -------------------------------------------------------------------------------- /server_fastapi.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/server_fastapi.bat -------------------------------------------------------------------------------- /server_fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/server_fastapi.py -------------------------------------------------------------------------------- /short_audio_transcribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/short_audio_transcribe.py -------------------------------------------------------------------------------- /slicer2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/slicer2.py -------------------------------------------------------------------------------- /slm/wavlm-base-plus/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/slm/wavlm-base-plus/.gitattributes -------------------------------------------------------------------------------- /slm/wavlm-base-plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/slm/wavlm-base-plus/README.md -------------------------------------------------------------------------------- /slm/wavlm-base-plus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/slm/wavlm-base-plus/config.json -------------------------------------------------------------------------------- /slm/wavlm-base-plus/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/slm/wavlm-base-plus/preprocessor_config.json -------------------------------------------------------------------------------- /spec_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/spec_gen.py -------------------------------------------------------------------------------- /text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/__init__.py -------------------------------------------------------------------------------- /text/bert_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/bert_utils.py -------------------------------------------------------------------------------- /text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/chinese.py -------------------------------------------------------------------------------- /text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/chinese_bert.py -------------------------------------------------------------------------------- /text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/cleaner.py -------------------------------------------------------------------------------- /text/cmudict.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/cmudict.rep -------------------------------------------------------------------------------- /text/cmudict_cache.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/cmudict_cache.pickle -------------------------------------------------------------------------------- /text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/english.py -------------------------------------------------------------------------------- /text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/english_bert_mock.py -------------------------------------------------------------------------------- /text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/japanese.py -------------------------------------------------------------------------------- /text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/japanese_bert.py -------------------------------------------------------------------------------- /text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/opencpop-strict.txt -------------------------------------------------------------------------------- /text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/symbols.py -------------------------------------------------------------------------------- /text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/text/tone_sandhi.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | 工具包 3 | """ 4 | -------------------------------------------------------------------------------- /tools/classify_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/tools/classify_language.py -------------------------------------------------------------------------------- /tools/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/tools/log.py -------------------------------------------------------------------------------- /tools/sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/tools/sentence.py -------------------------------------------------------------------------------- /tools/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/tools/translate.py -------------------------------------------------------------------------------- /train.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/train.bat -------------------------------------------------------------------------------- /train_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/train_ms.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/transforms.py -------------------------------------------------------------------------------- /update_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/update_status.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/utils.py -------------------------------------------------------------------------------- /webui.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/webui.bat -------------------------------------------------------------------------------- /webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/webui.py -------------------------------------------------------------------------------- /webui_preprocess.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/webui_preprocess.bat -------------------------------------------------------------------------------- /webui_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/v3ucn/Bert-VITS2-Extra_-/HEAD/webui_preprocess.py -------------------------------------------------------------------------------- /yolo_add.py: -------------------------------------------------------------------------------- 1 | print("juset for yolo badge") 2 | --------------------------------------------------------------------------------