├── .gitattributes ├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── .vscode └── launch.json ├── App ├── __init__.py ├── audio_utils.py ├── compare.py ├── inference.py ├── settings.py ├── setup.py ├── sys_info.py └── tfc_tdf.py ├── Data ├── Models.csv └── model_2_stem_full_band_8k.yaml ├── Gui ├── Error.py ├── Notebook.py ├── Progress.py ├── wx_Error.py ├── wx_GPUtil.py ├── wx_Main.py ├── wx_Progress.py ├── wx_Window.py └── wx_window.fbp ├── KaraFan.ipynb ├── KaraFan.pyw ├── LICENSE ├── README.md ├── VSCode.code-workspace ├── images ├── KaraFan.ico ├── KaraFan.png ├── KaraFan_Banner.jpg ├── dark-vader.png ├── discord.svg ├── icon-music.png ├── icon-progress.png ├── icon-settings.png ├── icon-sys-info.png ├── icon-vocal.png ├── ko-fi.png └── light-storm.png ├── requirements.txt └── requirements_PC.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /App/__init__.py: -------------------------------------------------------------------------------- 1 | # Version 5.4 -------------------------------------------------------------------------------- /App/audio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/App/audio_utils.py -------------------------------------------------------------------------------- /App/compare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/App/compare.py -------------------------------------------------------------------------------- /App/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/App/inference.py -------------------------------------------------------------------------------- /App/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/App/settings.py -------------------------------------------------------------------------------- /App/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/App/setup.py -------------------------------------------------------------------------------- /App/sys_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/App/sys_info.py -------------------------------------------------------------------------------- /App/tfc_tdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/App/tfc_tdf.py -------------------------------------------------------------------------------- /Data/Models.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/Data/Models.csv -------------------------------------------------------------------------------- /Data/model_2_stem_full_band_8k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/Data/model_2_stem_full_band_8k.yaml -------------------------------------------------------------------------------- /Gui/Error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/Gui/Error.py -------------------------------------------------------------------------------- /Gui/Notebook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/Gui/Notebook.py -------------------------------------------------------------------------------- /Gui/Progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/Gui/Progress.py -------------------------------------------------------------------------------- /Gui/wx_Error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/Gui/wx_Error.py -------------------------------------------------------------------------------- /Gui/wx_GPUtil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/Gui/wx_GPUtil.py -------------------------------------------------------------------------------- /Gui/wx_Main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/Gui/wx_Main.py -------------------------------------------------------------------------------- /Gui/wx_Progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/Gui/wx_Progress.py -------------------------------------------------------------------------------- /Gui/wx_Window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/Gui/wx_Window.py -------------------------------------------------------------------------------- /Gui/wx_window.fbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/Gui/wx_window.fbp -------------------------------------------------------------------------------- /KaraFan.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/KaraFan.ipynb -------------------------------------------------------------------------------- /KaraFan.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/KaraFan.pyw -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/README.md -------------------------------------------------------------------------------- /VSCode.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/VSCode.code-workspace -------------------------------------------------------------------------------- /images/KaraFan.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/images/KaraFan.ico -------------------------------------------------------------------------------- /images/KaraFan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/images/KaraFan.png -------------------------------------------------------------------------------- /images/KaraFan_Banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/images/KaraFan_Banner.jpg -------------------------------------------------------------------------------- /images/dark-vader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/images/dark-vader.png -------------------------------------------------------------------------------- /images/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/images/discord.svg -------------------------------------------------------------------------------- /images/icon-music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/images/icon-music.png -------------------------------------------------------------------------------- /images/icon-progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/images/icon-progress.png -------------------------------------------------------------------------------- /images/icon-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/images/icon-settings.png -------------------------------------------------------------------------------- /images/icon-sys-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/images/icon-sys-info.png -------------------------------------------------------------------------------- /images/icon-vocal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/images/icon-vocal.png -------------------------------------------------------------------------------- /images/ko-fi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/images/ko-fi.png -------------------------------------------------------------------------------- /images/light-storm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/images/light-storm.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_PC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Captain-FLAM/KaraFan/HEAD/requirements_PC.txt --------------------------------------------------------------------------------