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
+3-10Lines changed: 3 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Create a Training Job with the job creation UI
3
3
titleSuffix: Azure Machine Learning
4
-
description: Learn how to use the job creation UI in Azure Machine Learning Studio to create a training job.
4
+
description: Learn how to use the job creation UI in Azure Machine Learning studio to create a training job.
5
5
services: machine-learning
6
6
ms.service: machine-learning
7
7
ms.subservice: core
@@ -15,7 +15,7 @@ ms.reviewer: laobri
15
15
16
16
# Create a training job with the job creation UI (preview)
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) with the CLI (v2) (preview)](how-to-train-cli.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 the job creation UI 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) with the CLI (v2) (preview)](how-to-train-cli.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 the job creation UI in Azure Machine Learning studio.
19
19
20
20
## Prerequisites
21
21
@@ -130,17 +130,10 @@ Here, the source code is in the `src` subdirectory. The command would be `python
130
130
131
131
#### Inputs
132
132
133
-
There are two ways to do input binding:
133
+
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}}`.
134
134
135
-
* Input name: 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}`.
136
135
[](media/how-to-train-with-ui/input-command-name.png)
137
136
138
-
* Path: You can use `--data .path` to specify a cloud location. The path is what you enter in the **Path on compute** field.
139
-
[](media/how-to-train-with-ui/input-command-path.png)
140
-
141
-
>[!NOTE]
142
-
>In the **command to start the job**, you must add a period to the **Path on compute** value. For instance, `/data/wikitext-2` becomes `./data/wikitext-2`.
143
-
144
137
## Review and Create
145
138
146
139
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.
0 commit comments