Skip to content

Commit 52be085

Browse files
authored
Update how-to-train-with-ui.md
1 parent c3274f9 commit 52be085

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

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

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,22 @@ There are many ways to create a training job with Azure Machine Learning. You ca
3333

3434
1. Select your subscription and workspace.
3535

36-
* Navigate to the Azure ML Studio and enable the feature by clicking open the preview panel.
37-
[![Azure Machine Learning studio preview panel](media/how-to-train-with-ui/preview-panel.png)](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+
[![Azure Machine Learning studio preview panel allowing users to enable preview features.](media/how-to-train-with-ui/preview-panel.png)](media/how-to-train-with-ui/preview-panel.png)
3838

3939

4040
* You may enter the job creation UI from the homepage. Click **Create new** and select **Job**.
4141
[![Azure Machine Learning studio homepage](media/how-to-train-with-ui/home-entry.png)](media/how-to-train-with-ui/home-entry.png)
4242

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).
4444

45-
[![Azure Machine Learning studio choose training method](media/how-to-train-with-ui/training-method.png)](media/how-to-train-with-ui/training-method.png)
45+
[![Azure Machine Learning studio wizard landing page for users to choose method of training.](media/how-to-train-with-ui/training-method.png)](media/how-to-train-with-ui/training-method.png)
4646

4747
## Configure basic settings
4848

4949
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.
5050

51-
[![Azure Machine Learning studio job submission wizard basic settings](media/how-to-train-with-ui/basic-settings.png)](media/how-to-train-with-ui/basic-settings.png)
51+
[![Azure Machine Learning studio job submission wizard for users to configure their basic settings.](media/how-to-train-with-ui/basic-settings.png)](media/how-to-train-with-ui/basic-settings.png)
5252

5353
These are the fields available:
5454

@@ -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-
[![Refer code in the command](media/how-to-train-with-ui/trainingscript-code.png)](media/how-to-train-with-ui/trainingscript-code.png)
92+
[![Image of referencing your code in the command in the training job submission wizard.](media/how-to-train-with-ui/training-script-code.png)](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-
[![Refer input name in the command](media/how-to-train-with-ui/trainingscript-inputs.png)](media/how-to-train-with-ui/trainingscript-inputs.png)
98+
[![Image of referencing your inputs in the command in the training job submission wizard.](media/how-to-train-with-ui/training-script-inputs.png)](media/how-to-train-with-ui/training-script-inputs.png)
9999

100100
## Select compute resources
101101

@@ -111,7 +111,7 @@ Next step is to select the compute target on which you'd like your job to run. T
111111
1. Select an existing compute resource. The dropdown shows the node information and SKU type to help your choice.
112112
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.
113113
1. When you're satisfied with your choices, choose **Next**.
114-
[![Select a compute cluster](media/how-to-train-with-ui/compute.png)](media/how-to-train-with-ui/compute.png)
114+
[![Select a compute cluster dropdown selector image.](media/how-to-train-with-ui/compute.png)](media/how-to-train-with-ui/compute.png)
115115

116116
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:
117117

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

134134
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).
135135

136-
[![Curated environments](media/how-to-train-with-ui/curated-environments.png)](media/how-to-train-with-ui/curated-environments.png)
136+
[![Image of curated environments selector page showing various environment cards.](media/how-to-train-with-ui/curated-environments.png)](media/how-to-train-with-ui/curated-environments.png)
137137

138138
### Custom environments
139139

@@ -147,7 +147,7 @@ If you don't want to use the Azure Machine Learning curated environments or spec
147147
## Review and Create
148148

149149
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-
[![AzureML Studio job submission review](media/how-to-train-with-ui/review.png)](media/how-to-train-with-ui/review.png)
150+
[![Azure Machine Learning studio job submission review pane image to validate selections before submission.](media/how-to-train-with-ui/review.png)](media/how-to-train-with-ui/review.png)
151151

152152
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.
153153

0 commit comments

Comments
 (0)