I trained my own custom model on 1136 images (so a very small dataset) to detect pedestrian crossing signals, and it has been functional on our test images in darknet:
However, after converting to Keras and running test_yolo.py, the converted model consistently finds 0 boxes in any of the images that are correctly boxed and classified on the darkent model.
My model is trained on Tiny YOLO, and I have already made the fix on #83. I've also trained the exact same Tiny YOLO model on the Bosch dataset, which converted successfully and is able to detect the same boxes as its darknet counterpart.
What could be going wrong here? Is the small dataset potentially causing this?
Here are my logs from the conversion, which seem to be successful
Hello!
I have a quession about the boxes. I wish you can tell me the information of the boxes.Whether there are (xmin,ymin,xmax,ymax,class) or other pattern? Thank you.
Hello!
I trained my own custom model on 1136 images (so a very small dataset) to detect pedestrian crossing signals, and it has been functional on our test images in darknet:
However, after converting to Keras and running
test_yolo.py
, the converted model consistently finds 0 boxes in any of the images that are correctly boxed and classified on the darkent model.My model is trained on Tiny YOLO, and I have already made the fix on #83. I've also trained the exact same Tiny YOLO model on the Bosch dataset, which converted successfully and is able to detect the same boxes as its darknet counterpart.
Here are my logs from the conversion, which seem to be successful
Thank you so much!