(data: dict[str, list[Any]])
| 60 | """ |
| 61 | |
| 62 | def convert_data(data: dict[str, list[Any]]): |
| 63 | return {k: np.array(v) for k, v in data.items()} |
| 64 | |
| 65 | return Detections( |
| 66 | xyxy=np.array(xyxy, dtype=np.float32), |
no outgoing calls
no test coverage detected