I was using the mxnet example for Faster R-CNN on the official GitHub: Faster R-CNN
I created my own dataset and adapted the pascal_voc.py
file. This included changing the number of classes to 13.
The resolution of my pictures is 600*800 pixel, so a bit larger than the VOC dataset.
In my trainval images, I have 2000 examples, so 3000 less than than in VOC.
I am using mxnet 0.10 in python for this.
I am getting no error in the training, the loss is decreasing, but when I use the model after 10 epochs, I am getting no results, just the:
class ---- [[x1, x2, y1, y2, confidence]]
Does anyone has an idea what I am might missing?