Skip to content

Commit d0d97db

Browse files
committed
edits
1 parent 7a7e9ee commit d0d97db

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

articles/machine-learning/how-to-use-parallel-job-in-pipeline.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.subservice: mlops
88
ms.topic: how-to
99
author: alainli
1010
ms.author: alainli
11-
ms.date: 09/25/2022
11+
ms.date: 09/26/2022
1212
ms.custom: devx-track-python, sdkv2, cliv2, event-tier1-build-2022
1313
---
1414

@@ -153,7 +153,7 @@ Sample code to set two attributes:
153153
> Run(mini_batch) function requires a return of either a dataframe, list, or tuple item. Parallel job will use the count of that return to measure the success items under that mini-batch. Ideally mini-batch count should be equal to the return list count if all items have well processed in this mini-batch.
154154
155155
> [!IMPORTANT]
156-
> If you want to parse arguments in Init() or Run(mini_batch) function, use "parse_known_args" instead of "parse_args" for avoiding exceptions. See this example for entry script with argument parser: [iris_score](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/machine-learning-pipelines/parallel-run/Code/iris_score.py)
156+
> If you want to parse arguments in Init() or Run(mini_batch) function, use "parse_known_args" instead of "parse_args" for avoiding exceptions. See the [iris_score](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/machine-learning-pipelines/parallel-run/Code/iris_score.py) example for entry script with argument parser.
157157
158158
### Consider automation settings
159159

@@ -242,13 +242,13 @@ You can submit your pipeline job with parallel step by using `jobs.create_or_upd
242242

243243
---
244244

245-
Once you submit your pipeline job, the SDK or CLI widget will give you a web URL link to Studio UI. The link will guide you to the pipeline graph view by default. Double select the parallel step to open the right panel of your parallel job.
245+
Once you submit your pipeline job, the SDK or CLI widget will give you a web URL link to the Studio UI. The link will guide you to the pipeline graph view by default. Double select the parallel step to open the right panel of your parallel job.
246246

247247
To check the settings of your parallel job, navigate to **Parameters** tab, expand **Run settings**, and check **Parallel** section:
248248

249249
:::image type="content" source="./media/how-to-use-parallel-job-in-pipeline/screenshot-for-parallel-job-settings.png" alt-text="Screenshot of Azure ML studio on the jobs tab showing the parallel job settings." lightbox ="./media/how-to-use-parallel-job-in-pipeline/screenshot-for-parallel-job-settings.png":::
250250

251-
To debug the failure of your parallel job, navigate to **Outputs + Logs** tab, expand **logs** folder from output directories on the left, and check **job_result.txt** to understand why the parallel job is failed. For more detail about logging structure of parallel job, refer to **readme.txt** under the same folder.
251+
To debug the failure of your parallel job, navigate to **Outputs + Logs** tab, expand **logs** folder from output directories on the left, and check **job_result.txt** to understand why the parallel job is failed. For more detail about logging structure of parallel job, see the **readme.txt** under the same folder.
252252

253253
:::image type="content" source="./media/how-to-use-parallel-job-in-pipeline/screenshot-for-parallel-job-result.png" alt-text="Screenshot of Azure ML studio on the jobs tab showing the parallel job results." lightbox ="./media/how-to-use-parallel-job-in-pipeline/screenshot-for-parallel-job-result.png":::
254254

@@ -264,4 +264,4 @@ To debug the failure of your parallel job, navigate to **Outputs + Logs** tab, e
264264

265265
- For the detailed yaml schema of parallel job, see the [YAML reference for parallel job](reference-yaml-job-parallel.md).
266266
- For how to onboard your data into MLTABLE, see [Create a mltable data asset](how-to-create-register-data-assets.md#create-a-mltable-data-asset).
267-
- For how to regularly trigger your pipeline, see [how to schedule pipeline](how-to-schedule-pipeline-job.md)
267+
- For how to regularly trigger your pipeline, see [how to schedule pipeline](how-to-schedule-pipeline-job.md).

articles/machine-learning/reference-yaml-job-parallel.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ms.topic: reference
99
ms.custom: cliv2, event-tier1-build-2022
1010
author: alainli
1111
ms.author: alainli
12-
ms.date: 09/25/2022
12+
ms.date: 09/26/2022
1313
---
1414

1515
# CLI (v2) parallel job YAML schema
@@ -21,7 +21,7 @@ ms.date: 09/25/2022
2121
> * [v2 (current version)](reference-yaml-job-pipeline.md)
2222
2323
> [!IMPORTANT]
24-
> Current parallel job can only be used as a single step inside an Azure ML pipeline job. Thus, there is no source JSON schema for parallel job at this time. This document lists the valid keys and their values when creating a parallel job in a pipeline.
24+
> Parallel job can only be used as a single step inside an Azure ML pipeline job. Thus, there is no source JSON schema for parallel job at this time. This document lists the valid keys and their values when creating a parallel job in a pipeline.
2525
2626
[!INCLUDE [schema note](../../includes/machine-learning-preview-old-json-schema-note.md)]
2727

articles/machine-learning/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -721,7 +721,7 @@
721721
href: reference-yaml-job-sweep.md
722722
- name: Pipeline
723723
href: reference-yaml-job-pipeline.md
724-
- name: Parallal job
724+
- name: Parallal
725725
href: reference-yaml-job-parallel.md
726726
- name: Datastore
727727
items:

0 commit comments

Comments
 (0)