AI Features

Creating an E2E ML Pipeline

Create a machine learning pipeline in Azure.

What is a pipeline job?

Often, building ML models requires stitching multiple jobs together. For example, we might want to run two jobs in sequential order. We can stitch multiple steps into a single Azure pipeline in such a case. We will define a new job type pipeline and the sequential steps in the YAML file.

We can see a pipeline command example below. We have two jobs: hello_job and world_job, which run in sequence as a single pipeline. Let’s run ...

Ask