I am reading YOLO original paper https://arxiv.org/pdf/1506.02640.pdf.
At the beginning of the paper. It says
If the center of an object falls into a grid cell, that grid cell is responsible for detecting that object.
Note that the loss function only penalizes classification error if an object is present in that grid cell (hence the conditional class probability discussed earlier).
So, my understanding is that an object is present in one cell if the center of this object falls into this cell. Even if a part of an object (but not the center) is contained in one cell. We still think this cell doesn't have an object (1_i^obj = 0). And the target confidence score should be 0
Am I correct?