mirror of
https://github.com/Anjok07/ultimatevocalremovergui.git
synced 2024-11-24 07:20:10 +01:00
Alter 4Band_ens_inference.py to prevent crashing
This change should prevent 4Band_ens_inference.py from crashing or only partially completing all the inference rounds when the window size is set below 320. The NewLayer models fail when the size is below 320, so this change simply sets a lower limit of 320 for those rounds.
This commit is contained in:
parent
59a08e668c
commit
cb076dfc80
@ -632,7 +632,7 @@ def main():
|
||||
|
||||
print('done')
|
||||
|
||||
vr = VocalRemover(model, device, args.window_size)
|
||||
vr = VocalRemover(model, device, max(args.window_size,320))
|
||||
|
||||
if args.tta:
|
||||
pred, X_mag, X_phase = vr.inference_tta(X_spec_m, {'value': args.aggressiveness, 'split_bin': mp.param['band'][1]['crop_stop']})
|
||||
@ -747,7 +747,7 @@ def main():
|
||||
|
||||
print('done')
|
||||
|
||||
vr = VocalRemover(model, device, args.window_size)
|
||||
vr = VocalRemover(model, device, max(args.window_size,320))
|
||||
|
||||
if args.tta:
|
||||
pred, X_mag, X_phase = vr.inference_tta(X_spec_m, {'value': args.aggressiveness, 'split_bin': mp.param['band'][1]['crop_stop']})
|
||||
@ -862,7 +862,7 @@ def main():
|
||||
|
||||
print('done')
|
||||
|
||||
vr = VocalRemover(model, device, args.window_size)
|
||||
vr = VocalRemover(model, device, max(args.window_size,320))
|
||||
|
||||
if args.tta:
|
||||
pred, X_mag, X_phase = vr.inference_tta(X_spec_m, {'value': args.aggressiveness, 'split_bin': mp.param['band'][1]['crop_stop']})
|
||||
|
Loading…
Reference in New Issue
Block a user