Skip to content

Commit 9b26883

Browse files
authored
Merge pull request #97941 from Blackmist/compute-runs
adding info on viewing runs for a compute target via studio
2 parents 506718a + 579506f commit 9b26883

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

articles/machine-learning/service/how-to-track-experiments.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ms.service: machine-learning
1010
ms.subservice: core
1111
ms.workload: data-services
1212
ms.topic: conceptual
13-
ms.date: 09/11/2019
13+
ms.date: 12/05/2019
1414

1515
ms.custom: seodec18
1616
---
@@ -228,6 +228,25 @@ The [Start, monitor, and cancel training runs](how-to-manage-runs.md) article hi
228228

229229
## View run details
230230

231+
### View active/queued runs from the browser
232+
233+
Compute targets used to train models are a shared resource. As such, they may have multiple runs queued or active at a given time. To see the runs for a specific compute target from your browser, use the following steps:
234+
235+
1. From the [Azure Machine Learning studio](https://ml.azure.com/), select your workspace, and then select __Compute__ from the left side of the page.
236+
237+
1. Select __Training Clusters__ to display a list of compute targets used for training. Then select the cluster.
238+
239+
![Select the training cluster](./media/how-to-track-experiments/select-training-compute.png)
240+
241+
1. Select __Runs__. The list of runs that use this cluster is displayed. To view details for a specific run, use the link in the __Run__ column. To view details for the experiment, use the link in the __Experiment__ column.
242+
243+
![Select runs for training cluster](./media/how-to-track-experiments/show-runs-for-compute.png)
244+
245+
> [!TIP]
246+
> A run can contain child runs, so one training job can result in multiple entries.
247+
248+
Once a run completes, it is no longer displayed on this page. To view information on completed runs, visit the __Experiments__ section of the studio and select the experiment and run. For more information, see the [Query run metrics](#queryrunmetrics) section.
249+
231250
### Monitor run with Jupyter notebook widget
232251
When you use the **ScriptRunConfig** method to submit runs, you can watch the progress of the run with a [Jupyter widget](https://docs.microsoft.com/python/api/azureml-widgets/azureml.widgets?view=azure-ml-py). Like the run submission, the widget is asynchronous and provides live updates every 10-15 seconds until the job completes.
233252

@@ -267,6 +286,7 @@ To view further details of a pipeline click on the Pipeline you would like to ex
267286

268287
Model training and monitoring occur in the background so that you can run other tasks while you wait. You can also wait until the model has completed training before running more code. When you use **ScriptRunConfig**, you can use ```run.wait_for_completion(show_output = True)``` to show when the model training is complete. The ```show_output``` flag gives you verbose output.
269288

289+
<a id="queryrunmetrics"></a>
270290

271291
### Query run metrics
272292

43.9 KB
Loading
51.7 KB
Loading

0 commit comments

Comments
 (0)