Skip to content

Commit 933fd36

Browse files
committed
Fix typo
1 parent 30f8384 commit 933fd36

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/machine-learning/v1/how-to-use-automlstep-in-pipelines.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Use Automated Machine Learning in Pipelines
33
titleSuffix: Azure Machine Learning
4-
description: Learn how to use AutoMLStep to set up automated machine learning in your pipelines.
4+
description: Learn how to use AutoMLStep to set up automated machine learning in your pipeline.
55
services: machine-learning
66
ms.service: azure-machine-learning
77
ms.subservice: automl
@@ -13,15 +13,15 @@ ms.topic: how-to
1313
ms.custom: UpdateFrequency5, devx-track-python, automl, sdkv1
1414
---
1515

16-
# Use AutoML in an Azure Machine Learning pipeline with Python
16+
# Use AutoML in an Azure Machine Learning pipeline
1717

1818
[!INCLUDE [sdk v1](../includes/machine-learning-sdk-v1.md)]
1919

2020
[!INCLUDE [v1 deprecation](../includes/sdk-v1-deprecation.md)]
2121

22-
Azure Machine Learning's automated machine learning (AutoML) capability helps you discover high-performing models without you reimplementing every possible approach. Combined with Azure Machine Learning pipelines, you can create deployable workflows that can quickly discover the algorithm that works best for your data.
22+
Azure Machine Learning's automated machine learning (AutoML) capability helps you discover high-performing models without reimplementing every possible approach. Combined with Azure Machine Learning pipelines, you can create deployable workflows that quickly discover the algorithm that works best for your data.
2323

24-
This article explains how to efficiently join a data preparation step to an automated machine learning step. AutoML can quickly discover the algorithm that works best for your data, while putting you on the road to MLOps and model lifecycle operationalization with pipelines.
24+
This article explains how to efficiently join a data preparation step to an automated machine learning step by using Python. AutoML can quickly discover the algorithm that works best for your data, while putting you on the road to MLOps and model lifecycle operationalization with pipelines.
2525

2626
## Prerequisites
2727

@@ -205,7 +205,7 @@ Since the `output_path` is a directory, the call to `to_csv()` specifies the fil
205205

206206
### Write the data preparation pipeline step (`PythonScriptStep`)
207207

208-
The data preparation code described must be associated with a `PythonScripStep` object to be used with a pipeline. The path to which the CSV output is written is generated by a `OutputFileDatasetConfig` object. The resources prepared earlier, such as the `ComputeTarget`, the `RunConfig`, and the `'titanic_ds' Dataset` are used to complete the specification.
208+
The data preparation code described must be associated with a `PythonScriptStep` object to be used with a pipeline. The path to which the CSV output is written is generated by a `OutputFileDatasetConfig` object. The resources prepared earlier, such as the `ComputeTarget`, the `RunConfig`, and the `'titanic_ds' Dataset` are used to complete the specification.
209209

210210
```python
211211
from azureml.data import OutputFileDatasetConfig
@@ -232,7 +232,7 @@ Configuring an automated machine learning pipeline step is done with the `AutoML
232232

233233
### Send data to AutoMLStep
234234

235-
In a machine learning pipeline, the input data must be a `Dataset` object. The highest-performing way is to provide the input data in the form of `OutputTabularDatasetConfig` objects. You create an object of that type with the `read_delimited_files()` on a `OutputFileDatasetConfig`, such as the `prepped_data_path`, such as the `prepped_data_path` object.
235+
In a machine learning pipeline, the input data must be a `Dataset` object. The highest-performing way is to provide the input data in the form of `OutputTabularDatasetConfig` objects. You create an object of that type with the `read_delimited_files()` on a `OutputFileDatasetConfig`, such as the `prepped_data_path`, such as the `prepped_data_path` object.
236236

237237
```python
238238
# type(prepped_data) == OutputTabularDatasetConfig
@@ -256,7 +256,7 @@ Comparing the two techniques:
256256
| Registered `Dataset` | Lower performance |
257257
| | Can be generated in many ways |
258258
| | Data persists and is visible throughout workspace |
259-
| | [Notebook showing registered `Dataset` technique](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/automated-machine-learning/continuous-retraining/auto-ml-continuous-retraining.ipynb)
259+
| | [Notebook showing registered `Dataset` technique](https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/automated-machine-learning/continuous-retraining/auto-ml-continuous-retraining.ipynb) |
260260

261261
### Specify AutoML outputs
262262

0 commit comments

Comments
 (0)