@@ -63,10 +63,10 @@ def argument_parser():
6363 parser .add_argument ('--height' , '-ht' , type = int , default = 64 , help = 'height of the image to resize to' )
6464 parser .add_argument ('--width' , '-wd' , type = int , default = 64 , help = 'width of the image to resize to' )
6565 parser .add_argument ('--samples' , type = bool , default = False , help = 'See sample training images' )
66- parser .add_argument ('--num_epochs' , type = int , default = 1 , help = 'Number of epochs to train on' )
66+ parser .add_argument ('--num_epochs' , type = int , default = 75 , help = 'Number of epochs to train on' )
6767 parser .add_argument ('--train' , default = True , type = bool , help = 'train the model' )
6868 parser .add_argument ('--root' , default = '.' , type = str , help = 'Root Directory for Input and Target images.' )
69- parser .add_argument ('--n_folds' , default = 2 , type = int , help = 'Number of folds in k-fold cross validation.' )
69+ parser .add_argument ('--n_folds' , default = 7 , type = int , help = 'Number of folds in k-fold cross validation.' )
7070 parser .add_argument ('--save_model' , default = True , type = bool , help = 'Save model after training.' )
7171 parser .add_argument ('--load_model' , default = None , type = str , help = 'Load existing model.' )
7272 parser .add_argument ('--predict' , default = None , type = str , help = 'Path of rough sketch to simplify using existing model' )
0 commit comments