Original YOLO9000 implementation divides the 416x416 image into 13x13 square grids where each square grid of size 32x32 (416/13 = 32). I want to divide the image into 208x1 grids such that each grid size is 2x416 (rectangular grid shape).
What all changes do I need to make in the network and at other places in the implementation?
Original YOLO9000 implementation divides the 416x416 image into 13x13 square grids where each square grid of size 32x32 (416/13 = 32). I want to divide the image into 208x1 grids such that each grid size is 2x416 (rectangular grid shape).
What all changes do I need to make in the network and at other places in the implementation?