You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/machine-learning/how-to-train-with-ui.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ ms.topic: how-to
9
9
ms.custom: devplatv2
10
10
author: ssalgadodev
11
11
ms.author: ssalgado
12
-
ms.date: 03/31/2025
12
+
ms.date: 04/02/2025
13
13
ms.reviewer: amipatel
14
14
---
15
15
@@ -35,19 +35,19 @@ In this article, you learn how to use your own data and code to train a machine
35
35
36
36
1. Enter the job creation UI from the homepage. Select **+ New** and choose **Training job**.
37
37
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":::
39
39
40
40
1. Select your method of training, then choose **Start configuring job** to open the submission form.
41
41
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":::
43
43
44
44
In the next section, we walk through the form with the steps for running a custom training script (command job).
45
45
46
46
## Configure basic settings
47
47
48
48
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.
49
49
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":::
51
51
52
52
The following fields are available:
53
53
@@ -89,13 +89,13 @@ If the code isn't in the root directory, you should use the relative path. For e
89
89
90
90
Here, the source code is in the `src` subdirectory. The command would be `python ./src/main.py` (plus other command-line arguments).
91
91
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":::
93
93
94
94
### Inputs
95
95
96
96
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}}`.
97
97
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":::
99
99
100
100
## Select compute resources
101
101
@@ -135,7 +135,7 @@ After selecting a compute target, you need to specify the runtime environment fo
135
135
136
136
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).
137
137
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":::
139
139
140
140
### Custom environments
141
141
@@ -149,7 +149,7 @@ If you don't want to use the Azure Machine Learning curated environments or spec
149
149
150
150
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.
151
151
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":::
153
153
154
154
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.
0 commit comments