Hi, thank you for the great work. I have a question on calling the agentic_object_detection function. I found there is a score inside each detection, but the score seems to be aways 1. Could you clarify on what does the score mean? Is it the actual confidence or just some placeholder number? Thanks
I followed this post for my implementation #366
import vision_agent.tools as vision_tools
detections = vision_tools.agentic_object_detection(prompt, image_array)
score = detections[0]['score']
Hi, thank you for the great work. I have a question on calling the
agentic_object_detectionfunction. I found there is a score inside each detection, but the score seems to be aways 1. Could you clarify on what does the score mean? Is it the actual confidence or just some placeholder number? ThanksI followed this post for my implementation #366