What does "background" FN and FP in the confusion matrix of YOLOv7 stand for
```
background FN : to the number of false negatives where the model failed to detect an object in regions where no object is present (i.e., missed detections of the "background" class).
background FN : to the number of false positives where the model incorrectly detected an object in regions where no object is present (i.e., spurious detections of the "background" class).
```