Skip to content

Commit 08d2468

Browse files
Merge pull request #259734 from santiagxf/santiagxf-patch-2
Update how-to-deploy-mlflow-models-online-endpoints.md
2 parents a85068f + ea78e9d commit 08d2468

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/machine-learning/how-to-deploy-mlflow-models-online-endpoints.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ Use the following steps to deploy an MLflow model with a custom scoring script.
607607
```pythonS
608608
environment = Environment(
609609
conda_file="sklearn-diabetes/environment/conda.yml",
610-
image="mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04:latest",
610+
image="mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04:latest",
611611
)
612612
```
613613
@@ -623,7 +623,7 @@ Use the following steps to deploy an MLflow model with a custom scoring script.
623623
1. Select the tab __Custom environments__ > __Create__.
624624
1. Enter the name of the environment, in this case `sklearn-mlflow-online-py37`.
625625
1. On __Select environment type__ select __Use existing docker image with conda__.
626-
1. On __Container registry image path__, enter `mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04`.
626+
1. On __Container registry image path__, enter `mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04`.
627627
1. On __Customize__ section copy the content of the file `sklearn-diabetes/environment/conda.yml` we introduced before.
628628
1. Click on __Next__ and then on __Create__.
629629
1. The environment is ready to be used.
@@ -642,7 +642,7 @@ Use the following steps to deploy an MLflow model with a custom scoring script.
642642
endpoint_name: my-endpoint
643643
model: azureml:sklearn-diabetes@latest
644644
environment:
645-
image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04
645+
image: mcr.microsoft.com/azureml/openmpi4.1.0-ubuntu22.04
646646
conda_file: sklearn-diabetes/environment/conda.yml
647647
code_configuration:
648648
code: sklearn-diabetes/src

0 commit comments

Comments
 (0)