Skip to content

Commit ffca6c9

Browse files
authored
Merge pull request #321 from brianbarbieri/patch-1
fix type in train.py thanks to @brianbarbieri
2 parents f2bf780 + 5c95083 commit ffca6c9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

train.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def get_args():
5656
parser.add_argument('-w', '--load_weights', type=str, default=None,
5757
help='whether to load weights from a checkpoint, set None to initialize, set \'last\' to load last checkpoint')
5858
parser.add_argument('--saved_path', type=str, default='logs/')
59-
parser.add_argument('--debug', type=boolean_string, default=False, help='whether visualize the predicted boxes of trainging, '
59+
parser.add_argument('--debug', type=boolean_string, default=False, help='whether visualize the predicted boxes of training, '
6060
'the output images will be in test/')
6161

6262
args = parser.parse_args()

0 commit comments

Comments
 (0)