updates
This commit is contained in:
parent
c09dc09dba
commit
7416c1842a
|
@ -18,7 +18,7 @@ parser.add_argument('-txt_out', type=bool, default=False)
|
||||||
|
|
||||||
parser.add_argument('-cfg', type=str, default='cfg/yolov3.cfg', help='cfg file path')
|
parser.add_argument('-cfg', type=str, default='cfg/yolov3.cfg', help='cfg file path')
|
||||||
parser.add_argument('-class_path', type=str, default='data/coco.names', help='path to class label file')
|
parser.add_argument('-class_path', type=str, default='data/coco.names', help='path to class label file')
|
||||||
parser.add_argument('-conf_thres', type=float, default=0.80, help='object confidence threshold')
|
parser.add_argument('-conf_thres', type=float, default=0.50, help='object confidence threshold')
|
||||||
parser.add_argument('-nms_thres', type=float, default=0.45, help='iou threshold for non-maximum suppression')
|
parser.add_argument('-nms_thres', type=float, default=0.45, help='iou threshold for non-maximum suppression')
|
||||||
parser.add_argument('-batch_size', type=int, default=1, help='size of the batches')
|
parser.add_argument('-batch_size', type=int, default=1, help='size of the batches')
|
||||||
parser.add_argument('-img_size', type=int, default=32 * 13, help='size of each image dimension')
|
parser.add_argument('-img_size', type=int, default=32 * 13, help='size of each image dimension')
|
||||||
|
|
Loading…
Reference in New Issue