xiaochus / YOLOv3

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

Width, Height of Original YOLO #12

Open sachinruk opened 5 years ago

sachinruk commented 5 years ago

Hi,

I was looking at the original YOLO cfg here. It seems the original one accepts a input of size 608x608, not 416 as mentioned in your config file.

So, how is this even working considering you are downloading the weights for for the larger 608x608 image. I understand that the initial convolutions will be the same but the size of your outputs will be different. Am I mistaking something here?

Update: looks like the cfg file was changed 4 days ago. But still the question remains as to why it worked given the weights would have been from the newer model?