diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-17 09:13:04 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-17 09:13:04 +0200 |
| commit | 34e366f65dfaf83c1946321cca63efaa306010a5 (patch) | |
| tree | 4ea3884ed7b3d7a2d34d0ed999abcccbebf05e18 | |
| parent | 6ed97d5ca1149967946dc15cb4a1860875636e69 (diff) | |
url
| -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') |
