You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: In this article, learn about the machine learning pipelines you can build with the Azure Machine Learning SDK for Python and the advantages to using pipelines. Machine learning (ML) pipelines are used by data scientists to build, optimize, and manage their machine learning workflows.
5
5
services: machine-learning
@@ -13,20 +13,16 @@ ms.date: 08/08/2019
13
13
ms.custom: seodec18
14
14
---
15
15
16
-
# Build reusable ML pipelines in Azure Machine Learning service
16
+
# What are ML pipelines in Azure Machine Learning service?
17
17
18
-
In this article, learn about the machine learning pipelines you can build with the Azure Machine Learning SDK for Python, and the advantages to using pipelines.
19
-
20
-
## What are machine learning pipelines?
18
+
Learn how about the machine learning pipelines you can build and manage with Azure Machine Learning service.
21
19
22
20
Using machine learning (ML) pipelines, data scientists, data engineers, and IT professionals can collaborate on the steps involved in:
23
21
+ Data preparation, such as normalizations and transformations
24
22
+ Model training
25
23
+ Model evaluation
26
24
+ Deployment
27
25
28
-
The following diagram shows an example pipeline process:
29
-
30
26

31
27
32
28
<aname="compare"></a>
@@ -42,9 +38,7 @@ The Azure cloud provides several other pipelines, each with a different purpose.
42
38
43
39
## Why build pipelines with Azure Machine Learning?
44
40
45
-
You can use the [Azure Machine Learning SDK for Python](#the-python-sdk-for-pipelines) to create ML pipelines, as well as to submit and track individual pipeline runs.
46
-
47
-
With pipelines, you can optimize your workflow with simplicity, speed, portability, and reuse. When building pipelines with Azure Machine Learning, you can focus on your expertise, machine learning, rather than on infrastructure and automation.
41
+
Machine learning pipelines optimize your workflow with speed, portability, and reuse so you can focus on your expertise, machine learning, rather than on infrastructure and automation.
48
42
49
43
Pipelines are constructed from multiple **steps**, which are distinct computational units in the pipeline. Each step can run independently and use isolated compute resources. This allows multiple data scientists to work on the same pipeline at the same time without over-taxing compute resources, and also makes it easy to use different compute types/sizes for each step.
0 commit comments