Skip to content

Commit 4504bfd

Browse files
author
Larry O'Brien
committed
Mods per review
1 parent da8e9d9 commit 4504bfd

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/machine-learning/how-to-move-data-in-and-out-of-pipelines.md renamed to articles/machine-learning/how-to-move-data-in-out-of-pipelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Input and Output Data from ML Pipelines'
2+
title: 'Input and output data from ML pipelines'
33
titleSuffix: Azure Machine Learning
44
description: Prepare, consume, and generate data in Azure Machine Learning pipelines
55
services: machine-learning
@@ -221,7 +221,7 @@ with open(args.pd) as f:
221221
print(f.read())
222222
```
223223

224-
## Convert `PipelineData` objects into registered `Dataset`s for further processing
224+
## Convert `PipelineData` objects to `Dataset`s
225225

226226
If you'd like to make your `PipelineData` available for longer than the duration of a run, use its `as_dataset()` function to convert it to a `Dataset`. You may then register the `Dataset`, making it a first-class citizen in your workspace. Since your `PipelineData` object will have a different path every time the pipeline runs, it's highly recommended that you set `create_new_version` to `True` when registering a `Dataset` created from a `PipelineData` object.
227227

articles/machine-learning/toc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@
352352
- name: Create ML pipelines (Python)
353353
href: how-to-create-your-first-pipeline.md
354354
- name: Moving data into and between ML pipeline steps (Python)
355-
href: how-to-move-data-in-and-out-of-pipelines.md
355+
href: how-to-move-data-in-out-of-pipelines.md
356356
- name: Schedule a pipeline (Python)
357357
href: how-to-schedule-pipelines.md
358358
- name: Trigger a pipeline

0 commit comments

Comments
 (0)