Skip to content

Commit 665c217

Browse files
committed
address comments
1 parent 905fbf8 commit 665c217

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

articles/machine-learning/how-to-manage-inputs-outputs-pipeline.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ The end to end notebook example in [azureml-example repo](https://github.com/Azu
194194

195195
### Studio
196196

197-
You can promote a component's input to pipeline level input in designer authoring page. Go to the component's setting panel by double click the component -> find the input you'd like to promote -> Select the three dots on the right -> Select Add to pipeline input.
197+
You can promote a component's input to pipeline level input in designer authoring page. Go to the component's setting panel by double clicking the component -> find the input you'd like to promote -> Select the three dots on the right -> Select Add to pipeline input.
198198

199199
:::image type="content" source="./media/how-to-manage-pipeline-input-output/promote-pipeline-input.png" lightbox="./media/how-to-manage-pipeline-input-output/promote-pipeline-input.png" alt-text="Screenshot highlighting how to promote to pipeline input in designer.":::
200200

@@ -208,7 +208,7 @@ Optional input can be useful in below two scenarios:
208208
- If you have an optional data/model type input and don't assign a value to it when submitting the pipeline job, there will be a component in the pipeline that lacks a preceding data dependency. In other words, the input port isn't linked to any component or data/model node. This causes the pipeline service to invoke this component directly, instead of waiting for the preceding dependency to be ready.
209209
- Below screenshot provides a clear example of the second scenario. If you set `continue_on_step_failure = True` for the pipeline and have a second node (node2) that uses the output from the first node (node1) as an optional input, node2 will still be executed even if node1 fails. However, if node2 is using required input from node1, it will not be executed if node1 fails.
210210

211-
:::image type="content" source="./media/how-to-manage-pipeline-input-output/continue_on_failure_optinal_input.png" lightbox="./media/how-to-manage-pipeline-input-output/continue_on_failure_optinal_input.png" alt-text="Screenshot to show the orchestration logic of optional input and continue on failure.":::
211+
:::image type="content" source="./media/how-to-manage-pipeline-input-output/continue-on-failure-optional-input.png" lightbox="./media/how-to-manage-pipeline-input-output/continue-on-failure-optional-input.png" alt-text="Screenshot to show the orchestration logic of optional input and continue on failure.":::
212212

213213
Following are examples about how to define optional input.
214214

39.1 KB
Loading

0 commit comments

Comments
 (0)