From 7e4cda635908c60243f258fc8fe0d054b117e07d Mon Sep 17 00:00:00 2001 From: Anjok07 <68268275+Anjok07@users.noreply.github.com> Date: Wed, 9 Jun 2021 03:50:01 -0500 Subject: [PATCH] Update spec_utils.py --- lib/spec_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/spec_utils.py b/lib/spec_utils.py index bc062bb..a39a9f5 100644 --- a/lib/spec_utils.py +++ b/lib/spec_utils.py @@ -368,7 +368,7 @@ if __name__ == "__main__": from model_param_init import ModelParameters p = argparse.ArgumentParser() - p.add_argument('--algorithm', '-a', type=str, choices=['invert', 'invert_p', 'min_mag', 'max_mag', 'deep'], default='min_mag') + p.add_argument('--algorithm', '-a', type=str, choices=['invert', 'invert_p', 'min_mag', 'max_mag', 'deep', 'align'], default='min_mag') p.add_argument('--model_params', '-m', type=str, default=os.path.join('modelparams', '1band_sr44100_hl512.json')) p.add_argument('--output_name', '-o', type=str, default='output') p.add_argument('--vocals_only', '-v', action='store_true')