-
Notifications
You must be signed in to change notification settings - Fork 8
YOLO V2 predicting one class
deven edited this page Mar 25, 2021
·
1 revision
- User is performing transfer learning YOLO V2 model with own data.
- User is trying to detect one class of object.
- User need to provide 2 classes for Object with or Without classes.
- If data has more than one classes, no need to define extra class.
- Inspect the root cause of problem. In this case
String labels = label.get(obj.getPredictedClass());result in array out of bound. - Inspect number of classes. Having number of class = 1 is the cause of problem.