Skip to content

Commit f64e99f

Browse files
authored
Apply suggestions from code review
Edited for Acro Correctness and Words & Phrases.
1 parent f153c7c commit f64e99f

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,11 @@ There are three workflows for deploying MLflow models to Azure ML:
6363

6464
- [Deploy using the MLflow plugin](#deploy-using-the-mlflow-plugin)
6565
- [Deploy using CLI (v2)](#deploy-using-cli-v2)
66-
- [Deploy using Azure Machine Learning Studio](#deploy-using-azure-machine-learning-studio)
66+
- [Deploy using Azure Machine Learning studio](#deploy-using-azure-machine-learning-studio)
6767

6868
### Which option to use?
6969

70-
If you are familiar with MLflow or your platform support MLflow natively (like Azure Databricks) and you wish to continue using the same set of methods, use the `azureml-mlflow` plugin. On the other hand, if you are more familiar with the [Azure ML CLI v2](concept-v2.md), you want to automate deployments using automation pipelines, or you want to keep deployments configuration in a git repository; we recommend you to use the [Azure ML CLI v2](concept-v2.md). If you want to quickly deploy and test models trained with MLflow, you can use [Azure Machine Learning Studio](https://ml.azure.com) UI deployment.
70+
If you are familiar with MLflow or your platform support MLflow natively (like Azure Databricks) and you wish to continue using the same set of methods, use the `azureml-mlflow` plugin. On the other hand, if you are more familiar with the [Azure ML CLI v2](concept-v2.md), you want to automate deployments using automation pipelines, or you want to keep deployments configuration in a git repository; we recommend you to use the [Azure ML CLI v2](concept-v2.md). If you want to quickly deploy and test models trained with MLflow, you can use [Azure Machine Learning studio](https://ml.azure.com) UI deployment.
7171

7272
## Deploy using the MLflow plugin
7373

@@ -248,7 +248,7 @@ This example shows how you can deploy an MLflow model to an online endpoint usin
248248

249249
:::code language="azurecli" source="~/azureml-examples-main/cli/deploy-managed-online-endpoint-mlflow.sh" ID="create_sklearn_deployment":::
250250

251-
## Deploy using Azure Machine Learning Studio
251+
## Deploy using Azure Machine Learning studio
252252

253253
This example shows how you can deploy an MLflow model to an online endpoint using [Azure Machine Learning studio](https://ml.azure.com).
254254

@@ -269,17 +269,17 @@ This example shows how you can deploy an MLflow model to an online endpoint usin
269269

270270
1. When you select a model registered in MLflow format, in the Environment step of the wizard, you don't need a scoring script or an environment.
271271

272-
:::image type="content" source="media/how-to-deploy-mlflow-models-online-endpoints/ncd-wizard.png" lightbox="media/how-to-deploy-mlflow-models-online-endpoints/ncd-wizard.png" alt-text="Screenshot showing no code and environment needed for MLflow models":::
272+
:::image type="content" source="media/how-to-deploy-mlflow-models-online-endpoints/ncd-wizard.png" lightbox="media/how-to-deploy-mlflow-models-online-endpoints/ncd-wizard.png" alt-text="Screenshot showing no code and environment needed for MLflow models.":::
273273

274274
1. Complete the wizard to deploy the model to the endpoint.
275275

276-
:::image type="content" source="media/how-to-deploy-mlflow-models-online-endpoints/review-screen-ncd.png" lightbox="media/how-to-deploy-mlflow-models-online-endpoints/review-screen-ncd.png" alt-text="Screenshot showing NCD review screen":::
276+
:::image type="content" source="media/how-to-deploy-mlflow-models-online-endpoints/review-screen-ncd.png" lightbox="media/how-to-deploy-mlflow-models-online-endpoints/review-screen-ncd.png" alt-text="Screenshot showing NCD review screen.":::
277277

278278
# [Models page](#tab/models)
279279

280280
1. Select the MLflow model, and then select __Deploy__. When prompted, select __Deploy to real-time endpoint__.
281281

282-
:::image type="content" source="media/how-to-deploy-mlflow-models-online-endpoints/deploy-from-models-ui.png" lightbox="media/how-to-deploy-mlflow-models-online-endpoints/deploy-from-models-ui.png" alt-text="Screenshot showing how to deploy model from Models UI":::
282+
:::image type="content" source="media/how-to-deploy-mlflow-models-online-endpoints/deploy-from-models-ui.png" lightbox="media/how-to-deploy-mlflow-models-online-endpoints/deploy-from-models-ui.png" alt-text="Screenshot showing how to deploy model from Models UI.":::
283283

284284
1. Complete the wizard to deploy the model to the endpoint.
285285

@@ -298,7 +298,7 @@ This section helps you understand how to deploy models to an online endpoint onc
298298
299299
# [Azure Machine Learning studio](#tab/studio)
300300

301-
:::image type="content" source="media/how-to-deploy-mlflow-models-online-endpoints/download-output-logs.png" lightbox="media/how-to-deploy-mlflow-models-online-endpoints/download-output-logs.png" alt-text="Screenshot showing how to download Outputs and logs from Experimentation run":::
301+
:::image type="content" source="media/how-to-deploy-mlflow-models-online-endpoints/download-output-logs.png" lightbox="media/how-to-deploy-mlflow-models-online-endpoints/download-output-logs.png" alt-text="Screenshot showing how to download Outputs and logs from Experimentation run.":::
302302

303303
# [CLI](#tab/cli)
304304

articles/machine-learning/how-to-use-mlflow-azure-databricks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ mlflow.log_metric('epoch_loss', loss.item())
116116

117117
If you prefer to manage your tracked experiments in a centralized location, you can set MLflow tracking to **only** track in your Azure Machine Learning workspace. This configuration has the advantage of enabling easier path to deployment using Azure Machine Learning deployment options.
118118

119-
You have to configure the MLflow tracking URI to point exclusively to Azure Machine Learning, as it is demostrated in the following example:
119+
You have to configure the MLflow tracking URI to point exclusively to Azure Machine Learning, as it is demonstrated in the following example:
120120

121121
# [Using the Azure ML SDK v2](#tab/sdkv2)
122122

0 commit comments

Comments
 (0)