Open jcgarciaca opened 6 years ago
Hi @jcgarciaca , sorry for late response. assuming by size you refer to image height, your steps from 1-4 are correct. However, step 5 is tricky part. The number 13 comes from 416/32. 32 is downsampling factor and always stays same (unless you remove or add new conv layers). 416 is the height and width of the network input size
originally YOLO uses 416x416 input size. However, lets say you have 416x640 (width x height), then your multiplication values should be 416/32 for width 640/32 for height
Hello, I am training YOLO with my own data. I started with some available examples and they worked well. Nevertheless, when using my data set the network doesn't find any object (although loss value is around 0.06). Since my images have big size with small objects, I read that anchor values must be adjusted, although it is not clear how to do it.
Then, I actually did the following:
Is this process OK?
Thank you.