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
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,22 +33,22 @@ There are many ways to create a training job with Azure Machine Learning. You ca
33
33
34
34
1. Select your subscription and workspace.
35
35
36
-
* Navigate to the Azure ML Studio and enable the feature by clicking open the preview panel.
37
-
[](media/how-to-train-with-ui/preview-panel.png)
36
+
* Navigate to the Azure Machine Learning Studio and enable the feature by clicking open the preview panel.
37
+
[](media/how-to-train-with-ui/preview-panel.png)
38
38
39
39
40
40
* You may enter the job creation UI from the homepage. Click **Create new** and select **Job**.
41
41
[](media/how-to-train-with-ui/home-entry.png)
42
42
43
-
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 walkthrough the wizard for running a custom script (command job).
43
+
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).
44
44
45
-
[](media/how-to-train-with-ui/training-method.png)
45
+
[](media/how-to-train-with-ui/training-method.png)
46
46
47
47
## Configure basic settings
48
48
49
49
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.
50
50
51
-
[](media/how-to-train-with-ui/basic-settings.png)
51
+
[](media/how-to-train-with-ui/basic-settings.png)
52
52
53
53
These are the fields available:
54
54
@@ -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
-
[](media/how-to-train-with-ui/trainingscript-code.png)
92
+
[](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
-
[](media/how-to-train-with-ui/trainingscript-inputs.png)
98
+
[](media/how-to-train-with-ui/training-script-inputs.png)
99
99
100
100
## Select compute resources
101
101
@@ -111,7 +111,7 @@ Next step is to select the compute target on which you'd like your job to run. T
111
111
1. Select an existing compute resource. The dropdown shows the node information and SKU type to help your choice.
112
112
1. For a compute cluster or a Kubernetes cluster, you may also specify how many nodes you want for the job in **Instance count**. The default number of instances is 1.
113
113
1. When you're satisfied with your choices, choose **Next**.
114
-
[](media/how-to-train-with-ui/compute.png)
114
+
[](media/how-to-train-with-ui/compute.png)
115
115
116
116
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:
117
117
@@ -133,7 +133,7 @@ After selecting a compute target, you need to specify the runtime environment fo
133
133
134
134
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 [curated environments in Azure Machine Learning](resource-curated-environments.md).
[](media/how-to-train-with-ui/curated-environments.png)
137
137
138
138
### Custom environments
139
139
@@ -147,7 +147,7 @@ If you don't want to use the Azure Machine Learning curated environments or spec
147
147
## Review and Create
148
148
149
149
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.
150
-
[](media/how-to-train-with-ui/review.png)
150
+
[](media/how-to-train-with-ui/review.png)
151
151
152
152
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.
0 commit comments