Skip to content

Commit cf58770

Browse files
committed
Update Blog “production-ready-object-detection-model-training-workflow-with-hpe-machine-learning-development-environment”
1 parent 5641bbc commit cf58770

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

content/blog/production-ready-object-detection-model-training-workflow-with-hpe-machine-learning-development-environment.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -724,25 +724,25 @@ loaded_model = load_model_from_checkpoint(checkpoint)
724724

725725
Now that you have a checkpoint from the trained object detection model, you can deploy it to Kserve to run inference and predictions.
726726

727-
# Part 5: Deploying Trained Model on Kserve
727+
# Part 5: Deploying trained model on Kserve
728728

729729
This notebook walks you each step to deploy a custom object detection model on KServe.
730730

731-
We will show you how to:
731+
Here, I will show you how to:
732732

733-
* Install Kserve Natively using Kind and Knative
733+
* Install Kserve natively using Kind and Knative
734734
* Create a Persistent Volume Claim for local model deployment
735735
* Preparing custom model for Kserve inference
736736
* Deploying model using a KServe InferenceService
737737
* Complete a sample request and plot predictions
738738

739-
Note: This notebook was tested on a Linux-based machine with Nvidia T4 GPUs. We also assume Docker is installed in your Linux system/environment
739+
*Note: This notebook was tested on a Linux-based machine with Nvidia T4 GPUs. We also assume Docker is installed in your Linux system/environment*
740740

741741
Let's get started!
742742

743743
## Pre-reqs: Setting up Python and Jupyter Lab environment
744744

745-
Run the below commands to set up a python virtual environment, and install all the python packages needed for this tutorial
745+
Run the below commands to set up a Python virtual environment, and install all the Python packages needed for this tutorial
746746

747747
```cwl
748748
sudo apt-get update && sudo apt-get install python3.8-venv
@@ -756,11 +756,11 @@ jupyter lab --ip=0.0.0.0 \
756756
--NotebookApp.password=''
757757
```
758758

759-
## Install Kserve Natively using Kind and Knative
759+
## Install Kserve natively using Kind and Knative
760760

761761
### Install Kind
762762

763-
Open a Terminal and run the following bash commands to install a kubernetes cluster using Kind:
763+
Open a terminal and run the following bash commands to install a Kubernetes cluster using Kind:
764764

765765
* `curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.18.0/kind-linux-amd64`
766766
* `chmod +x ./kind`

0 commit comments

Comments
 (0)