gitextract_o1tw_l2e/ ├── .github/ │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── docker.yml │ ├── genlocale.yml │ ├── pull_format.yml │ ├── push_format.yml │ ├── sync_dev.yml │ └── unitest.yml ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MIT协议暨相关引用库协议 ├── README.md ├── Retrieval_based_Voice_Conversion_WebUI.ipynb ├── Retrieval_based_Voice_Conversion_WebUI_v2.ipynb ├── api_231006.py ├── api_240604.py ├── assets/ │ ├── Synthesizer_inputs.pth │ ├── hubert/ │ │ ├── .gitignore │ │ └── hubert_inputs.pth │ ├── indices/ │ │ └── .gitignore │ ├── pretrained/ │ │ └── .gitignore │ ├── pretrained_v2/ │ │ └── .gitignore │ ├── rmvpe/ │ │ ├── .gitignore │ │ └── rmvpe_inputs.pth │ ├── uvr5_weights/ │ │ └── .gitignore │ └── weights/ │ └── .gitignore ├── configs/ │ ├── config.json │ ├── config.py │ ├── inuse/ │ │ ├── .gitignore │ │ ├── v1/ │ │ │ └── .gitignore │ │ └── v2/ │ │ └── .gitignore │ ├── v1/ │ │ ├── 32k.json │ │ ├── 40k.json │ │ └── 48k.json │ └── v2/ │ ├── 32k.json │ └── 48k.json ├── docker-compose.yml ├── docs/ │ ├── cn/ │ │ ├── Changelog_CN.md │ │ └── faq.md │ ├── en/ │ │ ├── Changelog_EN.md │ │ ├── README.en.md │ │ ├── faiss_tips_en.md │ │ ├── faq_en.md │ │ └── training_tips_en.md │ ├── fr/ │ │ ├── Changelog_FR.md │ │ ├── README.fr.md │ │ ├── faiss_tips_fr.md │ │ ├── faq_fr.md │ │ └── training_tips_fr.md │ ├── jp/ │ │ ├── Changelog_JA.md │ │ ├── README.ja.md │ │ ├── faiss_tips_ja.md │ │ ├── faq_ja.md │ │ └── training_tips_ja.md │ ├── kr/ │ │ ├── Changelog_KO.md │ │ ├── README.ko.han.md │ │ ├── README.ko.md │ │ ├── faiss_tips_ko.md │ │ ├── faq_ko.md │ │ └── training_tips_ko.md │ ├── pt/ │ │ ├── Changelog_pt.md │ │ ├── README.pt.md │ │ ├── faiss_tips_pt.md │ │ ├── faq_pt.md │ │ └── training_tips_pt.md │ ├── tr/ │ │ ├── Changelog_TR.md │ │ ├── README.tr.md │ │ ├── faiss_tips_tr.md │ │ ├── faq_tr.md │ │ └── training_tips_tr.md │ └── 小白简易教程.doc ├── environment_dml.yaml ├── go-realtime-gui-dml.bat ├── go-realtime-gui.bat ├── go-web-dml.bat ├── go-web.bat ├── gui_v1.py ├── i18n/ │ ├── i18n.py │ ├── locale/ │ │ ├── en_US.json │ │ ├── es_ES.json │ │ ├── fr_FR.json │ │ ├── it_IT.json │ │ ├── ja_JP.json │ │ ├── ko_KR.json │ │ ├── pt_BR.json │ │ ├── ru_RU.json │ │ ├── tr_TR.json │ │ ├── zh_CN.json │ │ ├── zh_HK.json │ │ ├── zh_SG.json │ │ └── zh_TW.json │ ├── locale_diff.py │ └── scan_i18n.py ├── infer/ │ ├── lib/ │ │ ├── audio.py │ │ ├── infer_pack/ │ │ │ ├── attentions.py │ │ │ ├── attentions_onnx.py │ │ │ ├── commons.py │ │ │ ├── models.py │ │ │ ├── models_onnx.py │ │ │ ├── modules/ │ │ │ │ └── F0Predictor/ │ │ │ │ ├── DioF0Predictor.py │ │ │ │ ├── F0Predictor.py │ │ │ │ ├── HarvestF0Predictor.py │ │ │ │ ├── PMF0Predictor.py │ │ │ │ └── __init__.py │ │ │ ├── modules.py │ │ │ ├── onnx_inference.py │ │ │ └── transforms.py │ │ ├── jit/ │ │ │ ├── __init__.py │ │ │ ├── get_hubert.py │ │ │ ├── get_rmvpe.py │ │ │ └── get_synthesizer.py │ │ ├── rmvpe.py │ │ ├── rtrvc.py │ │ ├── slicer2.py │ │ ├── train/ │ │ │ ├── data_utils.py │ │ │ ├── losses.py │ │ │ ├── mel_processing.py │ │ │ ├── process_ckpt.py │ │ │ └── utils.py │ │ └── uvr5_pack/ │ │ ├── lib_v5/ │ │ │ ├── dataset.py │ │ │ ├── layers.py │ │ │ ├── layers_123812KB .py │ │ │ ├── layers_123821KB.py │ │ │ ├── layers_33966KB.py │ │ │ ├── layers_537227KB.py │ │ │ ├── layers_537238KB.py │ │ │ ├── layers_new.py │ │ │ ├── model_param_init.py │ │ │ ├── modelparams/ │ │ │ │ ├── 1band_sr16000_hl512.json │ │ │ │ ├── 1band_sr32000_hl512.json │ │ │ │ ├── 1band_sr33075_hl384.json │ │ │ │ ├── 1band_sr44100_hl1024.json │ │ │ │ ├── 1band_sr44100_hl256.json │ │ │ │ ├── 1band_sr44100_hl512.json │ │ │ │ ├── 1band_sr44100_hl512_cut.json │ │ │ │ ├── 2band_32000.json │ │ │ │ ├── 2band_44100_lofi.json │ │ │ │ ├── 2band_48000.json │ │ │ │ ├── 3band_44100.json │ │ │ │ ├── 3band_44100_mid.json │ │ │ │ ├── 3band_44100_msb2.json │ │ │ │ ├── 4band_44100.json │ │ │ │ ├── 4band_44100_mid.json │ │ │ │ ├── 4band_44100_msb.json │ │ │ │ ├── 4band_44100_msb2.json │ │ │ │ ├── 4band_44100_reverse.json │ │ │ │ ├── 4band_44100_sw.json │ │ │ │ ├── 4band_v2.json │ │ │ │ ├── 4band_v2_sn.json │ │ │ │ ├── 4band_v3.json │ │ │ │ └── ensemble.json │ │ │ ├── nets.py │ │ │ ├── nets_123812KB.py │ │ │ ├── nets_123821KB.py │ │ │ ├── nets_33966KB.py │ │ │ ├── nets_537227KB.py │ │ │ ├── nets_537238KB.py │ │ │ ├── nets_61968KB.py │ │ │ ├── nets_new.py │ │ │ └── spec_utils.py │ │ ├── name_params.json │ │ └── utils.py │ └── modules/ │ ├── ipex/ │ │ ├── __init__.py │ │ ├── attention.py │ │ ├── gradscaler.py │ │ └── hijacks.py │ ├── onnx/ │ │ └── export.py │ ├── train/ │ │ ├── extract/ │ │ │ ├── extract_f0_print.py │ │ │ ├── extract_f0_rmvpe.py │ │ │ └── extract_f0_rmvpe_dml.py │ │ ├── extract_feature_print.py │ │ ├── preprocess.py │ │ └── train.py │ ├── uvr5/ │ │ ├── mdxnet.py │ │ ├── modules.py │ │ └── vr.py │ └── vc/ │ ├── __init__.py │ ├── modules.py │ ├── pipeline.py │ └── utils.py ├── infer-web.py ├── pyproject.toml ├── requirements-amd.txt ├── requirements-dml.txt ├── requirements-ipex.txt ├── requirements-py311.txt ├── requirements-win-for-realtime_vc_gui-dml.txt ├── requirements-win-for-realtime_vc_gui.txt ├── requirements.txt ├── run.sh ├── tools/ │ ├── app.py │ ├── calc_rvc_model_similarity.py │ ├── dlmodels.bat │ ├── dlmodels.sh │ ├── download_models.py │ ├── export_onnx.py │ ├── infer/ │ │ ├── infer-pm-index256.py │ │ ├── train-index-v2.py │ │ ├── train-index.py │ │ └── trans_weights.py │ ├── infer_batch_rvc.py │ ├── infer_cli.py │ ├── onnx_inference_demo.py │ ├── rvc_for_realtime.py │ └── torchgate/ │ ├── __init__.py │ ├── torchgate.py │ └── utils.py └── venv.sh