We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 801010e commit 285af98Copy full SHA for 285af98
yolov3/configs.py
@@ -66,6 +66,7 @@
66
#YOLOv3-TINY and YOLOv4-TINY WORKAROUND
67
if TRAIN_YOLO_TINY:
68
YOLO_STRIDES = [16, 32, 64]
69
- YOLO_ANCHORS = [[[23, 27], [37, 58], [81, 82]],
+ # YOLO_ANCHORS = [[[23, 27], [37, 58], [81, 82]], # this line can be uncommented for default coco weights
70
+ YOLO_ANCHORS = [[[10, 14], [23, 27], [37, 58]],
71
[[81, 82], [135, 169], [344, 319]],
72
[[0, 0], [0, 0], [0, 0]]]
0 commit comments