You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-deploy-mlflow-models-online-endpoints.md
+7-9Lines changed: 7 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -51,9 +51,9 @@ For no-code-deployment, Azure Machine Learning:
51
51
52
52
Install the Azure Machine Learning SDK for Python.
53
53
54
-
```bash
55
-
pip install azure-ai-ml azure-identity
56
-
```
54
+
```bash
55
+
pip install azure-ai-ml azure-identity
56
+
```
57
57
58
58
# [Python (MLflow SDK)](#tab/mlflow)
59
59
@@ -440,7 +440,7 @@ version = registered_model.version
440
440
```
441
441
442
442
> [!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).
444
444
445
445
Use the following code to write the configuration to a file:
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:
627
627
628
628
1. Select __Endpoints__, and thenselectthe endpoint that you created.
629
629
630
630
1. Go to the __Test__ tab.
631
631
632
632
1. In the __Input__ box, paste the contents of the cli/endpoints/online/ncd/sample-request-sklearn.json file.
633
633
634
-
1. Select __Test__.
635
-
636
-
1. The output box displays the predictions.
634
+
1. Select __Test__. The output box displays the predictions.
637
635
638
636
---
639
637
@@ -686,7 +684,7 @@ You don't have to specify a scoring script in the deployment definition of an ML
686
684
You typically want to customize your MLflow model deployment in the following cases:
687
685
688
686
- 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.
690
688
- You need to do preprocessing or postprocessing in your scoring routine, because the model doesn't do this processing.
691
689
- The output of the model can't be nicely represented in tabular data. For instance, the output is a tensor that represents an image.
0 commit comments