What is: Grid Sensitive?
Source | YOLOv4: Optimal Speed and Accuracy of Object Detection |
Year | 2000 |
Data Source | CC BY-SA - https://paperswithcode.com |
Grid Sensitive is a trick for object detection introduced by YOLOv4. When we decode the coordinate of the bounding box center and , in original YOLOv3, we can get them by
where is the sigmoid function, and are integers and is a scale factor. Obviously, and cannot be exactly equal to or . This makes it difficult to predict the centres of bounding boxes that just located on the grid boundary. We can address this problem, by changing the equation to
This makes it easier for the model to predict bounding box center exactly located on the grid boundary. The FLOPs added by Grid Sensitive are really small, and can be totally ignored.