Skip to content

Commit 160f057

Browse files
committed
section distinction
1 parent e71a12a commit 160f057

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

articles/machine-learning/service/how-to-use-mlflow.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,7 @@ On the [Azure portal](https://ms.portal.azure.com), you can link your Azure Data
190190

191191
After you instantiate your workspace, set the MLflow tracking URI. By doing so, you link the MLflow tracking to Azure Machine Learning workspace. After this, all your experiments will land in the managed Azure Machine Learning tracking service.
192192

193+
#### Directly set MLflow Tracking in you notebook
193194

194195
```python
195196
uri = ws.get_mlflow_tracking_uri()
@@ -203,6 +204,8 @@ import mlflow
203204
mlflow.log_metric('epoch_loss', loss.item())
204205
```
205206

207+
#### Automate setting MLflow Tracking
208+
206209
Instead of manually setting the tracking URI in every subsequent experiment notebook session on your clusters, do so automatically using this [Azure Machine Learning Tracking Cluster Init script](https://github.com/Azure/MachineLearningNotebooks/blob/3ce779063b000e0670bdd1acc6bc3a4ee707ec13/how-to-use-azureml/azure-databricks/linking/README.md).
207210

208211
When configured correctly, you are able to see your MLflow tracking data in Azure Machine Learning's REST API and all clients, and in Azure Databricks via the MLflow user interface or by using the MLflow client.

0 commit comments

Comments
 (0)