From eb25e737cf52b6fb99dc2bd94b6f53963fa6358b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Machulda?= Date: Sun, 30 Oct 2016 11:48:53 +0100 Subject: [PATCH] Fix duplicate param definition --- enhance.py | 1 - 1 file changed, 1 deletion(-) diff --git a/enhance.py b/enhance.py index e1cfe5e..20e4d2c 100644 --- a/enhance.py +++ b/enhance.py @@ -36,7 +36,6 @@ parser = argparse.ArgumentParser(description='Generate a new image by applying s add_arg = parser.add_argument add_arg('files', nargs='*', default=[]) add_arg('--scales', default=2, type=int, help='How many times to perform 2x upsampling.') -add_arg('--model', default='medium', type=str, help='Name of the neural network to load/save.') add_arg('--model', default='small', type=str, help='Name of the neural network to load/save.') add_arg('--train', default=False, type=str, help='File pattern to load for training.') add_arg('--batch-resolution', default=192, type=int, help='Resolution of images in training batch.')