├── .github └── workflows │ ├── pull_format.yml │ └── push_format.yml ├── .gitignore ├── .gitmodules ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── attentions.py ├── bert ├── 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 ├── commons.py ├── compress_model.py ├── config.py ├── 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 ├── export_onnx.py ├── filelists └── sample.list ├── for_deploy ├── infer.py ├── infer_utils.py └── webui.py ├── hiyoriUI.py ├── img ├── yuyu.png ├── 参数说明.png ├── 宵宫.png ├── 微信图片_20231010105112.png ├── 神里绫华.png └── 纳西妲.png ├── 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 ├── V220 │ ├── __init__.py │ ├── clap_gen.py │ ├── clap_wrapper.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 ├── V240 │ ├── __init__.py │ ├── attentions_onnx.py │ ├── models_onnx.py │ └── text │ │ ├── __init__.py │ │ └── symbols.py ├── V240_JP │ ├── __init__.py │ ├── attentions_onnx.py │ ├── models_onnx.py │ └── text │ │ ├── __init__.py │ │ └── symbols.py ├── V240_OnnxInference │ └── __init__.py ├── V240_ZH │ ├── __init__.py │ ├── attentions_onnx.py │ ├── models_onnx.py │ └── text │ │ ├── __init__.py │ │ └── symbols.py └── __init__.py ├── preprocess_text.py ├── re_matching.py ├── requirements.txt ├── resample.py ├── resample_legacy.py ├── run_MnodesAndMgpus.sh ├── 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_ms.py ├── transforms.py ├── update_status.py ├── utils.py ├── webui.py └── webui_preprocess.py /.github/workflows/pull_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/.github/workflows/pull_format.yml -------------------------------------------------------------------------------- /.github/workflows/push_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/.github/workflows/push_format.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/README.md -------------------------------------------------------------------------------- /attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/attentions.py -------------------------------------------------------------------------------- /bert/bert-base-japanese-v3/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/bert-base-japanese-v3/.gitattributes -------------------------------------------------------------------------------- /bert/bert-base-japanese-v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/bert-base-japanese-v3/README.md -------------------------------------------------------------------------------- /bert/bert-base-japanese-v3/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/bert-base-japanese-v3/config.json -------------------------------------------------------------------------------- /bert/bert-base-japanese-v3/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/bert-base-japanese-v3/tokenizer_config.json -------------------------------------------------------------------------------- /bert/bert-base-japanese-v3/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/bert-base-japanese-v3/vocab.txt -------------------------------------------------------------------------------- /bert/bert-large-japanese-v2/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/bert-large-japanese-v2/.gitattributes -------------------------------------------------------------------------------- /bert/bert-large-japanese-v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/bert-large-japanese-v2/README.md -------------------------------------------------------------------------------- /bert/bert-large-japanese-v2/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/bert-large-japanese-v2/config.json -------------------------------------------------------------------------------- /bert/bert-large-japanese-v2/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/bert-large-japanese-v2/tokenizer_config.json -------------------------------------------------------------------------------- /bert/bert-large-japanese-v2/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/bert-large-japanese-v2/vocab.txt -------------------------------------------------------------------------------- /bert/bert_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/bert_models.json -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/chinese-roberta-wwm-ext-large/.gitattributes -------------------------------------------------------------------------------- /bert/chinese-roberta-wwm-ext-large/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/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/fishaudio/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/fishaudio/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/fishaudio/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/fishaudio/Bert-VITS2/HEAD/bert/chinese-roberta-wwm-ext-large/vocab.txt -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/deberta-v2-large-japanese-char-wwm/.gitattributes -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/deberta-v2-large-japanese-char-wwm/README.md -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese-char-wwm/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/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/fishaudio/Bert-VITS2/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/fishaudio/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/fishaudio/Bert-VITS2/HEAD/bert/deberta-v2-large-japanese-char-wwm/vocab.txt -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/deberta-v2-large-japanese/.gitattributes -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/deberta-v2-large-japanese/README.md -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/deberta-v2-large-japanese/config.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/deberta-v2-large-japanese/special_tokens_map.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/deberta-v2-large-japanese/tokenizer.json -------------------------------------------------------------------------------- /bert/deberta-v2-large-japanese/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/deberta-v2-large-japanese/tokenizer_config.json -------------------------------------------------------------------------------- /bert/deberta-v3-large/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/deberta-v3-large/.gitattributes -------------------------------------------------------------------------------- /bert/deberta-v3-large/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/deberta-v3-large/README.md -------------------------------------------------------------------------------- /bert/deberta-v3-large/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/deberta-v3-large/config.json -------------------------------------------------------------------------------- /bert/deberta-v3-large/generator_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/deberta-v3-large/generator_config.json -------------------------------------------------------------------------------- /bert/deberta-v3-large/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert/deberta-v3-large/tokenizer_config.json -------------------------------------------------------------------------------- /bert_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/bert_gen.py -------------------------------------------------------------------------------- /commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/commons.py -------------------------------------------------------------------------------- /compress_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/compress_model.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/config.py -------------------------------------------------------------------------------- /configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/configs/config.json -------------------------------------------------------------------------------- /css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/css/custom.css -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/data_utils.py -------------------------------------------------------------------------------- /default_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/default_config.yml -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/emotional/clap-htsat-fused/.gitattributes -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/emotional/clap-htsat-fused/README.md -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/emotional/clap-htsat-fused/config.json -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/merges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/emotional/clap-htsat-fused/merges.txt -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/emotional/clap-htsat-fused/preprocessor_config.json -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/special_tokens_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/emotional/clap-htsat-fused/special_tokens_map.json -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/tokenizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/emotional/clap-htsat-fused/tokenizer.json -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/emotional/clap-htsat-fused/tokenizer_config.json -------------------------------------------------------------------------------- /emotional/clap-htsat-fused/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/emotional/clap-htsat-fused/vocab.json -------------------------------------------------------------------------------- /emotional/wav2vec2-large-robust-12-ft-emotion-msp-dim/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/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/fishaudio/Bert-VITS2/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/fishaudio/Bert-VITS2/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/fishaudio/Bert-VITS2/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/fishaudio/Bert-VITS2/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 | -------------------------------------------------------------------------------- /export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/export_onnx.py -------------------------------------------------------------------------------- /filelists/sample.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/filelists/sample.list -------------------------------------------------------------------------------- /for_deploy/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/for_deploy/infer.py -------------------------------------------------------------------------------- /for_deploy/infer_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/for_deploy/infer_utils.py -------------------------------------------------------------------------------- /for_deploy/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/for_deploy/webui.py -------------------------------------------------------------------------------- /hiyoriUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/hiyoriUI.py -------------------------------------------------------------------------------- /img/yuyu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/img/yuyu.png -------------------------------------------------------------------------------- /img/参数说明.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/img/参数说明.png -------------------------------------------------------------------------------- /img/宵宫.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/img/宵宫.png -------------------------------------------------------------------------------- /img/微信图片_20231010105112.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/img/微信图片_20231010105112.png -------------------------------------------------------------------------------- /img/神里绫华.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/img/神里绫华.png -------------------------------------------------------------------------------- /img/纳西妲.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/img/纳西妲.png -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/infer.py -------------------------------------------------------------------------------- /losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/losses.py -------------------------------------------------------------------------------- /mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/mel_processing.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/models.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/modules.py -------------------------------------------------------------------------------- /monotonic_align/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/monotonic_align/__init__.py -------------------------------------------------------------------------------- /monotonic_align/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/monotonic_align/core.py -------------------------------------------------------------------------------- /oldVersion/V101/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V101/__init__.py -------------------------------------------------------------------------------- /oldVersion/V101/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V101/models.py -------------------------------------------------------------------------------- /oldVersion/V101/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V101/text/__init__.py -------------------------------------------------------------------------------- /oldVersion/V101/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V101/text/chinese.py -------------------------------------------------------------------------------- /oldVersion/V101/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V101/text/chinese_bert.py -------------------------------------------------------------------------------- /oldVersion/V101/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V101/text/cleaner.py -------------------------------------------------------------------------------- /oldVersion/V101/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V101/text/english.py -------------------------------------------------------------------------------- /oldVersion/V101/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V101/text/english_bert_mock.py -------------------------------------------------------------------------------- /oldVersion/V101/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V101/text/japanese.py -------------------------------------------------------------------------------- /oldVersion/V101/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V101/text/opencpop-strict.txt -------------------------------------------------------------------------------- /oldVersion/V101/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V101/text/symbols.py -------------------------------------------------------------------------------- /oldVersion/V101/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V101/text/tone_sandhi.py -------------------------------------------------------------------------------- /oldVersion/V110/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V110/__init__.py -------------------------------------------------------------------------------- /oldVersion/V110/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V110/models.py -------------------------------------------------------------------------------- /oldVersion/V110/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V110/text/__init__.py -------------------------------------------------------------------------------- /oldVersion/V110/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V110/text/chinese.py -------------------------------------------------------------------------------- /oldVersion/V110/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V110/text/chinese_bert.py -------------------------------------------------------------------------------- /oldVersion/V110/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V110/text/cleaner.py -------------------------------------------------------------------------------- /oldVersion/V110/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V110/text/english.py -------------------------------------------------------------------------------- /oldVersion/V110/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V110/text/english_bert_mock.py -------------------------------------------------------------------------------- /oldVersion/V110/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V110/text/japanese.py -------------------------------------------------------------------------------- /oldVersion/V110/text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V110/text/japanese_bert.py -------------------------------------------------------------------------------- /oldVersion/V110/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V110/text/opencpop-strict.txt -------------------------------------------------------------------------------- /oldVersion/V110/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V110/text/symbols.py -------------------------------------------------------------------------------- /oldVersion/V110/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V110/text/tone_sandhi.py -------------------------------------------------------------------------------- /oldVersion/V111/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/__init__.py -------------------------------------------------------------------------------- /oldVersion/V111/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/models.py -------------------------------------------------------------------------------- /oldVersion/V111/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/text/__init__.py -------------------------------------------------------------------------------- /oldVersion/V111/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/text/chinese.py -------------------------------------------------------------------------------- /oldVersion/V111/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/text/chinese_bert.py -------------------------------------------------------------------------------- /oldVersion/V111/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/text/cleaner.py -------------------------------------------------------------------------------- /oldVersion/V111/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/text/english.py -------------------------------------------------------------------------------- /oldVersion/V111/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/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/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/text/fix/japanese.py -------------------------------------------------------------------------------- /oldVersion/V111/text/fix/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/text/fix/japanese_bert.py -------------------------------------------------------------------------------- /oldVersion/V111/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/text/japanese.py -------------------------------------------------------------------------------- /oldVersion/V111/text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/text/japanese_bert.py -------------------------------------------------------------------------------- /oldVersion/V111/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/text/opencpop-strict.txt -------------------------------------------------------------------------------- /oldVersion/V111/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/text/symbols.py -------------------------------------------------------------------------------- /oldVersion/V111/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V111/text/tone_sandhi.py -------------------------------------------------------------------------------- /oldVersion/V200/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/__init__.py -------------------------------------------------------------------------------- /oldVersion/V200/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/models.py -------------------------------------------------------------------------------- /oldVersion/V200/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/__init__.py -------------------------------------------------------------------------------- /oldVersion/V200/text/bert_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/bert_utils.py -------------------------------------------------------------------------------- /oldVersion/V200/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/chinese.py -------------------------------------------------------------------------------- /oldVersion/V200/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/chinese_bert.py -------------------------------------------------------------------------------- /oldVersion/V200/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/cleaner.py -------------------------------------------------------------------------------- /oldVersion/V200/text/cmudict.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/cmudict.rep -------------------------------------------------------------------------------- /oldVersion/V200/text/cmudict_cache.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/cmudict_cache.pickle -------------------------------------------------------------------------------- /oldVersion/V200/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/english.py -------------------------------------------------------------------------------- /oldVersion/V200/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/english_bert_mock.py -------------------------------------------------------------------------------- /oldVersion/V200/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/japanese.py -------------------------------------------------------------------------------- /oldVersion/V200/text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/japanese_bert.py -------------------------------------------------------------------------------- /oldVersion/V200/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/opencpop-strict.txt -------------------------------------------------------------------------------- /oldVersion/V200/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/symbols.py -------------------------------------------------------------------------------- /oldVersion/V200/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V200/text/tone_sandhi.py -------------------------------------------------------------------------------- /oldVersion/V210/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/__init__.py -------------------------------------------------------------------------------- /oldVersion/V210/emo_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/emo_gen.py -------------------------------------------------------------------------------- /oldVersion/V210/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/models.py -------------------------------------------------------------------------------- /oldVersion/V210/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/__init__.py -------------------------------------------------------------------------------- /oldVersion/V210/text/bert_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/bert_utils.py -------------------------------------------------------------------------------- /oldVersion/V210/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/chinese.py -------------------------------------------------------------------------------- /oldVersion/V210/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/chinese_bert.py -------------------------------------------------------------------------------- /oldVersion/V210/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/cleaner.py -------------------------------------------------------------------------------- /oldVersion/V210/text/cmudict.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/cmudict.rep -------------------------------------------------------------------------------- /oldVersion/V210/text/cmudict_cache.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/cmudict_cache.pickle -------------------------------------------------------------------------------- /oldVersion/V210/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/english.py -------------------------------------------------------------------------------- /oldVersion/V210/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/english_bert_mock.py -------------------------------------------------------------------------------- /oldVersion/V210/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/japanese.py -------------------------------------------------------------------------------- /oldVersion/V210/text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/japanese_bert.py -------------------------------------------------------------------------------- /oldVersion/V210/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/opencpop-strict.txt -------------------------------------------------------------------------------- /oldVersion/V210/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/symbols.py -------------------------------------------------------------------------------- /oldVersion/V210/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V210/text/tone_sandhi.py -------------------------------------------------------------------------------- /oldVersion/V220/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/__init__.py -------------------------------------------------------------------------------- /oldVersion/V220/clap_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/clap_gen.py -------------------------------------------------------------------------------- /oldVersion/V220/clap_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/clap_wrapper.py -------------------------------------------------------------------------------- /oldVersion/V220/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/models.py -------------------------------------------------------------------------------- /oldVersion/V220/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/__init__.py -------------------------------------------------------------------------------- /oldVersion/V220/text/bert_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/bert_utils.py -------------------------------------------------------------------------------- /oldVersion/V220/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/chinese.py -------------------------------------------------------------------------------- /oldVersion/V220/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/chinese_bert.py -------------------------------------------------------------------------------- /oldVersion/V220/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/cleaner.py -------------------------------------------------------------------------------- /oldVersion/V220/text/cmudict.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/cmudict.rep -------------------------------------------------------------------------------- /oldVersion/V220/text/cmudict_cache.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/cmudict_cache.pickle -------------------------------------------------------------------------------- /oldVersion/V220/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/english.py -------------------------------------------------------------------------------- /oldVersion/V220/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/english_bert_mock.py -------------------------------------------------------------------------------- /oldVersion/V220/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/japanese.py -------------------------------------------------------------------------------- /oldVersion/V220/text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/japanese_bert.py -------------------------------------------------------------------------------- /oldVersion/V220/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/opencpop-strict.txt -------------------------------------------------------------------------------- /oldVersion/V220/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/symbols.py -------------------------------------------------------------------------------- /oldVersion/V220/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/oldVersion/V220/text/tone_sandhi.py -------------------------------------------------------------------------------- /oldVersion/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | 老版本模型推理兼容 3 | """ 4 | -------------------------------------------------------------------------------- /onnx_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_infer.py -------------------------------------------------------------------------------- /onnx_modules/V200/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V200/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200/attentions_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V200/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/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/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200/text/bert_utils.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200/text/chinese.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200/text/chinese_bert.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200/text/cleaner.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200/text/english.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200/text/english_bert_mock.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200/text/japanese.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200/text/japanese_bert.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200/text/opencpop-strict.txt -------------------------------------------------------------------------------- /onnx_modules/V200/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200/text/symbols.py -------------------------------------------------------------------------------- /onnx_modules/V200/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200/text/tone_sandhi.py -------------------------------------------------------------------------------- /onnx_modules/V200_OnnxInference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V200_OnnxInference/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V210/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V210/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V210/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V210/attentions_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V210/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/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/fishaudio/Bert-VITS2/HEAD/onnx_modules/V210/text/symbols.py -------------------------------------------------------------------------------- /onnx_modules/V210_OnnxInference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V210_OnnxInference/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V220/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V220/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V220/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V220/attentions_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V220/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/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/fishaudio/Bert-VITS2/HEAD/onnx_modules/V220/text/symbols.py -------------------------------------------------------------------------------- /onnx_modules/V220_OnnxInference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V220_OnnxInference/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V220_novq_dev/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V220_novq_dev/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V220_novq_dev/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V220_novq_dev/attentions_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V220_novq_dev/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/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/fishaudio/Bert-VITS2/HEAD/onnx_modules/V220_novq_dev/text/symbols.py -------------------------------------------------------------------------------- /onnx_modules/V230/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V230/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V230/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V230/attentions_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V230/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/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/fishaudio/Bert-VITS2/HEAD/onnx_modules/V230/text/symbols.py -------------------------------------------------------------------------------- /onnx_modules/V230_OnnxInference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V230_OnnxInference/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V240/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V240/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V240/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V240/attentions_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V240/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V240/models_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V240/text/__init__.py: -------------------------------------------------------------------------------- 1 | from .symbols import * 2 | -------------------------------------------------------------------------------- /onnx_modules/V240/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V240/text/symbols.py -------------------------------------------------------------------------------- /onnx_modules/V240_JP/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V240_JP/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V240_JP/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V240_JP/attentions_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V240_JP/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V240_JP/models_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V240_JP/text/__init__.py: -------------------------------------------------------------------------------- 1 | from .symbols import * 2 | -------------------------------------------------------------------------------- /onnx_modules/V240_JP/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V240_JP/text/symbols.py -------------------------------------------------------------------------------- /onnx_modules/V240_OnnxInference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V240_OnnxInference/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V240_ZH/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V240_ZH/__init__.py -------------------------------------------------------------------------------- /onnx_modules/V240_ZH/attentions_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V240_ZH/attentions_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V240_ZH/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V240_ZH/models_onnx.py -------------------------------------------------------------------------------- /onnx_modules/V240_ZH/text/__init__.py: -------------------------------------------------------------------------------- 1 | from .symbols import * 2 | -------------------------------------------------------------------------------- /onnx_modules/V240_ZH/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/V240_ZH/text/symbols.py -------------------------------------------------------------------------------- /onnx_modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/onnx_modules/__init__.py -------------------------------------------------------------------------------- /preprocess_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/preprocess_text.py -------------------------------------------------------------------------------- /re_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/re_matching.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/requirements.txt -------------------------------------------------------------------------------- /resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/resample.py -------------------------------------------------------------------------------- /resample_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/resample_legacy.py -------------------------------------------------------------------------------- /run_MnodesAndMgpus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/run_MnodesAndMgpus.sh -------------------------------------------------------------------------------- /slm/wavlm-base-plus/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/slm/wavlm-base-plus/.gitattributes -------------------------------------------------------------------------------- /slm/wavlm-base-plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/slm/wavlm-base-plus/README.md -------------------------------------------------------------------------------- /slm/wavlm-base-plus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/slm/wavlm-base-plus/config.json -------------------------------------------------------------------------------- /slm/wavlm-base-plus/preprocessor_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/slm/wavlm-base-plus/preprocessor_config.json -------------------------------------------------------------------------------- /spec_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/spec_gen.py -------------------------------------------------------------------------------- /text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/__init__.py -------------------------------------------------------------------------------- /text/bert_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/bert_utils.py -------------------------------------------------------------------------------- /text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/chinese.py -------------------------------------------------------------------------------- /text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/chinese_bert.py -------------------------------------------------------------------------------- /text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/cleaner.py -------------------------------------------------------------------------------- /text/cmudict.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/cmudict.rep -------------------------------------------------------------------------------- /text/cmudict_cache.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/cmudict_cache.pickle -------------------------------------------------------------------------------- /text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/english.py -------------------------------------------------------------------------------- /text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/english_bert_mock.py -------------------------------------------------------------------------------- /text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/japanese.py -------------------------------------------------------------------------------- /text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/japanese_bert.py -------------------------------------------------------------------------------- /text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/opencpop-strict.txt -------------------------------------------------------------------------------- /text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/symbols.py -------------------------------------------------------------------------------- /text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/text/tone_sandhi.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | 工具包 3 | """ 4 | -------------------------------------------------------------------------------- /tools/classify_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/tools/classify_language.py -------------------------------------------------------------------------------- /tools/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/tools/log.py -------------------------------------------------------------------------------- /tools/sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/tools/sentence.py -------------------------------------------------------------------------------- /tools/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/tools/translate.py -------------------------------------------------------------------------------- /train_ms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/train_ms.py -------------------------------------------------------------------------------- /transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/transforms.py -------------------------------------------------------------------------------- /update_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/update_status.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/utils.py -------------------------------------------------------------------------------- /webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/webui.py -------------------------------------------------------------------------------- /webui_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fishaudio/Bert-VITS2/HEAD/webui_preprocess.py --------------------------------------------------------------------------------