Skip to content

Commit 09f5e15

Browse files
Merge pull request #265503 from ssalgadodev/patch-70
Update how-to-train-with-ui.md
2 parents 7ef0e34 + f1949c1 commit 09f5e15

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

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

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ ms.topic: how-to
99
ms.custom: devplatv2
1010
author: amibp
1111
ms.author: amipatel
12-
ms.date: 11/04/2022
12+
ms.date: 02/04/2024
1313
ms.reviewer: ssalgado
1414
---
1515

1616
# Submit a training job in Studio
1717

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.
1919

2020
[!INCLUDE [machine-learning-preview-generic-disclaimer](includes/machine-learning-preview-generic-disclaimer.md)]
2121

@@ -34,27 +34,27 @@ There are many ways to create a training job with Azure Machine Learning. You ca
3434
1. Select your subscription and workspace.
3535

3636

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**.
3838
[![Azure Machine Learning studio homepage](media/how-to-train-with-ui/unified-job-submission-home.png)](media/how-to-train-with-ui/unified-job-submission-home.png)
3939

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

42-
[![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)
42+
[![Azure Machine Learning studio training form 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)
4343

4444
## Configure basic settings
4545

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.
4747

48-
[![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)
48+
[![Azure Machine Learning studio job submission form 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)
4949

5050
These are the fields available:
5151

5252
|Field| Description|
5353
|------| ------|
5454
|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.|
5656
|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.|
5858
|Tags| Add tags to your job to help with organization.|
5959

6060
## Training script
@@ -86,13 +86,13 @@ If the code isn't in the root directory, you should use the relative path. For e
8686
```
8787
Here, the source code is in the `src` subdirectory. The command would be `python ./src/main.py` (plus other command-line arguments).
8888

89-
[![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)
89+
[![Image of referencing your code in the command in the training job submission form.](media/how-to-train-with-ui/training-script-code.png)](media/how-to-train-with-ui/training-script-code.png)
9090

9191
### Inputs
9292

9393
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}}`.
9494

95-
[![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)
95+
[![Image of referencing your inputs in the command in the training job submission form.](media/how-to-train-with-ui/training-script-inputs.png)](media/how-to-train-with-ui/training-script-inputs.png)
9696

9797
## Select compute resources
9898

@@ -110,7 +110,7 @@ Next step is to select the compute target on which you'd like your job to run. T
110110
1. When you're satisfied with your choices, choose **Next**.
111111
[![Select a compute cluster dropdown selector image.](media/how-to-train-with-ui/compute.png)](media/how-to-train-with-ui/compute.png)
112112

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:
114114

115115
| Compute Type | How to |
116116
| --- | --- |
@@ -134,7 +134,7 @@ Curated environments are Azure-defined collections of Python packages used in co
134134

135135
### Custom environments
136136

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

139139
### Container registry image
140140

@@ -143,10 +143,10 @@ If you don't want to use the Azure Machine Learning curated environments or spec
143143

144144
## Review and Create
145145

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.
147147
[![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)
148148

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.
150150

151151
[!INCLUDE [Email Notification Include](includes/machine-learning-email-notifications.md)]
152152

0 commit comments

Comments
 (0)