From d47a0aeefc752d77e43a407ec9b9e069cfba081c Mon Sep 17 00:00:00 2001 From: andf-viam <132301587+andf-viam@users.noreply.github.com> Date: Wed, 6 Dec 2023 16:05:57 -0500 Subject: [PATCH] DOCS-1466: Add consistent vis names (#2287) --- docs/ml/vision/detection.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/ml/vision/detection.md b/docs/ml/vision/detection.md index 8dcf812cdb..c25b0757a5 100644 --- a/docs/ml/vision/detection.md +++ b/docs/ml/vision/detection.md @@ -181,7 +181,7 @@ In your vision service's panel, fill in the **Attributes** field. ```json {class="line-numbers linkable-line-numbers"} { - "mlmodel_name": "" + "mlmodel_name": "" } ``` @@ -197,7 +197,7 @@ Add the vision service object to the services array in your raw JSON configurati "type": "vision", "model": "mlmodel", "attributes": { - "mlmodel_name": "" + "mlmodel_name": "" } } ] @@ -213,7 +213,7 @@ Add the vision service object to the services array in your raw JSON configurati "type": "vision", "model": "mlmodel", "attributes": { - "mlmodel_name": "person_detector" + "mlmodel_name": "my_mlmodel_service" } } ] @@ -247,7 +247,7 @@ If you intend to use the detector with a camera that is part of your robot, you "type": "detections", "attributes": { "confidence_threshold": 0.5, - "detector_name": "my_detector" + "detector_name": "" } } ],