Skip to content

Commit 12d502b

Browse files
committed
Update per comments.
1 parent fc7aa30 commit 12d502b

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

articles/machine-learning/how-to-use-parallel-run-step.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -336,10 +336,6 @@ parallelrun_step = ParallelRunStep(
336336
allow_reuse=True
337337
)
338338
```
339-
340-
> [!NOTE]
341-
> `models`, `tags` and `properties` are removed from `ParallelRunStep`. You can directly load the models in your python script.
342-
343339
### Submit the pipeline
344340

345341
Now, run the pipeline. First, create a [`Pipeline`](https://docs.microsoft.com/python/api/azureml-pipeline-core/azureml.pipeline.core.pipeline%28class%29?view=azure-ml-py) object by using your workspace reference and the pipeline step that you created. The `steps` parameter is an array of steps. In this case, there's only one step for batch scoring. To build pipelines that have multiple steps, place the steps in order in this array.
@@ -368,7 +364,7 @@ RunDetails(pipeline_run).show()
368364
pipeline_run.wait_for_completion(show_output=True)
369365
```
370366

371-
## Resubmit a batch inference pipeline run with a different dataset and parameters
367+
## Resubmit a run with new parameters
372368

373369
You can resubmit a run with a different dataset without having to create an entirely new experiment.
374370

0 commit comments

Comments
 (0)