Skip to content

Commit e1290d7

Browse files
authored
Update how-to-train-with-ui.md
1 parent d84fe95 commit e1290d7

File tree

1 file changed

+11
-14
lines changed

1 file changed

+11
-14
lines changed

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

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ There are many ways to create a training job with Azure Machine Learning. You ca
3838

3939
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).
4040

41+
[![Azure Machine Learning studio homepage](media/how-to-train-with-ui/training-method.png)](media/how-to-train-with-ui/training-method.png)
42+
4143
## Configure basic settings
4244

4345
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,9 +48,9 @@ These are the fields available:
4648

4749
|Field| Description|
4850
|------| ------|
49-
|Job name| The job name field is used to uniquely identify your job. It's also used as the display name for your job. Setting this field is optional; Azure will generates a display name for you if one is not specified.|
51+
|Job name| The job name field is used to uniquely identify your job. It's also used as the display name for your job.|
5052
|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.|
51-
|Description| Add some text describing your job, if desired. This is optional |
53+
|Description| Add some text describing your job, if desired.|
5254
|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.|
5355
|Tags| Add tags to your job to help with organization.|
5456

@@ -81,13 +83,13 @@ If the code isn't in the root directory, you should use the relative path. For e
8183
```
8284
Here, the source code is in the `src` subdirectory. The command would be `python ./src/main.py` (plus other command-line arguments).
8385

84-
[![Refer code in the command](media/how-to-train-with-ui/code-command.png)](media/how-to-train-with-ui/code-command.png)
86+
[![Refer code in the command](media/how-to-train-with-ui/trainingscript-code.png)](media/how-to-train-with-ui/trainingscript-code.png)
8587

8688
### Inputs
8789

8890
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}}`.
8991

90-
[![Refer input name in the command](media/how-to-train-with-ui/input-command-name.png)](media/how-to-train-with-ui/input-command-name.png)
92+
[![Refer input name in the command](media/how-to-train-with-ui/trainingscript-inputs.png)](media/how-to-train-with-ui/trainingscript-inputs.png)
9193

9294
## Select compute resources
9395

@@ -103,13 +105,9 @@ Next step is to select the compute target on which you'd like your job to run. T
103105
1. Select an existing compute resource. The dropdown shows the node information and SKU type to help your choice.
104106
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.
105107
1. When you're satisfied with your choices, choose **Next**.
106-
[![Select a compute cluster](media/how-to-train-with-ui/compute-cluster.png)](media/how-to-train-with-ui/compute-cluster.png)
107-
108-
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.
108+
[![Select a compute cluster](media/how-to-train-with-ui/compute.png)](media/how-to-train-with-ui/compute.png)
109109

110-
[![Create a new compute instance](media/how-to-train-with-ui/create-new-compute.png)](media/how-to-train-with-ui/create-new-compute.png)
111-
112-
For more information on creating the various types, see:
110+
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:
113111

114112
| Compute Type | How to |
115113
| --- | --- |
@@ -129,22 +127,21 @@ After selecting a compute target, you need to specify the runtime environment fo
129127

130128
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).
131129

132-
[![Curated environments](media/how-to-train-with-ui/curated-env.png)](media/how-to-train-with-ui/curated-env.png)
130+
[![Curated environments](media/how-to-train-with-ui/curated-environment.png)](media/how-to-train-with-ui/curated-environment.png)
133131

134132
### Custom environments
135133

136134
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).
137135

138136
### Container registry image
139137

140-
If you don't want to use the Azure Machine Learning curated environments or specify your own custom environment, you can use a docker image from a public container registry such as [Docker Hub](https://hub.docker.com/). If the image is in a private container, toggle **This is a private container registry**. For private registries, you will need to enter a valid username and password so Azure can get the image.
141-
[![Container registry image](media/how-to-train-with-ui/container-registry-image.png)](media/how-to-train-with-ui/container-registry-image.png)
138+
If you don't want to use the Azure Machine Learning curated environments or specify your own custom environment, you can use a docker image from a public container registry such as [Docker Hub](https://hub.docker.com/).
142139

143140

144141
## Review and Create
145142

146143
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.
147-
144+
[![Review](media/how-to-train-with-ui/review.png)](media/how-to-train-with-ui/review.png)
148145

149146
To launch the job, choose **Create**. Once the job is created, Azure will show you the job details page, where you can monitor and manage your training job.
150147

0 commit comments

Comments
 (0)