Pipelines
How to create ML pipelines in ZenML
ZenML helps you standardize your ML workflows as ML Pipelines consisting of decoupled, modular Steps. This enables you to write portable code that can be moved from experimentation to production in seconds.
If you are new to MLOps and would like to learn more about ML pipelines in general, checkout ZenBytes, our lesson series on practical MLOps, where we introduce ML pipelines in more detail in ZenBytes lesson 1.1.
🚶♀️Step
Steps are the atomic components of a ZenML pipeline. Each step is defined by its inputs, the logic it applies and its outputs. Here is a very basic example of such a step, which uses a utility function to load the Digits dataset:
As this step has multiple outputs, we need to use the zenml.steps.step_output.Output
class to indicate the names of each output. These names can be used to directly access the outputs of steps after running a pipeline, as we will see in a later chapter.
Let’s come up with a second step that consumes the output of our first step and performs some sort of transformation on it. In this case, let’s train a support vector machine classifier on the training data using sklearn:
Next, we will combine our two steps into our first ML pipeline.
In case you want to run the step function outside the context of a ZenML pipeline, all you need to do is call the .entrypoint()
method with the same input signature. For example:
Pipeline
Let us now define our first ML pipeline. This is agnostic of the implementation and can be done by routing outputs through the steps within the pipeline. You can think of this as a recipe for how we want data to flow through our steps.
Instantiate and run your Pipeline
With your pipeline recipe in hand you can now specify which concrete step implementations to use when instantiating the pipeline:
You can then execute your pipeline instance with the .run()
method:
You should see the following output in your terminal:
We will dive deeper into how to inspect the finished run within the chapter on Accessing Pipeline Runs.
Inspect your pipeline in the dashboard
Notice the last log, that indicates running a command to view the dashboard. Check out the dashboard guide in the next section to inspect your pipeline there.
Give each pipeline run a name
When running a pipeline by calling my_pipeline.run()
, ZenML uses the current date and time as the name for the pipeline run. In order to change the name for a run, pass run_name
as a parameter to the run()
function:
Pipeline run names must be unique, so make sure to compute it dynamically if you plan to run your pipeline multiple times.
Unlisted runs
Once a pipeline has been executed, it is represented by a PipelineSpec that uniquely identifies it. Therefore, you cannot edit a pipeline after it has been run once. In order to iterate quickly pipelines, there are three options:
- Pipeline runs can be created without being associated with a pipeline explicitly. These are called
unlisted
runs and can be created by passing theunlisted
parameter when running a pipeline:pipeline_instance.run(unlisted=True)
. - Pipelines can be deleted and created again using
zenml pipeline delete <PIPELINE_ID_OR_NAME>
. - Pipelines can be given unique names each time they are run to uniquely identify them.
We will dive into quickly iterating over pipelines later in this section.