Skip to content

Commit 8284c3a

Browse files
author
Larry O'Brien
committed
updated link to new dataset doc
1 parent d3d1400 commit 8284c3a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/machine-learning/concept-ml-pipelines.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ pipeline_run.wait_for_completion()
160160

161161
The snippet starts with common Azure Machine Learning objects, a `Workspace`, a `Datastore`, a [ComputeTarget](https://docs.microsoft.com/python/api/azureml-core/azureml.core.computetarget?view=azure-ml-py), and an `Experiment`. Then, the code creates the objects to hold `input_data` and `output_data`. The array `steps` holds a single element, a `PythonScriptStep` that will use the data objects and run on the `compute_target`. Then, the code instantiates the `Pipeline` object itself, passing in the workspace and steps array. The call to `experiment.submit(pipeline)` begins the Azure ML pipeline run. The call to `wait_for_completion()` blocks until the pipeline is finished.
162162

163-
To learn more about connecting your pipeline to your data, see the articles [Data access in Azure Machine Learning](concept-data.md) and [Moving data into and between ML pipeline steps (Python)](how-to-move-data-in-and-out-of-pipelines.md).
163+
To learn more about connecting your pipeline to your data, see the articles [Data access in Azure Machine Learning](concept-data.md) and [Moving data into and between ML pipeline steps (Python)](how-to-move-data-in-out-of-pipelines.md).
164164

165165
## Best practices when using pipelines
166166

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ output_data1 = PipelineData(
111111
output_name="output_data1")
112112
```
113113

114-
More details and sample code for working with datasets and pipeline data can be found in [Moving data into and between ML pipeline steps (Python)](how-to-move-data-in-and-out-of-pipelines.md).
114+
More details and sample code for working with datasets and pipeline data can be found in [Moving data into and between ML pipeline steps (Python)](how-to-move-data-in-out-of-pipelines.md).
115115

116116
## Set up a compute target
117117

@@ -355,7 +355,7 @@ The line `Run.get_context()` is worth highlighting. This function retrieves a `R
355355
ws = Run.get_context().experiment.workspace
356356
```
357357

358-
For more detail, including alternate ways to pass and access data, see [Moving data into and between ML pipeline steps (Python)](how-to-move-data-in-and-out-of-pipelines.md).
358+
For more detail, including alternate ways to pass and access data, see [Moving data into and between ML pipeline steps (Python)](how-to-move-data-in-out-of-pipelines.md).
359359

360360
## Submit the pipeline
361361

0 commit comments

Comments
 (0)