From 51ee6f26e674880b89a5f1f32a919dba401eb922 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Sun, 14 Dec 2025 12:00:48 -0600 Subject: [PATCH] Fix yolov9 coral docs labelmap path (#21278) --- docs/docs/configuration/object_detectors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/configuration/object_detectors.md b/docs/docs/configuration/object_detectors.md index 2305c6850..282310be5 100644 --- a/docs/docs/configuration/object_detectors.md +++ b/docs/docs/configuration/object_detectors.md @@ -175,7 +175,7 @@ model: width: 320 # <--- should match the imgsize of the model, typically 320 height: 320 # <--- should match the imgsize of the model, typically 320 path: /config/model_cache/yolov9-s-relu6-best_320_int8_edgetpu.tflite - labelmap_path: /labelmap/labels-coco-17.txt + labelmap_path: /config/labels-coco17.txt ``` Note that the labelmap uses a subset of the complete COCO label set that has only 17 objects.