-
Notifications
You must be signed in to change notification settings - Fork 7.2k
Description
The documentation for the SSD class mentions that we should not count the background as an object class when passing the number of classes as a parameter to instantiate an SSD object.
vision/torchvision/models/detection/ssd.py
Line 144 in 9596668
| num_classes (int): number of output classes of the model (excluding the background). |
However, further down in the same file, an SSD object is instantiated in a function that explicitly says that the background should be counted as an object class, but this is not taken into account in the code (i.e. I did not see num_classes be decremented by one when creating the SSD object).
vision/torchvision/models/detection/ssd.py
Line 589 in 9596668
| model = SSD(backbone, anchor_generator, (300, 300), num_classes, **kwargs) |
Here is the documentation for this function, which says we should include the background in the number of classes.
vision/torchvision/models/detection/ssd.py
Line 563 in 9596668
| num_classes (int): number of output classes of the model (including the background) |
This is confusing. Should we or should we not count the background as an object class when instantiating the SSD? In either case, how should object classes be ID'd during training?
As an example, with Faster RCNN, the background is counted as an object class (with ID 0 reserved for it) and actual object classes are identified during training starting from ID 1. What should be the procedure for SSD?
I have also opened a topic in the forums, since this is both a personal question of mine as well as a possible issue in the docs (or the code).