Views
No views yet
model.names)app/processor/models/detection/weights/best.ptprocessor.models.binaryprocessor.detector_weight_contract (off | warn | enforce)processor.models.binary_openvinoBIRDLENSE_BINARY_OPENVINO_PATH1from ultralytics import YOLO
2
3model = YOLO("best.pt")
4print(model.names) # expected: {0:'Bird', 1:'Rodent', 2:'Background'}
5results = model.predict("sample.jpg", conf=0.25)