Skip to content

Commit

Permalink
Update yolo.py
Browse files Browse the repository at this point in the history
  • Loading branch information
bubbliiiing authored Nov 30, 2020
1 parent b0cb4c4 commit de18de8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yolo.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@
#--------------------------------------------#
class YOLO(object):
_defaults = {
"model_path" : 'model_data/yolov4_mobilenet_v3_map75.13.pth',
"model_path" : 'model_data/yolov4_mobilenet_v2_map76.93.pth',
"anchors_path" : 'model_data/yolo_anchors.txt',
"classes_path" : 'model_data/voc_classes.txt',
"backbone" : 'mobilenetv3',
"backbone" : 'mobilenetv2',
"model_image_size" : (416, 416, 3),
"confidence" : 0.5,
"iou" : 0.3,
Expand Down

0 comments on commit de18de8

Please sign in to comment.