Skip to content

Commit 6d14154

Browse files
committed
Add lightbox
1 parent ae1feb0 commit 6d14154

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

articles/machine-learning/how-to-train-with-ui.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: how-to
99
ms.custom: devplatv2
1010
author: ssalgadodev
1111
ms.author: ssalgado
12-
ms.date: 03/31/2025
12+
ms.date: 04/02/2025
1313
ms.reviewer: amipatel
1414
---
1515

@@ -35,19 +35,19 @@ In this article, you learn how to use your own data and code to train a machine
3535

3636
1. Enter the job creation UI from the homepage. Select **+ New** and choose **Training job**.
3737

38-
:::image type="content" source="media/how-to-train-with-ui/unified-job-submission-home.png" alt-text="Screenshot that shows the Azure Machine Learning studio homepage.":::
38+
:::image type="content" source="media/how-to-train-with-ui/unified-job-submission-home.png" alt-text="Screenshot that shows the Azure Machine Learning studio homepage." lightbox="media/how-to-train-with-ui/unified-job-submission-home.png":::
3939

4040
1. Select your method of training, then choose **Start configuring job** to open the submission form.
4141

42-
:::image type="content" source="media/how-to-train-with-ui/training-method.png" alt-text="Screenshot that shows the training method options on the Azure Machine Learning studio training form.":::
42+
:::image type="content" source="media/how-to-train-with-ui/training-method.png" alt-text="Screenshot that shows the training method options on the Azure Machine Learning studio training form." lightbox="media/how-to-train-with-ui/training-method.png":::
4343

4444
In the next section, we walk through the form with the steps for running a custom training script (command job).
4545

4646
## Configure basic settings
4747

4848
Configure the basic information about your training job. You can proceed to the next page if you're satisfied with the defaults we chose for you, or make changes based on your desired preference.
4949

50-
:::image type="content" source="media/how-to-train-with-ui/basic-settings.png" alt-text="Screenshot that shows the basic settings form for training jobs.":::
50+
:::image type="content" source="media/how-to-train-with-ui/basic-settings.png" alt-text="Screenshot that shows the basic settings form for training jobs." lightbox="media/how-to-train-with-ui/basic-settings.png":::
5151

5252
The following fields are available:
5353

@@ -89,13 +89,13 @@ If the code isn't in the root directory, you should use the relative path. For e
8989

9090
Here, the source code is in the `src` subdirectory. The command would be `python ./src/main.py` (plus other command-line arguments).
9191

92-
:::image type="content" source="media/how-to-train-with-ui/training-script-code.png" alt-text="Screenshot of the files to be uploaded in the training job submission form.":::
92+
:::image type="content" source="media/how-to-train-with-ui/training-script-code.png" alt-text="Screenshot of the files to be uploaded in the training job submission form." lightbox="media/how-to-train-with-ui/training-script-code.png":::
9393

9494
### Inputs
9595

9696
When you use an input in the command, you need to specify the input name. To indicate an input variable, use the form `${{inputs.input_name}}`. For instance, `${{inputs.wiki}}`. You can then refer to it in the command, for instance, `--data ${{inputs.wiki}}`.
9797

98-
:::image type="content" source="media/how-to-train-with-ui/training-script-inputs.png" alt-text="Screenshot that shows the input variables in the training job submission form.":::
98+
:::image type="content" source="media/how-to-train-with-ui/training-script-inputs.png" alt-text="Screenshot that shows the input variables in the training job submission form." lightbox="media/how-to-train-with-ui/training-script-inputs.png":::
9999

100100
## Select compute resources
101101

@@ -135,7 +135,7 @@ After selecting a compute target, you need to specify the runtime environment fo
135135

136136
Curated environments are Azure-defined collections of Python packages used in common ML workloads. Curated environments are available in your workspace by default. These environments are backed by cached Docker images, which reduce the job preparation overhead. The cards displayed in the **Curated environments** page show details of each environment. To learn more, see [Azure Machine Learning Curated Environments](resource-curated-environments.md).
137137

138-
:::image type="content" source="media/how-to-train-with-ui/curated-environments.png" alt-text="Screenshot of the curated environments selector page showing various environment cards.":::
138+
:::image type="content" source="media/how-to-train-with-ui/curated-environments.png" alt-text="Screenshot of the curated environments selector page showing various environment cards." lightbox="media/how-to-train-with-ui/curated-environments.png":::
139139

140140
### Custom environments
141141

@@ -149,7 +149,7 @@ If you don't want to use the Azure Machine Learning curated environments or spec
149149

150150
After you configure the job, choose **Next** to go to the **Review** page. To modify a setting, choose the pencil icon and make the change.
151151

152-
:::image type="content" source="media/how-to-train-with-ui/review.png" alt-text="Screenshot that shows the review pane to validate your selections before submission.":::
152+
:::image type="content" source="media/how-to-train-with-ui/review.png" alt-text="Screenshot that shows the review pane to validate your selections before submission." lightbox="media/how-to-train-with-ui/review.png":::
153153

154154
To launch the job, choose **Submit training job**. After the job is created, Azure shows you the job details page, where you can monitor and manage your training job.
155155

18.4 KB
Loading

0 commit comments

Comments
 (0)