gitextract_v0p95gyq/ ├── .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/ │ │ ├── .gitattributes │ │ ├── README.md │ │ ├── config.json │ │ ├── special_tokens_map.json │ │ ├── tokenizer.json │ │ └── tokenizer_config.json │ ├── deberta-v2-large-japanese-char-wwm/ │ │ ├── .gitattributes │ │ ├── README.md │ │ ├── config.json │ │ ├── special_tokens_map.json │ │ ├── tokenizer_config.json │ │ └── vocab.txt │ └── 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 ├── for_deploy/ │ ├── infer.py │ ├── infer_utils.py │ └── webui.py ├── hiyoriUI.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 │ ├── 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