From fa71b65205475264e682408e96a98990e2a4ea5a Mon Sep 17 00:00:00 2001 From: Eric Pedley Date: Tue, 27 Aug 2024 23:59:22 -0700 Subject: [PATCH] Add more detail to boxes documentation. --- src/deepsparse/yolo/schemas.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/deepsparse/yolo/schemas.py b/src/deepsparse/yolo/schemas.py index 3a256ca010..891873e1be 100644 --- a/src/deepsparse/yolo/schemas.py +++ b/src/deepsparse/yolo/schemas.py @@ -101,7 +101,7 @@ class YOLOOutput(BaseModel): """ boxes: List[List[List[float]]] = Field( - description="List of bounding boxes, one for each prediction" + description="List of bounding boxes, one for each prediction, in XYXY format (left, top, right, bottom). Units are pixels." ) scores: List[List[float]] = Field( description="List of scores, one for each prediction"