Skip to content

Commit b9aa23d

Browse files
committed
edits
1 parent a3e470e commit b9aa23d

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ client.search_registered_models(order_by=["name ASC"])
111111
```
112112

113113
> [!NOTE]
114-
> **MLflow 2.0 advisory**: For MLflow versions earlier than 2.0, use the `MlflowClient.list_registered_models()` method instead.
114+
> For MLflow versions earlier than 2.0, use the `MlflowClient.list_registered_models()` method instead.
115115
116116
### Get specific model versions
117117

@@ -144,7 +144,7 @@ To understand the differences between the functions `mlflow.<flavor>.load_model(
144144
MLflow supports stages for a model to manage the model lifecycle. The model version can transition from one stage to another. Stages are assigned to specific versions for a model. A model can have multiple versions on different stages.
145145

146146
> [!IMPORTANT]
147-
> Stages can be accessed only by using the MLflow SDK. They aren't visible in the [Azure Machine Learning studio](https://ml.azure.com). They can't be retrieved by using the Azure Machine Learning SDK, the Azure Machine Learning CLI, or the Azure Machine Learning REST API. Deployment from a specific model stage isn't currently supported.
147+
> Stages can be accessed only by using the MLflow SDK. They aren't visible in the [Azure Machine Learning studio](https://ml.azure.com). Stages can't be retrieved by using the Azure Machine Learning SDK, the Azure Machine Learning CLI, or the Azure Machine Learning REST API. Deployment from a specific model stage isn't currently supported.
148148
149149
### Query model stages
150150

@@ -163,7 +163,7 @@ client.get_latest_versions(model_name, stages=["Staging"])
163163
Multiple model versions can be in the same stage at the same time in MLflow. In the previous example, the method returns the latest version (most recently published) among all versions for the stage.
164164

165165
> [!IMPORTANT]
166-
> When you work with the MLflow SDK, keep in mind that stage names are case sensitive.
166+
> In the MLflow SDK, stage names are case sensitive.
167167
168168
### Transition models
169169

@@ -197,7 +197,7 @@ model = mlflow.pyfunc.load_model(f"models:/{model_name}/Staging")
197197

198198
Editing registered models is supported in both MLflow and Azure Machine Learning, but there are some important differences. The following sections describe some options.
199199

200-
> [!WARNING]
200+
> [!NOTE]
201201
> Renaming models isn't supported in Azure Machine Learning because model objects are immmutable.
202202
203203
### Edit model description and tags
@@ -256,11 +256,11 @@ The MLflow client exposes several methods to retrieve and manage models. The fol
256256

257257
Table footnotes:
258258

259-
- **1** Use Uniform Resource Identifiers (URIs) with the format `runs:/<ruin-id>/<path>`.
260-
- **2** Use URIs with the format `azureml://jobs/<job-id>/outputs/artifacts/<path>`.
261-
- **3** Registered models are immutable objects in Azure Machine Learning.
262-
- **4** Use the search box in Azure Machine Learning studio. Partial matching is supported.
263-
- **5** Use [registries](how-to-manage-registries.md) to move models across different workspaces and preserve lineage.
259+
- 1: Use Uniform Resource Identifiers (URIs) with the format `runs:/<ruin-id>/<path>`.
260+
- 2: Use URIs with the format `azureml://jobs/<job-id>/outputs/artifacts/<path>`.
261+
- 3: Registered models are immutable objects in Azure Machine Learning.
262+
- 4: Use the search box in Azure Machine Learning studio. Partial matching is supported.
263+
- 5: Use [registries](how-to-manage-registries.md) to move models across different workspaces and preserve lineage.
264264

265265
## Related content
266266

articles/machine-learning/includes/machine-learning-mlflow-prereqs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ms.date: 08/08/2024
66
ms.author: fasantia
77
---
88

9-
- Install the MLflow SDK package `mlflow` and the Azure Machine Learning plug-in for MLflow `azureml-mlflow`:
9+
- Install the MLflow SDK package `mlflow` and the Azure Machine Learning `azureml-mlflow` plug-in for MLflow:
1010

1111
```bash
1212
pip install mlflow azureml-mlflow

0 commit comments

Comments
 (0)