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
> Azure Machine Learning workspaces are MLflow-compatible, which means you can use Azure Machine Learning workspaces in the same way that you use an MLflow tracking server. Such compatibility has the following advantages:
27
-
> *You can use Azure Machine Learning workspaces as your tracking server for any experiment you're running with MLflow, whether it runs on Azure Machine Learning or not. You only need to configure MLflow to point to the workspace where the tracking should happen.
28
-
> *There are not hosted instances of MLflow server running under the hood. The workspace can talk the MLflow protocol.
29
-
> * You can run any training routine that uses MLflow in Azure Machine Learning without any change. You can also manage the lifecycle using MLflow when connected to Azure Machine Learning.
27
+
> *We don't host MLflow server instances under the hood. The workspace can talk the MLflow standard.
28
+
> *You can use Azure Machine Learning workspaces as your tracking server for any MLflow code, whether it runs on Azure Machine Learning or not. You only need to configure MLflow to point to the workspace where the tracking should happen.
29
+
> * You can run any training routine that uses MLflow in Azure Machine Learning without any change.
30
30
31
31
32
32
## Tracking with MLflow
33
33
34
34
Azure Machine Learning uses MLflow Tracking for metric logging and artifact storage for your experiments. When connected to Azure Machine Learning, all tracking performed using MLflow is materialized in the workspace you are working on. To learn more about how to instrument your experiments for tracking experiments and training routines, see [Log metrics, parameters, and files with MLflow](how-to-log-view-metrics.md). You can also use MLflow to [Query & compare experiments and runs with MLflow](how-to-track-experiments-mlflow.md).
35
35
36
36
> [!TIP]
37
-
> __Why can't I track experiments using Azure Machine Learning SDK (v2)?__: Unlike the Azure Machine Learning SDK v1, there's no logging functionality in the SDK v2 and we recommend using MLflow for logging. By doing so, your training routines will be cloud-agnostic, achieving decoupling of data operations (what your training code does) from control operations (what your cloud provider requires for orchestration).
37
+
> Unlike the Azure Machine Learning SDK v1, there's no logging functionality in the SDK v2 and we recommend using MLflow for logging. By doing so, your training routines will be cloud-agnostic, achieving decoupling of data operations (what your training code does) from control operations (what your cloud provider requires for orchestration).
38
38
39
39
### Centralize tracking
40
40
@@ -89,8 +89,8 @@ Learn more at [Train machine learning models with MLflow projects and Azure Mach
89
89
90
90
### Example notebooks
91
91
92
-
*[Train an MLflow project on a local compute](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/track-and-monitor-experiments/using-mlflow/train-projects-local/train-projects-local.ipynb)
93
-
*[Train an MLflow project on remote compute](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/track-and-monitor-experiments/using-mlflow/train-projects-remote/train-projects-remote.ipynb).
92
+
*[Track an MLflow project in Azure Machine Learning workspaces](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/track-and-monitor-experiments/using-mlflow/train-projects-local/train-projects-local.ipynb)
93
+
*[Train and run an MLflow project on Azure Machine Learning jobs](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/track-and-monitor-experiments/using-mlflow/train-projects-remote/train-projects-remote.ipynb).
94
94
95
95
## MLflow SDK, Azure Machine Learning v2, and Azure Machine Learning studio capabilities
0 commit comments