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
+15-15Lines changed: 15 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,13 +9,13 @@ ms.topic: how-to
9
9
ms.custom: devplatv2
10
10
author: amibp
11
11
ms.author: amipatel
12
-
ms.date: 11/04/2022
12
+
ms.date: 02/04/2024
13
13
ms.reviewer: ssalgado
14
14
---
15
15
16
16
# Submit a training job in Studio
17
17
18
-
There are many ways to create a training job with Azure Machine Learning. You can use the CLI (see [Train models (create jobs)](how-to-train-model.md)), the REST API (see [Train models with REST (preview)](how-to-train-with-rest.md)), or you can use the UI to directly create a training job. In this article, you'll learn how to use your own data and code to train a machine learning model with a guided experience for submitting training jobs in Azure Machine Learning studio.
18
+
There are many ways to create a training job with Azure Machine Learning. You can use the CLI (see [Train models (create jobs)](how-to-train-model.md)), the REST API (see [Train models with REST (preview)](how-to-train-with-rest.md)), or you can use the UI to directly create a training job. In this article, you learn how to use your own data and code to train a machine learning model with a guided experience for submitting training jobs in Azure Machine Learning studio.
@@ -34,27 +34,27 @@ There are many ways to create a training job with Azure Machine Learning. You ca
34
34
1. Select your subscription and workspace.
35
35
36
36
37
-
* You may enter the job creation UI from the homepage. Click**Create new** and select **Job**.
37
+
* You may enter the job creation UI from the homepage. Select**Create new** and select **Job**.
38
38
[](media/how-to-train-with-ui/unified-job-submission-home.png)
39
39
40
-
In this wizard, you can select your method of training, complete the rest of the submission wizard based on your selection, and submit the training job. Below we will walk through the wizard for running a custom script (command job).
40
+
In this step, you can select your method of training, complete the rest of the submission form based on your selection, and submit the training job. Below we walk through the form with the steps for running a custom script (command job).
41
41
42
-
[](media/how-to-train-with-ui/training-method.png)
42
+
[](media/how-to-train-with-ui/training-method.png)
43
43
44
44
## Configure basic settings
45
45
46
-
The first step is configuring basic information about your training job. You can proceed next if you're satisfied with the defaults we have chosen for you or make changes to your desired preference.
46
+
The first step is configuring basic information about your training job. You can proceed next if you're satisfied with the defaults we chose for you, or make changes to your desired preference.
47
47
48
-
[](media/how-to-train-with-ui/basic-settings.png)
48
+
[](media/how-to-train-with-ui/basic-settings.png)
49
49
50
50
These are the fields available:
51
51
52
52
|Field| Description|
53
53
|------| ------|
54
54
|Job name| The job name field is used to uniquely identify your job. It's also used as the display name for your job.|
55
-
|Experiment name| This helps organize the job in Azure Machine Learning studio. Each job's run record will be organized under the corresponding experiment in the studio's "Experiment" tab. By default, Azure will put the job in the **Default** experiment.|
55
+
|Experiment name| This helps organize the job in Azure Machine Learning studio. Each job's run record is organized under the corresponding experiment in the studio's "Experiment" tab. By default, Azure puts the job in the **Default** experiment.|
56
56
|Description| Add some text describing your job, if desired.|
57
-
|Timeout| Specify number of hours the entire training job is allowed to run. Once this limit is reached the system will cancel the job including any child jobs.|
57
+
|Timeout| Specify number of hours the entire training job is allowed to run. Once this limit is reached the system cancels the job including any child jobs.|
58
58
|Tags| Add tags to your job to help with organization.|
59
59
60
60
## Training script
@@ -86,13 +86,13 @@ If the code isn't in the root directory, you should use the relative path. For e
86
86
```
87
87
Here, the source code is in the `src` subdirectory. The command would be `python ./src/main.py` (plus other command-line arguments).
88
88
89
-
[](media/how-to-train-with-ui/training-script-code.png)
89
+
[](media/how-to-train-with-ui/training-script-code.png)
90
90
91
91
### Inputs
92
92
93
93
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}}`.
94
94
95
-
[](media/how-to-train-with-ui/training-script-inputs.png)
95
+
[](media/how-to-train-with-ui/training-script-inputs.png)
96
96
97
97
## Select compute resources
98
98
@@ -110,7 +110,7 @@ Next step is to select the compute target on which you'd like your job to run. T
110
110
1. When you're satisfied with your choices, choose **Next**.
111
111
[](media/how-to-train-with-ui/compute.png)
112
112
113
-
If you're using Azure Machine Learning for the first time, you'll see an empty list and a link to create a new compute. For more information on creating the various types, see:
113
+
If you're using Azure Machine Learning for the first time, you see an empty list and a link to create a new compute. For more information on creating the various types, see:
114
114
115
115
| Compute Type | How to |
116
116
| --- | --- |
@@ -134,7 +134,7 @@ Curated environments are Azure-defined collections of Python packages used in co
134
134
135
135
### Custom environments
136
136
137
-
Custom environments are environments you've specified yourself. You can specify an environment or reuse an environment that you've already created. To learn more, see [Manage software environments in Azure Machine Learning studio (preview)](how-to-manage-environments-in-studio.md#create-an-environment).
137
+
Custom environments are environments you specified yourself. You can specify an environment or reuse an environment that you already created. To learn more, see [Manage software environments in Azure Machine Learning studio (preview)](how-to-manage-environments-in-studio.md#create-an-environment).
138
138
139
139
### Container registry image
140
140
@@ -143,10 +143,10 @@ If you don't want to use the Azure Machine Learning curated environments or spec
143
143
144
144
## Review and Create
145
145
146
-
Once you've configured your job, choose **Next** to go to the **Review** page. To modify a setting, choose the pencil icon and make the change.
146
+
Once you configured the job, choose **Next** to go to the **Review** page. To modify a setting, choose the pencil icon and make the change.
147
147
[](media/how-to-train-with-ui/review.png)
148
148
149
-
To launch the job, choose **Submit training job**. Once the job is created, Azure will show you the job details page, where you can monitor and manage your training job.
149
+
To launch the job, choose **Submit training job**. Once the job is created, Azure shows you the job details page, where you can monitor and manage your training job.
0 commit comments