Hello,
I've finetuned a YOLOv8 nano classification model, and am using it with an OAK 1 PoE to classify an image into one of six categories.
The classification works fine on those items, but the greatest issue I'm facing is that when something that isn't one of the 6 categories shows up, the model still gives it a percentage out of those six categories.
I want to implement a confidence threshold, or be able to classify the items as 'None' (I'm assuming a confidence threshold is the best way to do this).
There's info online on how to set a conf threshold when predicting with YOLO directly. How can I do this through DepthAI (my custom model is a Neural Network Node)? I want less false positives