Skip to content

Commit

Permalink
Fix invalid instructions in README.md
Browse files Browse the repository at this point in the history
Fixed two instructions in the README.
1) the instruction to make model pointed to etr-resnet-50 rather than the etr-resnet-101 that the instructions use.
2) The client container start had a /detecion in the model address where it should not have.
added signoff

Signed-off-by: Graeme Colman <gcolman@redhat.com>
  • Loading branch information
gcolman authored and Graeme Colman committed May 26, 2024
1 parent 8731842 commit 2573e7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/computer_vision/object_detection/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ As stated above, by default the model service will use [`facebook/detr-resnet-10

```bash
# from path model_servers/object_detection_python from repo containers/ai-lab-recipes
make MODEL_NAME=facebook/detr-resnet-50 MODEL_PATH=/models/facebook/detr-resnet-50 run
make MODEL_NAME=facebook/detr-resnet-50 MODEL_PATH=/models/facebook/detr-resnet-101 run
```

## Build the AI Application
Expand All @@ -81,7 +81,7 @@ This could be any appropriately hosted Model Service (running locally or in the
The following Podman command can be used to run your AI Application:

```bash
podman run -p 8501:8501 -e MODEL_ENDPOINT=http://10.88.0.1:8000/detection object_detection_client
podman run -p 8501:8501 -e MODEL_ENDPOINT=http://10.88.0.1:8000 object_detection_client
```

### Interact with the AI Application
Expand Down

0 comments on commit 2573e7d

Please sign in to comment.