You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there,
At yolo_main.py line 47 there is a bug: classes_num_filtered = np.argmax(filter_mat_probs,axis=3)[filter_mat_boxes[0],filter_mat_boxes[1],filter_mat_boxes[2]]
should be classes_num_filtered = np.argmax(probs,axis=3)[filter_mat_boxes[0],filter_mat_boxes[1],filter_mat_boxes[2]]
Basically, using argmax over filter_mat_probs, which is a boolean matrix, instead of the actual probs might cause picking the wrong class when more then one is available
The text was updated successfully, but these errors were encountered:
Banus
added a commit
to Banus/caffe-yolo
that referenced
this issue
Nov 26, 2016
The 'yolo_detect' module now supports CoCo classes by passing the
'--yolo' option and the number of boxes per region is now detected
automatically.
Set detection threshold to 0.25 (Darknet default).
Removed RGB->BGR conversion because Yolo uses RGB
(xingwangsfu/pull/14) and fix bug in detection
(xingwangsfu/issues/12)
Hi there,
At yolo_main.py line 47 there is a bug:
classes_num_filtered = np.argmax(filter_mat_probs,axis=3)[filter_mat_boxes[0],filter_mat_boxes[1],filter_mat_boxes[2]]
should be
classes_num_filtered = np.argmax(probs,axis=3)[filter_mat_boxes[0],filter_mat_boxes[1],filter_mat_boxes[2]]
Basically, using argmax over
filter_mat_probs
, which is a boolean matrix, instead of the actualprobs
might cause picking the wrong class when more then one is availableThe text was updated successfully, but these errors were encountered: