Skip to content

Commit 3dca2a3

Browse files
committed
Writing
1 parent 2a736f6 commit 3dca2a3

File tree

1 file changed

+56
-3
lines changed

1 file changed

+56
-3
lines changed

articles/machine-learning/how-to-manage-runs.md

Lines changed: 56 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,13 @@ ms.author: roastala
1010
author: rastala
1111
manager: cgronlun
1212
ms.reviewer: nibaccam
13-
ms.date: 11/04/2019
14-
13+
ms.date: 01/09/2020
1514
---
1615

1716
# Start, monitor, and cancel training runs in Python
1817
[!INCLUDE [applies-to-skus](../../includes/aml-applies-to-basic-enterprise-sku.md)]
1918

20-
The [Azure Machine Learning SDK for Python](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py) and [Machine Learning CLI](reference-azure-machine-learning-cli.md) provide various methods to monitor, organize, and manage your runs for training and experimentation.
19+
The [Azure Machine Learning SDK for Python](https://docs.microsoft.com/python/api/overview/azure/ml/intro?view=azure-ml-py), [Machine Learning CLI](reference-azure-machine-learning-cli.md), and [Azure Machine Learning studio](https://ml.azure.com) provide various methods to monitor, organize, and manage your runs for training and experimentation.
2120

2221
This article shows examples of the following tasks:
2322

@@ -101,6 +100,27 @@ To start a run of your experiment, use the following steps:
101100

102101
For more information, see [az ml run submit-script](https://docs.microsoft.com/cli/azure/ext/azure-cli-ml/ml/run?view=azure-cli-latest#ext-azure-cli-ml-az-ml-run-submit-script).
103102

103+
### Using Azure Machine Learning studio
104+
105+
To start a submit a pipeline run in the designer (preview), use the following steps:
106+
107+
1. Set a default compute target for your pipeline.
108+
109+
1. Select **Run** at the top of the pipeline canvas.
110+
111+
1. Select an Experiment to group your pipeline runs.
112+
113+
You can also resubmit pipeline runs using the same parameters and settings in the studio.
114+
115+
1. In the **Pipeline** section of the studio, select a pipeline run number.
116+
117+
1. Select the **Child runs** tab.
118+
119+
1. Select **Resubmit**.
120+
121+
> [!TIP]
122+
> You can **Clone** a pipeline run to create an editable pipeline draft. This lets you use a previous pipeline run as a starting point for a new pipeline.
123+
104124
## Monitor the status of a run
105125

106126
### Using the SDK
@@ -156,6 +176,22 @@ print(notebook_run.get_status())
156176

157177
For more information, see [az ml run show](https://docs.microsoft.com/cli/azure/ext/azure-cli-ml/ml/run?view=azure-cli-latest#ext-azure-cli-ml-az-ml-run-show).
158178

179+
180+
### Using Azure Machine Learning studio
181+
182+
To view the number of active runs for your experiment in the studio.
183+
184+
1. Navigate to the **Experiments** section..
185+
186+
1. Select an experiment.
187+
188+
In the experiment page, you can see the number of active compute targets and the duration for each run.
189+
190+
1. Select a specific run number.
191+
192+
1. In the **Logs** tab, you can find diagnostic and error logs for your pipeline run.
193+
194+
159195
## Cancel or fail runs
160196

161197
If you notice a mistake or if your run is taking too long to finish, you can cancel the run.
@@ -191,6 +227,17 @@ az ml run cancel -r runid -w workspace_name -e experiment_name
191227

192228
For more information, see [az ml run cancel](https://docs.microsoft.com/cli/azure/ext/azure-cli-ml/ml/run?view=azure-cli-latest#ext-azure-cli-ml-az-ml-run-cancel).
193229

230+
### Using Azure Machine Learning studio
231+
232+
To cancel a run in the studio, using the following steps:
233+
234+
1. Go to the running pipeline in either the **Experiments** or **Pipelines** section.
235+
236+
1. Select the pipeline run number you want to cancel.
237+
238+
1. In the toolbar, select **Cancel**
239+
240+
194241
## Create child runs
195242

196243
Create child runs to group together related runs, such as for different hyperparameter-tuning iterations.
@@ -333,6 +380,12 @@ az ml run list --experiment-name experiment [?properties.author=='azureml-user'
333380

334381
For more information on querying Azure CLI results, see [Query Azure CLI command output](https://docs.microsoft.com/cli/azure/query-azure-cli?view=azure-cli-latest).
335382

383+
### Using Azure Machine Learning studio
384+
385+
1. Navigate to the **Pipelines** section.
386+
387+
1. Use the search bar to filter pipelines using tags, descriptions, experiment names, and submitter name.
388+
336389
## Example notebooks
337390

338391
The following notebooks demonstrate the concepts in this article:

0 commit comments

Comments
 (0)