Skip to content

Commit

Permalink
Updated scores, fixed issue when passing through no arch params to se…
Browse files Browse the repository at this point in the history
…parator
  • Loading branch information
beveradb committed Dec 17, 2024
1 parent 0763c7d commit ea12a94
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 46 deletions.
83 changes: 41 additions & 42 deletions audio_separator/models-scores.json
Original file line number Diff line number Diff line change
Expand Up @@ -13766,26 +13766,55 @@
"ISR": 14.1944
}
}
},
{
"track_name": "A Classic Education - NightOwl",
"scores": {
"vocals": {
"SDR": 6.08748,
"SIR": 17.144,
"SAR": 6.11034,
"ISR": 12.6967
},
"drums": {
"SDR": 5.1398,
"SIR": 16.7632,
"SAR": 4.47122,
"ISR": 8.87269
},
"bass": {
"SDR": 19.6061,
"SIR": 26.9475,
"SAR": 19.9212,
"ISR": 25.6764
},
"other": {
"SDR": 10.379,
"SIR": 15.77,
"SAR": 11.5282,
"ISR": 20.5043
}
}
}
],
"median_scores": {
"vocals": {
"SDR": 11.2685,
"SIR": 21.257,
"SAR": 11.0359,
"ISR": 19.3753
"SDR": 8.67799,
"SIR": 19.2005,
"SAR": 8.57312,
"ISR": 16.036
},
"drums": {
"SDR": 13.235,
"SIR": 23.3053,
"SAR": 13.0313,
"ISR": 17.2889
"SDR": 9.1874,
"SIR": 20.0343,
"SAR": 8.75126,
"ISR": 13.0808
},
"bass": {
"SDR": 9.72743,
"SIR": 19.5435,
"SAR": 9.20801,
"ISR": 13.5037
"SDR": 14.6668,
"SIR": 23.2455,
"SAR": 14.5646,
"ISR": 19.5901
}
}
},
Expand Down Expand Up @@ -17564,35 +17593,5 @@
"model_name": "MDX-Net Model: kuielab_b_drums",
"track_scores": [],
"median_scores": {}
},
"denoise_mel_band_roformer_aufr33_sdr_27.9959.ckpt": {
"model_name": "Roformer Model: Mel-Roformer-Denoise-Aufr33",
"track_scores": [],
"median_scores": {}
},
"denoise_mel_band_roformer_aufr33_aggr_sdr_27.9768.ckpt": {
"model_name": "Roformer Model: Mel-Roformer-Denoise-Aufr33-Aggr",
"track_scores": [],
"median_scores": {}
},
"mel_band_roformer_crowd_aufr33_viperx_sdr_8.7144.ckpt": {
"model_name": "Roformer Model: Mel-Roformer-Crowd-Aufr33-Viperx",
"track_scores": [],
"median_scores": {}
},
"aspiration_mel_band_roformer_sdr_18.9845.ckpt": {
"model_name": "Roformer Model: MelBand Roformer | Aspiration by Sucial",
"track_scores": [],
"median_scores": {}
},
"aspiration_mel_band_roformer_less_aggr_sdr_18.1201.ckpt": {
"model_name": "Roformer Model: MelBand Roformer | Aspiration Less Aggressive by Sucial",
"track_scores": [],
"median_scores": {}
},
"mel_band_roformer_bleed_suppressor_v1.ckpt": {
"model_name": "Roformer Model: MelBand Roformer | Bleed Suppressor V1 by unwa-97chris",
"track_scores": [],
"median_scores": {}
}
}
8 changes: 4 additions & 4 deletions audio_separator/separator/separator.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@ def __init__(
sample_rate=44100,
use_soundfile=False,
use_autocast=False,
mdx_params=None,
vr_params=None,
demucs_params=None,
mdxc_params=None,
mdx_params={},
vr_params={},
demucs_params={},
mdxc_params={},
info_only=False,
):
"""Initialize the separator."""
Expand Down

0 comments on commit ea12a94

Please sign in to comment.