Skip to content

Commit

Permalink
DOCS-1466: Add consistent vis names (#2287)
Browse files Browse the repository at this point in the history
  • Loading branch information
andf-viam authored Dec 6, 2023
1 parent d7b46d5 commit d47a0ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/ml/vision/detection.md
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ In your vision service's panel, fill in the **Attributes** field.

```json {class="line-numbers linkable-line-numbers"}
{
"mlmodel_name": "<detector_name>"
"mlmodel_name": "<mlmodel-service-name>"
}
```

Expand All @@ -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": "<detector_name>"
"mlmodel_name": "<mlmodel-service-name>"
}
}
]
Expand All @@ -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"
}
}
]
Expand Down Expand Up @@ -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": "<vision-service-name>"
}
}
],
Expand Down

0 comments on commit d47a0ae

Please sign in to comment.