Grid Sensitive is a trick for object detection introduced by YOLOv4. When we decode the coordinate of the bounding box center x and y, in original YOLOv3, we can get them by
x=s⋅(g_x+σ(p_x))y=s⋅(g_y+σ(p_y))
where σ is the sigmoid function, g_x and g_y are integers and s is a scale factor. Obviously, x and y cannot be exactly equal to s⋅g_x or s⋅(g_x+1). 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
x=s⋅(g_x+α⋅σ(p_x)−(α−1)/2)y=s⋅(g_y+α⋅σ(p_y)−(α−1)/2)
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.