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
The default value will be 2, user can set the value with a min of 1 and max of 5. For weekly backup policies, the period is set to 5 and cannot be changed.
Copy file name to clipboardExpand all lines: articles/billing/billing-understand-reserved-instance-usage-ea.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,14 +58,14 @@ Other information available in Azure usage data has changed:
58
58
59
59
You can get the data using the API or download it from Azure portal.
60
60
61
-
You call the [Usage Details API](/rest/api/consumption/usagedetails/list)with API version "2019-04-01-preview"to get the new data. For details about terminology, see [usage terms](billing-understand-your-usage.md). The caller should be an Enterprise Administrator for the enterprise agreement using the [EA portal](https://ea.azure.com). Read-only Enterprise Administrators can also get the data.
61
+
You call the [Usage Details API](/rest/api/consumption/usagedetails/list) to get the new data. For details about terminology, see [usage terms](billing-understand-your-usage.md). The caller should be an Enterprise Administrator for the enterprise agreement using the [EA portal](https://ea.azure.com). Read-only Enterprise Administrators can also get the data.
62
62
63
63
The data is not available in [Reporting APIs for Enterprise customers - Usage Details](/rest/api/billing/enterprise/billing-enterprise-api-usage-detail).
For more information about {enrollmentId} and {billingPeriodId}, see the [Usage Details – List](https://docs.microsoft.com/rest/api/consumption/usagedetails/list) API article.
Copy file name to clipboardExpand all lines: articles/event-hubs/event-hubs-java-get-started-send.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -178,11 +178,11 @@ To use EventProcessorHost, you must have an [Azure Storage account][Azure Storag
178
178
1. Sign in the [Azure portal](https://portal.azure.com), and select **Create a resource** on the left-hand side of the screen.
179
179
2. Select **Storage**, then select **Storage account**. In the **Create storage account** window, type a name for the storage account. Complete the rest of the fields, select your desired region, and then select **Create**.
Copy file name to clipboardExpand all lines: articles/machine-learning/service/how-to-use-mlflow.md
+16-2Lines changed: 16 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ ms.service: machine-learning
9
9
ms.subservice: core
10
10
ms.reviewer: nibaccam
11
11
ms.topic: conceptual
12
-
ms.date: 08/07/2019
12
+
ms.date: 09/23/2019
13
13
ms.custom: seodec18
14
14
---
15
15
@@ -141,6 +141,7 @@ MLflow Tracking with Azure Machine Learning lets you store the logged metrics an
141
141
To run your Mlflow experiments with Azure Databricks, you need to first create an [Azure Databricks workspace and cluster](https://docs.microsoft.com/azure/azure-databricks/quickstart-create-databricks-workspace-portal)
142
142
143
143
In your cluster, be sure to install the *azureml-mlflow* library from PyPi, to ensure that your cluster has access to the necessary functions and classes.
144
+
From here, import your experiment notebook, attach your cluster to it and run your experiment.
#### Connect your Azure Databricks and Azure Machine Learning workspaces
186
+
187
+
On the [Azure portal](https://ms.portal.azure.com), you can link your Azure Databricks (ADB) workspace to a new or existing Azure Machine Learning workspace. To do so, navigate to your ADB workspace and select the **Link Azure Machine Learning workspace** button on the bottom right. Linking your workspaces enables you to track your experiment data in the Azure Machine Learning workspace.
188
+
184
189
### Link MLflow tracking to your workspace
190
+
185
191
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.
186
192
193
+
#### Directly set MLflow Tracking in your notebook
194
+
187
195
```python
188
196
uri = ws.get_mlflow_tracking_uri()
189
197
mlflow.set_tracking_uri(uri)
@@ -196,6 +204,12 @@ import mlflow
196
204
mlflow.log_metric('epoch_loss', loss.item())
197
205
```
198
206
207
+
#### Automate setting MLflow Tracking
208
+
209
+
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).
210
+
211
+
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.
212
+
199
213
## View metrics and artifacts in your workspace
200
214
201
215
The metrics and artifacts from MLflow logging are kept in your workspace. To view them anytime, navigate to your workspace and find the experiment by name on the [Azure portal](https://portal.azure.com) or in your [workspace landing page (preview)](https://ml.azure.com). Or run the below code.
0 commit comments