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/service/how-to-use-mlflow.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,9 +24,9 @@ This article demonstrates how to use MLflow's tracking URI and logging API, coll
24
24
25
25
The below table summarizes the different clients that can use Azure Machine Learning service, and their respective function capabilities.
26
26
27
-
MLflow Tracking offers logging, as well as metric and artifact storage functionalities that were only previously available via the [Azure Machine Learning Python SDK](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py).
27
+
MLflow Tracking offers metric logging and artifact storage functionalities that are only otherwise available via the [Azure Machine Learning Python SDK](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py).
*[Install the Azure Machine Learning Python SDK on your local computer and create an Azure Machine Learning Workspace](setup-create-workspace.md#sdk). The SDK provides the connectivity for MLflow to access your workspace.
43
43
44
-
## Use MLflow Tracking on local runs
44
+
## Track local runs
45
45
46
46
Install the `azureml-contrib-run` package to use MLflow Tracking with Azure Machine Learning on your experiments locally run in a Jupyter Notebook or code editor.
47
47
@@ -78,7 +78,7 @@ with mlflow.start_run():
78
78
mlflow.log_metric('alpha', 0.03)
79
79
```
80
80
81
-
## Use MLflow Tracking with remote runs
81
+
## Track remote runs
82
82
83
83
Remote runs let you train your models on more powerful computes, such as GPU enabled virtual machines, or Machine Learning Compute clusters. See [Set up compute targets for model training](how-to-set-up-training-targets.md) to learn about different compute options.
0 commit comments