diff options
| author | jules@lens <julescarbon@gmail.com> | 2018-06-17 09:13:13 +0200 |
|---|---|---|
| committer | jules@lens <julescarbon@gmail.com> | 2018-06-17 09:13:13 +0200 |
| commit | 16ef4a4d0d8c40706f26ff3feceb3fc1a4406f7c (patch) | |
| tree | 10e4847125e87e3902498a8092a27bedfe9a4bce | |
| parent | 5dd93bd37c65e4bf5b6f195fe73824f8ba37eb01 (diff) | |
| parent | 34e366f65dfaf83c1946321cca63efaa306010a5 (diff) | |
Merge branch 'master' of asdf.us:pix2pixhd
| -rwxr-xr-x | options/test_options.py | 1 |
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') |
