Skip to content

Commit 4c9f9bc

Browse files
committed
Update PipelineParameter
1 parent 6acd415 commit 4c9f9bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ batch_env.docker.base_image = DEFAULT_GPU_IMAGE
305305
- `run_invocation_timeout`: The `run()` method invocation timeout in seconds. (optional; default value is `60`)
306306
- `run_max_try`: Max call count for `run()` method against a mini-batch. A `run()` is failed if an exception is thrown, or nothing is returned when `run_invocation_timeout` is reached (optional; default value is `3`).
307307

308-
You can also use `PipelineParameter` for parameters in `ParallelRunConfig` so that when you resubmit a pipeline run, you can pass in different values. In this example, you use PipelineParameter for `mini_batch_size` and `Process_count_per_node` and you will tune these values when resubmit a run later.
308+
You can specify `mini_batch_size`, `node_count`, `process_count_per_node`, `logging_level`, `run_invocation_timeout` and `run_max_try` as `PipelineParameter`, so that when you resubmit a pipeline run, you can fine tune the parameter values. In this example, you use PipelineParameter for `mini_batch_size` and `Process_count_per_node` and you will change these values when resubmit a run later.
309309

310310
```python
311311
from azureml.pipeline.core import PipelineParameter

0 commit comments

Comments
 (0)