You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to use the faster rcnn to train a model that only detect "person" class. So i use the pascal voc 2007 dataset, i had changed the code in lib/dataset/pascal_voc.py. I get some models by the faster rcnn. However, the model detect all objects in one image and label them "person", Why?
I want to use the faster rcnn to train a model that only detect "person" class. So i use the pascal voc 2007 dataset, i had changed the code in lib/dataset/pascal_voc.py. I get some models by the faster rcnn. However, the model detect all objects in one image and label them "person", Why?
pascal_voc.py
// 001
self._classes = ('background', 'person')
// 002
cls = self._class_to_ind['person']
The text was updated successfully, but these errors were encountered: