Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
yhlleo committed Jan 4, 2020
1 parent b1915d7 commit 419c3dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion options/base_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@ def initialize(self, parser):
# for deepcrack
parser.add_argument('--load_width', type=int, default=0, help='load image width')
parser.add_argument('--load_height', type=int, default=0, help='load image height')
parser.add_argument('--use_augment', type=int, default=1, help='using data augmentation for training')
parser.add_argument('--use_augment', action='store_true', help='using data augmentation for training')
#parser.add_argument('--use_augment', type=int, default=1, help='using data augmentation for training')
parser.add_argument('--display_sides', type=int, default=1, help='displaying the side output results')
parser.add_argument('--num_classes', type=int, default=2, help='number of classes')
#parser.add_argument('--use_l1', type=int, default=1, help='using l1 loss')
Expand Down
1 change: 0 additions & 1 deletion scripts/test_deepcrack.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,4 @@ python3 test.py \
--num_classes ${NUM_CLASSES} \
--norm ${NORM} \
--num_test ${NUM_TEST}\
--use_augment 0 \
--display_sides 1

0 comments on commit 419c3dc

Please sign in to comment.