Skip to content

Commit 5875284

Browse files
committed
Fix warning; adjust language
1 parent e510028 commit 5875284

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

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

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ For no-code-deployment, Azure Machine Learning:
5151

5252
Install the Azure Machine Learning SDK for Python.
5353

54-
```bash
55-
pip install azure-ai-ml azure-identity
56-
```
54+
```bash
55+
pip install azure-ai-ml azure-identity
56+
```
5757

5858
# [Python (MLflow SDK)](#tab/mlflow)
5959

@@ -440,7 +440,7 @@ version = registered_model.version
440440
```
441441
442442
> [!NOTE]
443-
> For details about the full specification of this configuration, see [Managed online deployment schema (v2)](reference-yaml-deployment-managed-online.md).
443+
> For information about the full specification of this configuration, see [CLI (v2) managed online deployment YAML schema](reference-yaml-deployment-managed-online.md).
444444
445445
Use the following code to write the configuration to a file:
446446
@@ -623,17 +623,15 @@ deployment_client.predict(endpoint=endpoint_name, df=samples)
623623

624624
# [Studio](#tab/studio)
625625

626-
MLflow models can use the __Test__ tab to create invocations to the created endpoints:
626+
When you use an MLflow model, you can use the __Test__ tab to create invocations to created endpoints:
627627

628628
1. Select __Endpoints__, and then select the endpoint that you created.
629629

630630
1. Go to the __Test__ tab.
631631

632632
1. In the __Input__ box, paste the contents of the cli/endpoints/online/ncd/sample-request-sklearn.json file.
633633

634-
1. Select __Test__.
635-
636-
1. The output box displays the predictions.
634+
1. Select __Test__. The output box displays the predictions.
637635

638636
---
639637

@@ -686,7 +684,7 @@ You don't have to specify a scoring script in the deployment definition of an ML
686684
You typically want to customize your MLflow model deployment in the following cases:
687685

688686
- The model doesn't have a `PyFunc` flavor.
689-
- You need to customize the way the model is run. For instance, you need to use `mlflow.<flavor>.load_model()` to use a specific flavor to load the model.
687+
- You need to customize the way you run the model. For instance, you need to use `mlflow.<flavor>.load_model()` to use a specific flavor to load the model.
690688
- You need to do preprocessing or postprocessing in your scoring routine, because the model doesn't do this processing.
691689
- The output of the model can't be nicely represented in tabular data. For instance, the output is a tensor that represents an image.
692690

0 commit comments

Comments
 (0)