Skip to content

Commit 059e020

Browse files
authored
Update how-to-deploy-mlflow-models-online-progressive.md
1 parent 995c243 commit 059e020

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ ms.devlang: azurecli
1616

1717
# Progressive rollout of MLflow models to Online Endpoints
1818

19-
In this article, you'll learn how you can progressively update and deploy MLflow models to Online Endpoints without causing service disruption. You'll use blue-green deployment, also known as a safe rollout strategy, to introduce a new version of a web service to production. This strategy will allow you to roll out your new version of the web service to a small subset of users or requests before rolling it out completely.
19+
In this article, you learn how you can progressively update and deploy MLflow models to Online Endpoints without causing service disruption. You use blue-green deployment, also known as a safe rollout strategy, to introduce a new version of a web service to production. This strategy will allow you to roll out your new version of the web service to a small subset of users or requests before rolling it out completely.
2020

2121
## About this example
2222

@@ -59,7 +59,7 @@ Additionally, you will need to:
5959
pip install mlflow azureml-mlflow
6060
```
6161

62-
- If you are not running in Azure Machine Learning compute, configure the MLflow tracking URI or MLflow's registry URI to point to the workspace you are working on. See [Configure MLflow for Azure Machine Learning](how-to-use-mlflow-configure-tracking.md) for more details.
62+
- If you are not running in Azure Machine Learning compute, configure the MLflow tracking URI or MLflow's registry URI to point to the workspace you are working on. Learn how to [configure MLflow for Azure Machine Learning](how-to-use-mlflow-configure-tracking.md).
6363
6464
---
6565
@@ -221,7 +221,7 @@ We are going to exploit this functionality by deploying multiple versions of the
221221
222222
# [Python (MLflow SDK)](#tab/mlflow)
223223
224-
We can configure the properties of this endpoint using a configuration file. In this case, we are configuring the authentication mode of the endpoint to be "key".
224+
We can configure the properties of this endpoint using a configuration file. We configure the authentication mode of the endpoint to be "key" in the following example:
225225
226226
```python
227227
endpoint_config = {
@@ -281,11 +281,11 @@ We are going to exploit this functionality by deploying multiple versions of the
281281

282282
# [Python (MLflow SDK)](#tab/mlflow)
283283

284-
This functionality is not available in the MLflow SDK. Go to [Azure Machine Learning studio](https://ml.azure.com), navigate to the endpoint and retrieve the secret key from there.
284+
This functionality is not available in the MLflow SDK. Go to [Azure Machine Learning studio](https://ml.azure.com), navigate to the endpoint, and retrieve the secret key from there.
285285

286286
### Create a blue deployment
287287

288-
So far, the endpoint is empty. There are no deployments on it. Let's create the first one by deploying the same model we were working on before. We will call this deployment "default" and it will represent our "blue deployment".
288+
So far, the endpoint is empty. There are no deployments on it. Let's create the first one by deploying the same model we were working on before. We will call this deployment "default", representing our "blue deployment".
289289
290290
1. Configure the deployment
291291

0 commit comments

Comments
 (0)