-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for additional models with data and config from this re…
…po rather than relying on the old UVR repos. Added first new model using this method: mel_band_roformer_karaoke_aufr33_viperx_sdr_10.1956.ckpt
- Loading branch information
Showing
3 changed files
with
52 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"vr_download_list": {}, | ||
"mdx_download_list": {}, | ||
"mdx23c_download_list": {}, | ||
"roformer_download_list": { | ||
"Roformer Model: Mel-Roformer-Karaoke-Aufr33-Viperx": { | ||
"mel_band_roformer_karaoke_aufr33_viperx_sdr_10.1956.ckpt": "mel_band_roformer_karaoke_aufr33_viperx_sdr_10.1956_config.yaml" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,13 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "audio-separator" | ||
version = "0.19.4" | ||
version = "0.20.0" | ||
description = "Easy to use audio stem separation, using various models from UVR trained primarily by @Anjok07" | ||
authors = ["Andrew Beveridge <[email protected]>"] | ||
license = "MIT" | ||
readme = "README.md" | ||
packages = [{include = "audio_separator"}] | ||
include = ["audio_separator/separator/models.json"] | ||
homepage = "https://github.com/karaokenerds/python-audio-separator" | ||
repository = "https://github.com/karaokenerds/python-audio-separator" | ||
documentation = "https://github.com/karaokenerds/python-audio-separator/blob/main/README.md" | ||
|