diff --git a/docs/source/developer_guide/guides/2_real_world_phishing.md b/docs/source/developer_guide/guides/2_real_world_phishing.md index 24383fe34d..eae49b40e8 100644 --- a/docs/source/developer_guide/guides/2_real_world_phishing.md +++ b/docs/source/developer_guide/guides/2_real_world_phishing.md @@ -154,7 +154,7 @@ docker run --rm -ti --gpus=all -p8000:8000 -p8001:8001 -p8002:8002 \ --strict-readiness=false \ --disable-auto-complete-config \ --model-control-mode=explicit \ - --load-model phishing-bert-onnx + --load-model=phishing-bert-onnx ``` Once we have Triton running, we can verify that it is healthy using [curl](https://curl.se/). The `/v2/health/live` endpoint should return a 200 status code: diff --git a/examples/abp_nvsmi_detection/README.md b/examples/abp_nvsmi_detection/README.md index 0681795268..654739453b 100644 --- a/examples/abp_nvsmi_detection/README.md +++ b/examples/abp_nvsmi_detection/README.md @@ -27,7 +27,7 @@ In this example, we will be using Morpheus' provided ABP NVSMI Detection model. ### The Dataset -The dataset that this workflow was designed to process contains NVIDIA GPU metrics at regular time intervals and is extracted by a NetQ agent and serialized into JSON. Each line in the dataset contains much of the same information that is returned by the `nvidia-smi` utility. We won't examine at a full message directly since each line contains 176 different columns, but it's possible to get a idea of how the dataset was generated using the `nvidia-smi dmon` command. If you run this yourself, the output similar to the following: +The dataset that this workflow was designed to process contains NVIDIA GPU metrics at regular time intervals and is extracted by a NetQ agent and serialized into JSON. Each line in the dataset contains much of the same information that is returned by the `nvidia-smi` utility. We won't examine at a full message directly since each line contains 176 different columns, but it's possible to get an idea of how the dataset was generated using the `nvidia-smi dmon` command. If you run this yourself, the output similar to the following: ```bash $ nvidia-smi dmon @@ -85,7 +85,7 @@ Once Triton has loaded the model, the following will be displayed: +-------------------+---------+--------+ ``` -If this is not present in the output, check the Triton log for any error messages related to loading the model. +> **Note**: If this is not present in the output, check the Triton log for any error messages related to loading the model. ## Running the Pipeline diff --git a/examples/gnn_fraud_detection_pipeline/README.md b/examples/gnn_fraud_detection_pipeline/README.md index 5987452f31..e5643534a6 100644 --- a/examples/gnn_fraud_detection_pipeline/README.md +++ b/examples/gnn_fraud_detection_pipeline/README.md @@ -1,5 +1,5 @@