Skip to content

Commit 27b146c

Browse files
authored
Merge pull request #207424 from amibp/main
Adding monitoring tab preview to public docs
2 parents 6bd1695 + e946c36 commit 27b146c

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

articles/machine-learning/how-to-track-monitor-analyze-runs.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ This article shows how to do the following tasks:
2727
* Run search over your job history.
2828
* Cancel or fail jobs.
2929
* Monitor the job status by email notification.
30+
* Monitor your job resources (preview)
3031

3132

3233
> [!TIP]
@@ -139,6 +140,16 @@ To cancel a job in the studio, using the following steps:
139140

140141
1. See [how to create and manage log alerts using Azure Monitor](../azure-monitor/alerts/alerts-log.md).
141142

143+
## Monitor your job resources (preview)
144+
145+
Navigate to your job in the studio and select the Monitoring tab. This view provides insights on your job's resources on a 30 day rolling basis.
146+
147+
:::image type="content" source="media/how-to-track-monitor-analyze-runs/monitoring-tab.png" alt-text="Screenshot of Monitoring tab showing resources the selected job has used.":::
148+
149+
>[!NOTE]
150+
>This view supports only compute that is managed by AzureML.
151+
>Jobs with a runtime of less than 5 minutes will not have enough data to populate this view.
152+
142153

143154
## Next steps
144155

articles/machine-learning/how-to-tune-hyperparameters.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ Control your resource budget by setting limits for your sweep job.
328328

329329
* `max_total_trials`: Maximum number of trial jobs. Must be an integer between 1 and 1000.
330330
* `max_concurrent_trials`: (optional) Maximum number of trial jobs that can run concurrently. If not specified, all jobs launch in parallel. If specified, must be an integer between 1 and 100.
331-
* `timeout`: Maximum time in minutes the entire sweep job is allowed to run. Once this limit is reached the system will cancel the sweep job, including all its trials.
331+
* `timeout`: Maximum time in seconds the entire sweep job is allowed to run. Once this limit is reached the system will cancel the sweep job, including all its trials.
332332
* `trial_timeout`: Maximum time in seconds each trial job is allowed to run. Once this limit is reached the system will cancel the trial.
333333

334334
>[!NOTE]
@@ -338,10 +338,10 @@ Control your resource budget by setting limits for your sweep job.
338338
>The number of concurrent trial jobs is gated on the resources available in the specified compute target. Ensure that the compute target has the available resources for the desired concurrency.
339339
340340
```Python
341-
sweep_job.set_limits(max_total_trials=20, max_concurrent_trials=4, timeout=120)
341+
sweep_job.set_limits(max_total_trials=20, max_concurrent_trials=4, timeout=1200)
342342
```
343343

344-
This code configures the hyperparameter tuning experiment to use a maximum of 20 total trial jobs, running four trial jobs at a time with a timeout of 120 minutes for the entire sweep job.
344+
This code configures the hyperparameter tuning experiment to use a maximum of 20 total trial jobs, running four trial jobs at a time with a timeout of 1200 seconds for the entire sweep job.
345345

346346
## Configure hyperparameter tuning experiment
347347

244 KB
Loading

0 commit comments

Comments
 (0)