fix: 📝 typo in from_mmdetection docstring

This commit is contained in:
kim-jeonghyun 2023-11-26 20:33:37 +09:00
parent 10c44b0143
commit 619ec018bc
1 changed files with 1 additions and 1 deletions

View File

@ -324,7 +324,7 @@ class Detections:
>>> inferencer = DetInferencer(model_name, checkpoint, device)
>>> mmdet_result = inferencer(SOURCE_IMAGE_PATH, out_dir='./output',
... return_datasample=True)["predictions"][0]
... return_datasamples=True)["predictions"][0]
>>> detections = sv.Detections.from_mmdet(mmdet_result)
```
"""