Merge pull request #621 from kim-jeonghyun/fix_typo_from_mmdetection

fix: 📝 typo in from_mmdetection docstring
This commit is contained in:
Piotr Skalski 2023-11-26 20:41:44 +01:00 committed by GitHub
commit 2dcf2cc2ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)
```
"""