I have been trying to fine-tune the SSD Inception v2 model with my own dataset of different kinds of drinks. Unfortunately, when I am training, I found that only one category of class is getting trained but not the rest. I am unsure what I was doing wrong. I have recreated my dataset thrice and tried to train with it, but still I end up with the same results.
Is there any particular procedure to be followed, when training Object Detection API with several classes?
Will the tensorflow train one class after another?
In my case, the problem is caused due to the config file. I have assigned the num_classes with one instead of three. After i initialized it with three, everything works well now. Sometimes, this kind of issue might also arise due t the issue with the dataset.