From a708f3f139eac22670db203e26e0abf3d1c5cd4a Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Fri, 18 Apr 2025 16:35:05 -0600 Subject: [PATCH] Update docs for rknn yolov9 --- docs/docs/configuration/object_detectors.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/docs/docs/configuration/object_detectors.md b/docs/docs/configuration/object_detectors.md index 8ba4b463f3..b7ab31aa92 100644 --- a/docs/docs/configuration/object_detectors.md +++ b/docs/docs/configuration/object_detectors.md @@ -849,6 +849,7 @@ The inference time was determined on a rk3588 with 3 NPU cores. | deci-fp16-yolonas_s | 24 | 25 | | deci-fp16-yolonas_m | 62 | 35 | | deci-fp16-yolonas_l | 81 | 45 | +| yolov9_tiny | 8 | 35 | | yolox_nano | 3 | 16 | | yolox_tiny | 6 | 20 | @@ -865,6 +866,7 @@ model: # required # - deci-fp16-yolonas_m # - deci-fp16-yolonas_l path: deci-fp16-yolonas_s + model_type: yolonas width: 320 height: 320 input_pixel_format: bgr @@ -878,6 +880,23 @@ The pre-trained YOLO-NAS weights from DeciAI are subject to their license and ca ::: +#### YOLO (v9) + +```yaml +model: # required + # name of model (will be automatically downloaded) or path to your own .rknn model file + # possible values are: + # - yolov9-t + # - yolov9-s + path: /config/model_cache/rknn_cache/yolov9-t.rknn + model_type: yolo-generic + width: 320 + height: 320 + input_tensor: nhwc + input_dtype: float + labelmap_path: /labelmap/coco-80.txt +``` + #### YOLOx ```yaml @@ -887,6 +906,7 @@ model: # required # - yolox_nano # - yolox_tiny path: yolox_tiny + model_type: yolox width: 416 height: 416 input_tensor: nhwc