Skip to content

Commit 3ce7790

Browse files
committed
address PR feedback
1 parent ce635ce commit 3ce7790

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

how-to-use-azureml/azure-databricks/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,24 +21,24 @@ Notebook 6 is an Automated ML sample notebook for Classification.
2121

2222
Learn more about [how to use Azure Databricks as a development environment](https://docs.microsoft.com/azure/machine-learning/service/how-to-configure-environment#azure-databricks) for Azure Machine Learning service.
2323

24-
**Databricks as a Compute Target from AML Pipelines**
24+
**Databricks as a Compute Target from Azure ML Pipelines**
2525
You can use Azure Databricks as a compute target from [Azure Machine Learning Pipelines](https://docs.microsoft.com/en-us/azure/machine-learning/service/concept-ml-pipelines). Take a look at this notebook for details: [aml-pipelines-use-databricks-as-compute-target.ipynb](https://github.com/Azure/MachineLearningNotebooks/tree/master/how-to-use-azureml/azure-databricks/databricks-as-remote-compute-target/aml-pipelines-use-databricks-as-compute-target.ipynb).
2626

27-
# Linked Azure Databricks and Azure ML Workspaces (Preview)
27+
# Linked Azure Databricks and Azure Machine Learning Workspaces (Preview)
2828
Customers can now link Azure Databricks and AzureML Workspaces to better enable MLOps scenarios by [managing their tracking data in a single place when using the MLflow client](https://mlflow.org/docs/latest/tracking.html#mlflow-tracking) - the Azure ML workspace.
2929

3030
## Linking the Workspaces (Admin operation)
3131

32-
1. The Azure Databricks Azure portal blade now includes a new button to link an Azure ML workspace
32+
1. The Azure Databricks Azure portal blade now includes a new button to link an Azure ML workspace.
3333
![New ADB Portal Link button](./img/adb-link-button.png)
34-
2. Both a new or existing Azure ML Workspace can be linked in the resulting prompt. Follow any instructions to set up the Azure ML workspace.
34+
2. Both a new or existing Azure ML Workspace can be linked in the resulting prompt. Follow any instructions to set up the Azure ML Workspace.
3535
![Link Prompt](./img/link-prompt.png)
3636
3. After a successful link operation, you should see the Azure Databricks overview reflect the linked status
3737
![Linked Successfully](./img/adb-successful-link.png)
3838

3939
## Configure MLflow to send data to Azure ML (All roles)
4040

41-
1. Add azureml-mlflow as a library to any notebook or cluster that should send data to Azure ML. You can do this via
41+
1. Add azureml-mlflow as a library to any notebook or cluster that should send data to Azure ML. You can do this via:
4242
1. [DBUtils](https://docs.azuredatabricks.net/user-guide/dev-tools/dbutils.html#dbutils-library)
4343
```
4444
dbutils.library.installPyPI("azureml-mlflow")
@@ -50,17 +50,17 @@ Customers can now link Azure Databricks and AzureML Workspaces to better enable
5050
```
5151
adbazureml://${azuremlRegion}.experiments.azureml.net/history/v1.0/subscriptions/${azuremlSubscriptionId}/resourceGroups/${azuremlResourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/${azuremlWorkspaceName}
5252
```
53-
1. You can automatically configure this on your clusters using this helper script
54-
1. [AzureML Tracking Cluster Init Script](./linking/README.md)
55-
3. That's it! If configured correctly, you'll now be able to see your MLflow tracking data in both Azure ML (via the REST API and all clients) and Azure Databricks (in the MLflow UI and using the MLflow client)
53+
1. You can automatically configure this on your clusters for all subsequent notebook sessions using this helper script instead of manually setting the tracking URI in the notebook:
54+
* [AzureML Tracking Cluster Init Script](./linking/README.md)
55+
3. If configured correctly, you'll now be able to see your MLflow tracking data in both Azure ML (via the REST API and all clients) and Azure Databricks (in the MLflow UI and using the MLflow client)
5656
5757
5858
## Known Preview Limitations
59-
While we roll this experience out to customers for feedback, there are some known limitations we'd love comments on in addition to any other issues seen in your workflow
59+
While we roll this experience out to customers for feedback, there are some known limitations we'd love comments on in addition to any other issues seen in your workflow.
6060
### 1-to-1 Workspace linking
6161
Currently, an Azure ML Workspace can only be linked to one Azure Databricks Workspace at a time.
6262
### Data synchronization
63-
At the moment, data is only generated and sent to Azure ML as well for tracking. Editing tags via the Azure Databricks MLflow UI won't be reflected in the Azure ML UI.
63+
At the moment, data is only generated in the Azure Machine Learning workspace for tracking. Editing tags via the Azure Databricks MLflow UI won't be reflected in the Azure ML UI.
6464
### Java and R support
6565
The experience currently is only available from the Python MLflow client.
6666

0 commit comments

Comments
 (0)