SSD-on-Custom-Dataset
SSD-on-Custom-Dataset copied to clipboard
Train For negative images
I want to train mobileNet SSD on my own dataset for a person class only. And i wanted to know about how should i train it for negative images that i dont wish to get detected?
Any help will be appreciated.
@SikhaS SSD has considered the class of background. If you have only one class, just set num_classes in ./examples/ssd/ssd_xxx.py to 2.
@Coldmooon Thank you for the solution. However can you explain a bit more about num_Classes = 2 and what will be the outcome of changing this to 2?