File size: 615 Bytes
82f2a08 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from .base_options import BaseOptions
class TestOptions(BaseOptions):
def initialize(self):
BaseOptions.initialize(self)
self.parser.add_argument('--warp_checkpoint', type=str, default='checkpoints/PFAFN/warp_model_final.pth', help='load the pretrained model from the specified location')
self.parser.add_argument('--gen_checkpoint', type=str, default='checkpoints/PFAFN/gen_model_final.pth', help='load the pretrained model from the specified location')
self.parser.add_argument('--phase', type=str, default='test', help='train, val, test, etc')
self.isTrain = False
|