summaryrefslogtreecommitdiff
path: root/options/test_options.py
diff options
context:
space:
mode:
Diffstat (limited to 'options/test_options.py')
-rwxr-xr-xoptions/test_options.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/options/test_options.py b/options/test_options.py
index 504edf3..158d9cd 100755
--- a/options/test_options.py
+++ b/options/test_options.py
@@ -5,6 +5,7 @@ from .base_options import BaseOptions
class TestOptions(BaseOptions):
def initialize(self):
BaseOptions.initialize(self)
+ self.parser.add_argument('--start_img', type=str, default="test.jpg", help='starting image for recursive generation')
self.parser.add_argument('--ntest', type=int, default=float("inf"), help='# of test examples.')
self.parser.add_argument('--results_dir', type=str, default='./results/', help='saves results here.')
self.parser.add_argument('--aspect_ratio', type=float, default=1.0, help='aspect ratio of result images')