├── .github └── workflows │ ├── genlocale.yml │ ├── pull_format.yml │ ├── push_format.yml │ └── unitest.yml ├── .gitignore ├── README.md ├── RVC-GUI.bat ├── config.py ├── docs ├── GUI.JPG └── GUI20230508.JPG ├── infer ├── infer-pm-index256.py ├── train-index.py └── trans_weights.py ├── infer_pack ├── attentions.py ├── commons.py ├── models.py ├── models_onnx.py ├── models_onnx_moess.py ├── modelsv2.py ├── modules.py └── transforms.py ├── my_utils.py ├── requirements.txt ├── rvcgui.py ├── setup.bat ├── trainset_preprocess_pipeline_print.py └── vc_infer_pipeline.py /.github/workflows/genlocale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/.github/workflows/genlocale.yml -------------------------------------------------------------------------------- /.github/workflows/pull_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/.github/workflows/pull_format.yml -------------------------------------------------------------------------------- /.github/workflows/push_format.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/.github/workflows/push_format.yml -------------------------------------------------------------------------------- /.github/workflows/unitest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/.github/workflows/unitest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | /TEMP 4 | *.pyd 5 | hubert_base.pt 6 | /logs 7 | models/ 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/README.md -------------------------------------------------------------------------------- /RVC-GUI.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/RVC-GUI.bat -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/config.py -------------------------------------------------------------------------------- /docs/GUI.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/docs/GUI.JPG -------------------------------------------------------------------------------- /docs/GUI20230508.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/docs/GUI20230508.JPG -------------------------------------------------------------------------------- /infer/infer-pm-index256.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/infer/infer-pm-index256.py -------------------------------------------------------------------------------- /infer/train-index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/infer/train-index.py -------------------------------------------------------------------------------- /infer/trans_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/infer/trans_weights.py -------------------------------------------------------------------------------- /infer_pack/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/infer_pack/attentions.py -------------------------------------------------------------------------------- /infer_pack/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/infer_pack/commons.py -------------------------------------------------------------------------------- /infer_pack/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/infer_pack/models.py -------------------------------------------------------------------------------- /infer_pack/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/infer_pack/models_onnx.py -------------------------------------------------------------------------------- /infer_pack/models_onnx_moess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/infer_pack/models_onnx_moess.py -------------------------------------------------------------------------------- /infer_pack/modelsv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/infer_pack/modelsv2.py -------------------------------------------------------------------------------- /infer_pack/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/infer_pack/modules.py -------------------------------------------------------------------------------- /infer_pack/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/infer_pack/transforms.py -------------------------------------------------------------------------------- /my_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/my_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/requirements.txt -------------------------------------------------------------------------------- /rvcgui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/rvcgui.py -------------------------------------------------------------------------------- /setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/setup.bat -------------------------------------------------------------------------------- /trainset_preprocess_pipeline_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/trainset_preprocess_pipeline_print.py -------------------------------------------------------------------------------- /vc_infer_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tiger14n/RVC-GUI/HEAD/vc_infer_pipeline.py --------------------------------------------------------------------------------