Skip to content

Commit fe18845

Browse files
authored
Update how-to-track-experiments-mlflow.md
1 parent b8e1326 commit fe18845

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

articles/machine-learning/how-to-track-experiments-mlflow.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ ms.custom: how-to, devx-track-python, ignite-2022
1515

1616
# Query & compare experiments and runs with MLflow
1717

18-
Experiments and runs tracking information in Azure Machine Learning can be queried using MLflow. You don't need to install any specific SDK to manage what happens inside of a training job, creating a more seamless transition between local runs and the cloud by removing cloud-specific dependencies.
19-
20-
> [!NOTE]
21-
> The Azure Machine Learning Python SDK v2 does not provide native logging or tracking capabilities. This applies not just for logging but also for querying the metrics logged. Instead, use MLflow to manage experiments and runs. This article explains how to use MLflow to manage experiments and runs in Azure Machine Learning.
18+
Experiments and runs tracking information in Azure Machine Learning can be queried using MLflow. You don't need to install any specific SDK to manage what happens inside of a training job, creating a more seamless transition between local runs and the cloud by removing cloud-specific dependencies. In this article, you'll learn how to query and compare experiments and runs in your workspace using Azure Machine Learning and MLflow SDK in Python.
2219

2320
MLflow allows you to:
2421

2522
* Create, query, delete and search for experiments in a workspace.
2623
* Query, delete, and search for runs in a workspace.
2724
* Track and retrieve metrics, parameters, artifacts and models from runs.
2825

29-
In this article, you'll learn how to query and compare experiments and runs in your workspace using Azure Machine Learning and MLflow SDK in Python. See [Support matrix for querying runs and experiments in Azure Machine Learning](#support-matrix-for-querying-runs-and-experiments) for a detailed comparison between MLflow Open-Source and MLflow when connected to Azure Machine Learning.
26+
See [Support matrix for querying runs and experiments in Azure Machine Learning](#support-matrix-for-querying-runs-and-experiments) for a detailed comparison between MLflow Open-Source and MLflow when connected to Azure Machine Learning.
27+
28+
> [!NOTE]
29+
> The Azure Machine Learning Python SDK v2 does not provide native logging or tracking capabilities. This applies not just for logging but also for querying the metrics logged. Instead, use MLflow to manage experiments and runs. This article explains how to use MLflow to manage experiments and runs in Azure Machine Learning.
3030
3131
### Prerequisites
3232

@@ -57,10 +57,12 @@ for exp in experiments:
5757

5858
## Search experiments
5959

60-
The `search_experiments()` method available since Mlflow 2.0 allows to search experiment matching a criteria using `filter_string`. The following query retrives three experiments with differents IDs.
60+
The `search_experiments()` method available since Mlflow 2.0 allows searching experiment matching a criteria using `filter_string`. The following query retrieves three experiments with different IDs.
6161

6262
```python
63-
mlflow.search_experiments(filter_string="experiment_id IN ('CDEFG-1234-5678-90AB', '1234-5678-90AB-CDEFG', '5678-1234-90AB-CDEFG')")
63+
mlflow.search_experiments(filter_string="experiment_id IN (
64+
'CDEFG-1234-5678-90AB', '1234-5678-90AB-CDEFG', '5678-1234-90AB-CDEFG')"
65+
)
6466
```
6567

6668
## Getting a specific experiment

0 commit comments

Comments
 (0)