parser.add_argument('--netD',type=str,default='basic_cond',choices=['basic_cond','basic','n_layers','pixel','patch','tilestylegan2','stylegan2'],help='specify discriminator architecture. The basic model is a 70x70 PatchGAN. n_layers allows you to specify the layers in the discriminator')
parser.add_argument('--n_layers_D',type=int,default=3,help='only used if netD==n_layers')
parser.add_argument('--normG',type=str,default='instance',choices=['instance','batch','none'],help='instance normalization or batch normalization for G')
parser.add_argument('--normD',type=str,default='instance',choices=['instance','batch','none'],help='instance normalization or batch normalization for D')
parser.add_argument('--no_antialias',action='store_true',help='if specified, use stride=2 convs instead of antialiased-downsampling (sad)')
parser.add_argument('--no_antialias_up',action='store_true',help='if specified, use [upconv(learned filter)] instead of [upconv(hard-coded [1,3,3,1] filter), conv]')
# dataset parameters
parser.add_argument('--dataset_mode',type=str,default='unaligned',help='chooses how datasets are loaded. [unaligned | aligned | single | colorization]')
parser.add_argument('--direction',type=str,default='AtoB',help='AtoB or BtoA')
parser.add_argument('--serial_batches',action='store_true',help='if true, takes images in order to make batches, otherwise takes them randomly')
parser.add_argument('--num_threads',default=4,type=int,help='# threads for loading data')
parser.add_argument('--load_size',type=int,default=286,help='scale images to this size')
parser.add_argument('--crop_size',type=int,default=256,help='then crop to this size')
parser.add_argument('--max_dataset_size',type=int,default=float("inf"),help='Maximum number of samples allowed per dataset. If the dataset directory contains more than max_dataset_size, only a subset is loaded.')
parser.add_argument('--preprocess',type=str,default='resize_and_crop',help='scaling and cropping of images at load time [resize_and_crop | crop | scale_width | scale_width_and_crop | none]')
parser.add_argument('--no_flip',action='store_true',help='if specified, do not flip the images for data augmentation')
parser.add_argument('--display_winsize',type=int,default=256,help='display window size for both visdom and HTML')