From 03e82be4e5b9cee114e7c1080d1a87442fcdb93d Mon Sep 17 00:00:00 2001 From: zhlsunshine Date: Thu, 21 Mar 2024 09:04:52 +0800 Subject: [PATCH] remove the quote in content Signed-off-by: zhlsunshine --- .../Python-Based-Custom-Runtime-with-Model-Stored-on-PVC.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/examples/python-custom-runtime/Python-Based-Custom-Runtime-with-Model-Stored-on-PVC.md b/docs/examples/python-custom-runtime/Python-Based-Custom-Runtime-with-Model-Stored-on-PVC.md index f2b4d7b4..d46f8a2c 100644 --- a/docs/examples/python-custom-runtime/Python-Based-Custom-Runtime-with-Model-Stored-on-PVC.md +++ b/docs/examples/python-custom-runtime/Python-Based-Custom-Runtime-with-Model-Stored-on-PVC.md @@ -124,7 +124,7 @@ All of the necessary resources are contained in [custom-model](./custom-model), Both `load` and `predict` must be implemented to support this custom `ServingRuntime`. The code file [custom_model.py](./custom-model/custom_model.py) provides a simplified implementation of `CustomMLModel` for model `mnist-svm.joblib`. You can read more about it [here](https://github.com/kserve/modelmesh-serving/blob/main/docs/runtimes/mlserver_custom.md). -## 2. Build the custom `ServingRuntime` image +## 2. Build the custom ServingRuntime image You can use [`mlserver`](https://mlserver.readthedocs.io/en/stable/examples/custom/README.html#building-a-custom-image) or `docker` to help to build the custom `ServingRuntime` image, and the latter is done in [Dockerfile](./custom-model/Dockerfile).