Skip to content

Commit 35aea3d

Browse files
authored
Update how-to-manage-models-mlflow.md
1 parent 3d3e90e commit 35aea3d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Azure Machine Learning supports MLflow for model management. This represents a c
3131

3232
## Registering new models in the registry
3333

34-
The models registry offer a convenient and centralized way to manage models in a workspace. Each workspace has its own independent models registry. The following section explains multiple way to register models in the registry using MLflow SDK.
34+
The models registry offer a convenient and centralized way to manage models in a workspace. Each workspace has its own independent models registry. The following section explains multiple ways to register models in the registry using MLflow SDK.
3535

3636
### Creating models from an existing run
3737

@@ -85,7 +85,7 @@ for model in client.search_registered_models():
8585
print(f"{model.name}")
8686
```
8787

88-
Use `order_by` to order by an specific property like `name`, `version`, `creation_timestamp`, and `last_updated_timestamp`:
88+
Use `order_by` to order by a specific property like `name`, `version`, `creation_timestamp`, and `last_updated_timestamp`:
8989

9090
```python
9191
client.search_registered_models(order_by=["name ASC"])

0 commit comments

Comments
 (0)