@@ -724,25 +724,25 @@ loaded_model = load_model_from_checkpoint(checkpoint)
724
724
725
725
Now that you have a checkpoint from the trained object detection model, you can deploy it to Kserve to run inference and predictions.
726
726
727
- # Part 5: Deploying Trained Model on Kserve
727
+ # Part 5: Deploying trained model on Kserve
728
728
729
729
This notebook walks you each step to deploy a custom object detection model on KServe.
730
730
731
- We will show you how to:
731
+ Here, I will show you how to:
732
732
733
- * Install Kserve Natively using Kind and Knative
733
+ * Install Kserve natively using Kind and Knative
734
734
* Create a Persistent Volume Claim for local model deployment
735
735
* Preparing custom model for Kserve inference
736
736
* Deploying model using a KServe InferenceService
737
737
* Complete a sample request and plot predictions
738
738
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*
740
740
741
741
Let's get started!
742
742
743
743
## Pre-reqs: Setting up Python and Jupyter Lab environment
744
744
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
746
746
747
747
``` cwl
748
748
sudo apt-get update && sudo apt-get install python3.8-venv
@@ -756,11 +756,11 @@ jupyter lab --ip=0.0.0.0 \
756
756
--NotebookApp.password=''
757
757
```
758
758
759
- ## Install Kserve Natively using Kind and Knative
759
+ ## Install Kserve natively using Kind and Knative
760
760
761
761
### Install Kind
762
762
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:
764
764
765
765
* ` curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.18.0/kind-linux-amd64 `
766
766
* ` chmod +x ./kind `
0 commit comments