Files
disrupting-deepfakes/GANimation/options/test_options.py
T
Nataniel Ruiz Gutierrez 21970b730a All
2019-12-21 16:37:10 -05:00

10 lines
347 B
Python

from .base_options import BaseOptions
class TestOptions(BaseOptions):
def initialize(self):
BaseOptions.initialize(self)
self._parser.add_argument('--input_path', type=str, help='path to image')
self._parser.add_argument('--output_dir', type=str, default='./output', help='output path')
self.is_train = False