mirror of
https://github.com/Anjok07/ultimatevocalremovergui.git
synced 2025-02-17 19:19:15 +01:00
Merge pull request #70 from Nerdy314159265/patch-1
Alter Ensemble Scripts to Prevent Crashing
This commit is contained in:
commit
ae21a4195d
@ -644,7 +644,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']})
|
||||
@ -759,7 +759,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']})
|
||||
@ -874,7 +874,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']})
|
||||
|
@ -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…
x
Reference in New Issue
Block a user