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-schedule-pipeline-job.md
+20-9Lines changed: 20 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@ The code examples in this article are excerpts from the [Working with Schedule](
71
71
72
72
# [Studio UI](#tab/ui)
73
73
74
-
To create a schedule for an Azure Machine Learning v2 pipeline job, open the pipeline page for that job.
74
+
To create a schedule for an Azure Machine Learning v2 pipeline job in the studio UI, open its pipeline detail page.
75
75
76
76
---
77
77
@@ -95,7 +95,7 @@ You must or can provide the following schedule parameters:
95
95
96
96
# [Studio UI](#tab/ui)
97
97
98
-
To open the schedule creation wizard, select **Schedule** > **Create new schedule**.
98
+
To open the schedule creation wizard, select **Schedule** > **Create new schedule** at the top of the page.
99
99
100
100
:::image type="content" source="./media/how-to-schedule-pipeline-job/schedule-entry-button.png" alt-text="Screenshot of the jobs tab showing the Create new schedule button selected." lightbox= "./media/how-to-schedule-pipeline-job/schedule-entry-button.png":::
101
101
@@ -142,6 +142,7 @@ After you create the schedule YAML, use the following command to create the sche
142
142
# This action creates related resources for a schedule. It takes dozens of seconds to complete.
143
143
az ml schedule create --file simple-pipeline-job.yml --no-wait
144
144
```
145
+
145
146
# [Python SDK](#tab/python)
146
147
147
148
The following Python code creates the schedule you defined:
@@ -186,7 +187,7 @@ You must or can provide the following schedule parameters:
186
187
187
188
# [Studio UI](#tab/ui)
188
189
189
-
To define a cron-based schedule, select **Cron expression** instead of **Recurrence** on the **Basic settings** screen.
190
+
To define a cron-based schedule, select **Cron expression** instead of **Recurrence** on the **Basic settings** screen for the schedule.
190
191
191
192
---
192
193
@@ -220,7 +221,10 @@ Only the **Name** property requires you to enter a value. If you don't specify a
220
221
221
222
After you create the schedule YAML, use the following command to create the schedule via CLI:
# This action creates related resources for a schedule. It takes dozens of seconds to complete.
226
+
az ml schedule create --file simple-pipeline-job.yml --no-wait
227
+
```
224
228
225
229
# [Python SDK](#tab/python)
226
230
@@ -242,7 +246,7 @@ Sometimes you might want the jobs triggered by schedules to have different confi
242
246
243
247
When you define a schedule, you can change the `settings`, `inputs`, or `outputs` to use when running the pipeline job. You can also change the `experiment_name` of the triggered job.
244
248
245
-
The following schedule definition changes the settings of the existing job.
249
+
The following schedule definition changes the settings of an existing job.
0 commit comments