Skip to content

Commit c172dc9

Browse files
committed
Add note for running on compute instance
1 parent f8d88bb commit c172dc9

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

articles/machine-learning/how-to-auto-train-image-models.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,9 @@ image_object_detection_job = automl.image_object_detection(
242242

243243
Provide a [compute target](concept-azure-machine-learning-architecture.md#compute-targets) for automated ML to conduct model training. Automated ML models for computer vision tasks require GPU SKUs and support NC and ND families. We recommend the NCsv3-series (with v100 GPUs) for faster training. A compute target with a multi-GPU VM SKU leverages multiple GPUs to also speed up training. Additionally, when you set up a compute target with multiple nodes you can conduct faster model training through parallelism when tuning hyperparameters for your model.
244244

245+
> [!NOTE]
246+
> If you are using a [compute instance](concept-compute-instance.md) as your compute target, please make sure that multiple AutoML jobs are not run at once. Also, please make sure that `max_concurrent_trials` is set to 1 in your [experiment budget](#experiment-budget).
247+
245248
The compute target is passed in using the `compute` parameter. For example:
246249

247250
# [Azure CLI](#tab/cli)

articles/machine-learning/v1/how-to-auto-train-image-models-v1.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,9 @@ automl_image_config = AutoMLImageConfig(training_data=training_dataset)
187187

188188
Provide a [compute target](../v1/concept-azure-machine-learning-architecture.md#compute-targets) for automated ML to conduct model training. Automated ML models for computer vision tasks require GPU SKUs and support NC and ND families. We recommend the NCsv3-series (with v100 GPUs) for faster training. A compute target with a multi-GPU VM SKU leverages multiple GPUs to also speed up training. Additionally, when you set up a compute target with multiple nodes you can conduct faster model training through parallelism when tuning hyperparameters for your model.
189189

190+
> [!NOTE]
191+
> If you are using a [compute instance](../concept-compute-instance.md) as your compute target, please make sure that multiple AutoML jobs are not run at once. Also, please make sure that `max_concurrent_iterations` is set to 1 in your [experiment resources](#resources-for-the-sweep).
192+
190193
The compute target is a required parameter and is passed in using the `compute_target` parameter of the `AutoMLImageConfig`. For example:
191194

192195
```python

0 commit comments

Comments
 (0)