├── .env ├── .gitattributes ├── .github └── workflows │ └── docker-latest.yaml ├── .gitignore ├── CITATION.cff ├── CLAUSE ├── Dockerfile ├── LICENSE ├── LICENSE_ORIGIN ├── README.md ├── chinese_dialect_lexicons ├── changzhou.json ├── changzhou.ocd2 ├── cixi.json ├── cixi.ocd2 ├── fuyang.json ├── fuyang.ocd2 ├── hangzhou.json ├── hangzhou.ocd2 ├── jiading.json ├── jiading.ocd2 ├── jiashan.json ├── jiashan.ocd2 ├── jingjiang.json ├── jingjiang.ocd2 ├── jyutjyu.json ├── jyutjyu.ocd2 ├── linping.json ├── linping.ocd2 ├── ningbo.json ├── ningbo.ocd2 ├── pinghu.json ├── pinghu.ocd2 ├── ruao.json ├── ruao.ocd2 ├── sanmen.json ├── sanmen.ocd2 ├── shaoxing.json ├── shaoxing.ocd2 ├── suichang.json ├── suichang.ocd2 ├── suzhou.json ├── suzhou.ocd2 ├── tiantai.json ├── tiantai.ocd2 ├── tongxiang.json ├── tongxiang.ocd2 ├── wenzhou.json ├── wenzhou.ocd2 ├── wuxi.json ├── wuxi.ocd2 ├── xiaoshan.json ├── xiaoshan.ocd2 ├── xiashi.json ├── xiashi.ocd2 ├── yixing.json ├── yixing.ocd2 ├── youbu.json ├── youbu.ocd2 ├── zaonhe.json ├── zaonhe.ocd2 ├── zhenru.json └── zhenru.ocd2 ├── component ├── langdetect_fasttext │ ├── LICENSE │ ├── README.md │ ├── __init__.py │ └── detect.py ├── nlp_utils │ ├── __init__.py │ ├── cut.py │ └── detect.py ├── pike.py └── warp.py ├── deploy_script.sh ├── docs ├── cover.png ├── sdk.js └── sdk.py ├── event.py ├── hubert_model.py ├── main.py ├── mel_processing.py ├── model └── .place ├── onnx_infer ├── __init__.py ├── infer │ ├── __init__.py │ ├── attentions.py │ ├── commons.py │ ├── models.py │ ├── modules.py │ └── transforms.py ├── onnx_infer.py └── utils │ ├── __init__.py │ ├── onnx_transforms.py │ └── onnx_utils.py ├── pm2.json ├── pth2onnx.py ├── requirements.txt ├── sample.wav ├── server.py ├── test └── onnx_test.ipynb ├── text ├── LICENSE ├── __init__.py ├── cantonese.py ├── cleaners.py ├── english.py ├── japanese.py ├── jieba │ └── dict.txt ├── korean.py ├── mandarin.py ├── ngu_dialect.py ├── sanskrit.py ├── shanghainese.py ├── symbols.py └── thai.py └── utils.py /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/.env -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/docker-latest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/.github/workflows/docker-latest.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CLAUSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/CLAUSE -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_ORIGIN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/LICENSE_ORIGIN -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/README.md -------------------------------------------------------------------------------- /chinese_dialect_lexicons/changzhou.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/changzhou.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/changzhou.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/changzhou.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/cixi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/cixi.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/cixi.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/cixi.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/fuyang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/fuyang.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/fuyang.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/fuyang.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/hangzhou.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/hangzhou.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/hangzhou.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/hangzhou.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/jiading.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/jiading.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/jiading.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/jiading.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/jiashan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/jiashan.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/jiashan.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/jiashan.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/jingjiang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/jingjiang.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/jingjiang.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/jingjiang.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/jyutjyu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/jyutjyu.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/jyutjyu.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/jyutjyu.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/linping.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/linping.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/linping.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/linping.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/ningbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/ningbo.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/ningbo.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/ningbo.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/pinghu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/pinghu.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/pinghu.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/pinghu.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/ruao.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/ruao.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/ruao.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/ruao.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/sanmen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/sanmen.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/sanmen.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/sanmen.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/shaoxing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/shaoxing.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/shaoxing.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/shaoxing.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/suichang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/suichang.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/suichang.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/suichang.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/suzhou.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/suzhou.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/suzhou.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/suzhou.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/tiantai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/tiantai.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/tiantai.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/tiantai.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/tongxiang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/tongxiang.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/tongxiang.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/tongxiang.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/wenzhou.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/wenzhou.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/wenzhou.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/wenzhou.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/wuxi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/wuxi.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/wuxi.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/wuxi.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/xiaoshan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/xiaoshan.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/xiaoshan.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/xiaoshan.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/xiashi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/xiashi.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/xiashi.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/xiashi.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/yixing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/yixing.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/yixing.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/yixing.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/youbu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/youbu.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/youbu.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/youbu.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/zaonhe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/zaonhe.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/zaonhe.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/zaonhe.ocd2 -------------------------------------------------------------------------------- /chinese_dialect_lexicons/zhenru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/zhenru.json -------------------------------------------------------------------------------- /chinese_dialect_lexicons/zhenru.ocd2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/chinese_dialect_lexicons/zhenru.ocd2 -------------------------------------------------------------------------------- /component/langdetect_fasttext/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/component/langdetect_fasttext/LICENSE -------------------------------------------------------------------------------- /component/langdetect_fasttext/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/component/langdetect_fasttext/README.md -------------------------------------------------------------------------------- /component/langdetect_fasttext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/component/langdetect_fasttext/__init__.py -------------------------------------------------------------------------------- /component/langdetect_fasttext/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/component/langdetect_fasttext/detect.py -------------------------------------------------------------------------------- /component/nlp_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/component/nlp_utils/__init__.py -------------------------------------------------------------------------------- /component/nlp_utils/cut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/component/nlp_utils/cut.py -------------------------------------------------------------------------------- /component/nlp_utils/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/component/nlp_utils/detect.py -------------------------------------------------------------------------------- /component/pike.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/component/pike.py -------------------------------------------------------------------------------- /component/warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/component/warp.py -------------------------------------------------------------------------------- /deploy_script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/deploy_script.sh -------------------------------------------------------------------------------- /docs/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/docs/cover.png -------------------------------------------------------------------------------- /docs/sdk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/docs/sdk.js -------------------------------------------------------------------------------- /docs/sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/docs/sdk.py -------------------------------------------------------------------------------- /event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/event.py -------------------------------------------------------------------------------- /hubert_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/hubert_model.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/main.py -------------------------------------------------------------------------------- /mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/mel_processing.py -------------------------------------------------------------------------------- /model/.place: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /onnx_infer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/onnx_infer/__init__.py -------------------------------------------------------------------------------- /onnx_infer/infer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/onnx_infer/infer/__init__.py -------------------------------------------------------------------------------- /onnx_infer/infer/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/onnx_infer/infer/attentions.py -------------------------------------------------------------------------------- /onnx_infer/infer/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/onnx_infer/infer/commons.py -------------------------------------------------------------------------------- /onnx_infer/infer/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/onnx_infer/infer/models.py -------------------------------------------------------------------------------- /onnx_infer/infer/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/onnx_infer/infer/modules.py -------------------------------------------------------------------------------- /onnx_infer/infer/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/onnx_infer/infer/transforms.py -------------------------------------------------------------------------------- /onnx_infer/onnx_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/onnx_infer/onnx_infer.py -------------------------------------------------------------------------------- /onnx_infer/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/onnx_infer/utils/__init__.py -------------------------------------------------------------------------------- /onnx_infer/utils/onnx_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/onnx_infer/utils/onnx_transforms.py -------------------------------------------------------------------------------- /onnx_infer/utils/onnx_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/onnx_infer/utils/onnx_utils.py -------------------------------------------------------------------------------- /pm2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/pm2.json -------------------------------------------------------------------------------- /pth2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/pth2onnx.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/sample.wav -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/server.py -------------------------------------------------------------------------------- /test/onnx_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/test/onnx_test.ipynb -------------------------------------------------------------------------------- /text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/LICENSE -------------------------------------------------------------------------------- /text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/__init__.py -------------------------------------------------------------------------------- /text/cantonese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/cantonese.py -------------------------------------------------------------------------------- /text/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/cleaners.py -------------------------------------------------------------------------------- /text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/english.py -------------------------------------------------------------------------------- /text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/japanese.py -------------------------------------------------------------------------------- /text/jieba/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/jieba/dict.txt -------------------------------------------------------------------------------- /text/korean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/korean.py -------------------------------------------------------------------------------- /text/mandarin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/mandarin.py -------------------------------------------------------------------------------- /text/ngu_dialect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/ngu_dialect.py -------------------------------------------------------------------------------- /text/sanskrit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/sanskrit.py -------------------------------------------------------------------------------- /text/shanghainese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/shanghainese.py -------------------------------------------------------------------------------- /text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/symbols.py -------------------------------------------------------------------------------- /text/thai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/text/thai.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LlmKira/VitsServer/HEAD/utils.py --------------------------------------------------------------------------------