Skip to content

Commit f48baa1

Browse files
author
Larry O'Brien
committed
Added allow_reuse arg, since it’s discussed as important
Following para talks about how important allow_reuse is, so added it to the code sample.
1 parent a23f4cc commit f48baa1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/machine-learning/how-to-create-your-first-pipeline.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,8 @@ trainStep = PythonScriptStep(
278278
inputs=[ds_input],
279279
outputs=[output_data1],
280280
compute_target=compute_target,
281-
source_directory=project_folder
281+
source_directory=project_folder,
282+
allow_reuse=True
282283
)
283284
```
284285

0 commit comments

Comments
 (0)