├── .dockerignore ├── .gitattributes ├── .gitignore ├── AICoverGen_colab.ipynb ├── LICENSE ├── README.md ├── cog.yaml ├── images ├── webui_dl_model.png ├── webui_generate.png └── webui_upload_model.png ├── mdxnet_models └── model_data.json ├── predict.py ├── requirements.txt ├── rvc_models ├── MODELS.txt └── public_models.json ├── song_output └── OUTPUT.txt └── src ├── configs ├── 32k.json ├── 32k_v2.json ├── 40k.json ├── 48k.json └── 48k_v2.json ├── download_models.py ├── infer_pack ├── attentions.py ├── commons.py ├── models.py ├── models_onnx.py ├── models_onnx_moess.py ├── modules.py └── transforms.py ├── main.py ├── mdx.py ├── my_utils.py ├── rmvpe.py ├── rvc.py ├── trainset_preprocess_pipeline_print.py ├── vc_infer_pipeline.py └── webui.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/.gitignore -------------------------------------------------------------------------------- /AICoverGen_colab.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/AICoverGen_colab.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/README.md -------------------------------------------------------------------------------- /cog.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/cog.yaml -------------------------------------------------------------------------------- /images/webui_dl_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/images/webui_dl_model.png -------------------------------------------------------------------------------- /images/webui_generate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/images/webui_generate.png -------------------------------------------------------------------------------- /images/webui_upload_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/images/webui_upload_model.png -------------------------------------------------------------------------------- /mdxnet_models/model_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/mdxnet_models/model_data.json -------------------------------------------------------------------------------- /predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/predict.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/requirements.txt -------------------------------------------------------------------------------- /rvc_models/MODELS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/rvc_models/MODELS.txt -------------------------------------------------------------------------------- /rvc_models/public_models.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/rvc_models/public_models.json -------------------------------------------------------------------------------- /song_output/OUTPUT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/song_output/OUTPUT.txt -------------------------------------------------------------------------------- /src/configs/32k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/configs/32k.json -------------------------------------------------------------------------------- /src/configs/32k_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/configs/32k_v2.json -------------------------------------------------------------------------------- /src/configs/40k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/configs/40k.json -------------------------------------------------------------------------------- /src/configs/48k.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/configs/48k.json -------------------------------------------------------------------------------- /src/configs/48k_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/configs/48k_v2.json -------------------------------------------------------------------------------- /src/download_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/download_models.py -------------------------------------------------------------------------------- /src/infer_pack/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/infer_pack/attentions.py -------------------------------------------------------------------------------- /src/infer_pack/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/infer_pack/commons.py -------------------------------------------------------------------------------- /src/infer_pack/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/infer_pack/models.py -------------------------------------------------------------------------------- /src/infer_pack/models_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/infer_pack/models_onnx.py -------------------------------------------------------------------------------- /src/infer_pack/models_onnx_moess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/infer_pack/models_onnx_moess.py -------------------------------------------------------------------------------- /src/infer_pack/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/infer_pack/modules.py -------------------------------------------------------------------------------- /src/infer_pack/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/infer_pack/transforms.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/main.py -------------------------------------------------------------------------------- /src/mdx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/mdx.py -------------------------------------------------------------------------------- /src/my_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/my_utils.py -------------------------------------------------------------------------------- /src/rmvpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/rmvpe.py -------------------------------------------------------------------------------- /src/rvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/rvc.py -------------------------------------------------------------------------------- /src/trainset_preprocess_pipeline_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/trainset_preprocess_pipeline_print.py -------------------------------------------------------------------------------- /src/vc_infer_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/vc_infer_pipeline.py -------------------------------------------------------------------------------- /src/webui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SociallyIneptWeeb/AICoverGen/HEAD/src/webui.py --------------------------------------------------------------------------------