Happened IndexError: index 52 is out of bounds for axis 1 with size 52!
`
IndexError Traceback (most recent call last)
/content/train.py in
1 frames /content/core/dataset.py in preprocess_true_boxes(self, bboxes) 230 xind, yind = np.floor(bbox_xywh_scaled[best_detect, 0:2]).astype(np.int32) 231 --> 232 label[best_detect][yind, xind, best_anchor, :] = 0 233 label[best_detect][yind, xind, best_anchor, 0:4] = bbox_xywh 234 label[best_detect][yind, xind, best_anchor, 4:5] = 1.0
IndexError: index 52 is out of bounds for axis 1 with size 52 `
As it shows, I use widerface dataset to train my model but it happened indexError, it seems some problem with my code, please help me to solve it.
How many classes
one class
only have a class named "person" in the file "./data/classes/yolo.names"
that maybe the center of some bounding boxes are out range of image
that maybe the center of some bounding boxes are out range of image
Thanks, I have solved the problem, because the widerface dataset's labels have some problems
that maybe the center of some bounding boxes are out range of image
Thanks, I have solved the problem, because the widerface dataset's labels have some problems
How did you solve this problem? I have the same one and don't know how to fix it.