xiaochus / YOLOv3

Keras implementation of yolo v3 object detection.
MIT License
603 stars 263 forks source link

there is a bug in darknet53.py #5

Closed zhanghengdev closed 6 years ago

zhanghengdev commented 6 years ago

Good work! But I think there is a bug in darknet53.py, line 51: in stead of x = conv2d_unit(inputs, 2 * filters, (3, 3)), it shoud be x = conv2d_unit(x, 2 * filters, (3, 3)). Can you check it?

xiaochus commented 6 years ago

fix it, thanks!