Manage artifacts
Understand and adjust how ZenML versions your data.
Data sits at the heart of every machine learning workflow. Managing and versioning this data correctly is essential for reproducibility and traceability within your ML pipelines. ZenML takes a proactive approach to data versioning, ensuring that every artifact—be it data, models, or evaluations—is automatically tracked and versioned upon pipeline execution.

This guide will delve into artifact versioning and management, showing you how to efficiently name, organize, and utilize your data with the ZenML framework.
Managing artifacts produced by ZenML pipelines
Artifacts, the outputs of your steps and pipelines, are automatically versioned and stored in the artifact store. Configuring these artifacts is pivotal for transparent and efficient pipeline development.
Giving names to your artifacts
Assigning custom names to your artifacts can greatly enhance their discoverability and manageability. As best practice, utilize the Annotated
object within your steps to give precise, human-readable names to outputs:
Unspecified artifact outputs default to a naming pattern of {pipeline_name}::{step_name}::output
. For visual exploration in the ZenML dashboard, it's best practice to give significant outputs clear custom names.
Artifacts named iris_dataset
can then be found swiftly using various ZenML interfaces:
To list artifacts: zenml artifact list
Versioning artifacts manually
ZenML automatically versions all created artifacts using auto-incremented numbering. I.e., if you have defined a step creating an artifact named iris_dataset
as shown above, the first execution of the step will create an artifact with this name and version "1", the second execution will create version "2", and so on.
While ZenML handles artifact versioning automatically, you have the option to specify custom versions using the ArtifactConfig
. This may come into play during critical runs like production releases.
The next execution of this step will then create an artifact with the name iris_dataset
and version raw_2023
. This is primarily useful if you are making a particularly important pipeline run (such as a release) whose artifacts you want to distinguish at a glance later.
Since custom versions cannot be duplicated, the above step can only be run once successfully. To avoid altering your code frequently, consider using a YAML config for artifact versioning.
After execution, iris_dataset
and its version raw_2023
can be seen using:
To list versions: zenml artifact version list
Add metadata and tags
If you would like to extend your artifacts and runs with extra metadata or tags you can do so by following the patterns demonstrated below:
Comparing metadata across runs (Pro)
The ZenML Pro dashboard includes an Experiment Comparison tool that allows you to visualize and analyze metadata across different pipeline runs. This feature helps you understand patterns and changes in your pipeline's behavior over time.
Using the comparison views
The tool offers two complementary views for analyzing your metadata:
Table View
The tabular view provides a structured comparison of metadata across runs:

This view automatically calculates changes between runs and allows you to:
Sort and filter metadata values
Track changes over time
Compare up to 20 runs simultaneously
Parallel Coordinates View
The parallel coordinates visualization helps identify relationships between different metadata parameters:

This view is particularly useful for:
Discovering correlations between different metrics
Identifying patterns across pipeline runs
Filtering and focusing on specific parameter ranges
Accessing the comparison tool
To compare metadata across runs:
Navigate to any pipeline in your dashboard
Click the "Compare" button in the top navigation
Select the runs you want to compare
Switch between table and parallel coordinates views using the tabs
The comparison tool works with any numerical metadata (float
or int
) that you've logged in your pipelines. Make sure to log meaningful metrics in your steps to make the most of this feature.
Sharing comparisons
The tool preserves your comparison configuration in the URL, making it easy to share specific views with team members. Simply copy and share the URL to allow others to see the same comparison with identical settings and filters.
This feature is currently in Alpha Preview. We encourage you to share feedback about your use cases and requirements through our Slack community.
Specify a type for your artifacts
Assigning a type to an artifact allows ZenML to highlight them differently in the dashboard and also lets you filter your artifacts better.
If you don't specify a type for your artifact, ZenML will use the default artifact type provided by the materializer that is used to save the artifact.
Consuming external artifacts within a pipeline
While most pipelines start with a step that produces an artifact, it is often the case to want to consume artifacts external from the pipeline. The ExternalArtifact
class can be used to initialize an artifact within ZenML with any arbitrary data type.
For example, let's say we have a Snowflake query that produces a dataframe, or a CSV file that we need to read. External artifacts can be used for this, to pass values to steps that are neither JSON serializable nor produced by an upstream step:
Optionally, you can configure the ExternalArtifact
to use a custom materializer for your data or disable artifact metadata and visualizations. Check out the SDK docs for all available options.
Using an ExternalArtifact
for your step automatically disables caching for the step.
Consuming artifacts produced by other pipelines
It is also common to consume an artifact downstream after producing it in an upstream pipeline or step. As we have learned in the previous section, the Client
can be used to fetch artifacts directly inside the pipeline code:
Calls of Client
methods like get_artifact_version
directly inside the pipeline code makes use of ZenML's late materialization behind the scenes.
If you would like to bypass materialization entirely and just download the data or files associated with a particular artifact version, you can use the .download_files
method:
Take note that the path must have the .zip
extension, as the artifact data will be saved as a zip file. Make sure to handle any exceptions that may arise from this operation.
Managing artifacts not produced by ZenML pipelines
Sometimes, artifacts can be produced completely outside of ZenML. A good example of this is the predictions produced by a deployed model.
You can also load any artifact stored within ZenML using the load_artifact
method:
load_artifact
is simply short-hand for the following Client call:
Even if an artifact is created externally, it can be treated like any other artifact produced by ZenML steps - with all the functionalities described above!
It is also possible to use these functions inside your ZenML steps. However, it is usually cleaner to return the artifacts as outputs of your step to save them, or to use External Artifacts to load them instead.
Linking existing data as a ZenML artifact
Sometimes, data is produced completely outside of ZenML and can be conveniently stored on a given storage. A good example of this is the checkpoint files created as a side-effect of the Deep Learning model training. We know that the intermediate data of the deep learning frameworks is quite big and there is no good reason to move it around again and again, if it can be produced directly in the artifact store boundaries and later just linked to become an artifact of ZenML. Let's explore the Pytorch Lightning example to fit the model and store the checkpoints in a remote location.
The artifact produced from the preexisting data will have a pathlib.Path
type, once loaded or passed as input to another step.
Even if an artifact is created and stored externally, it can be treated like any other artifact produced by ZenML steps - with all the functionalities described above!
For more details and use-cases check-out detailed docs page Register Existing Data as a ZenML Artifact.
Logging metadata for an artifact
One of the most useful ways of interacting with artifacts in ZenML is the ability to associate metadata with them. As mentioned before, artifact metadata is an arbitrary dictionary of key-value pairs that are useful for understanding the nature of the data.
As an example, one can associate the results of a model training alongside a model artifact, the shape of a table alongside a pandas
dataframe, or the size of an image alongside a PNG file.
For some artifacts, ZenML automatically logs metadata. As an example, for pandas.Series
and pandas.DataFrame
objects, ZenML logs the shape and size of the objects:
A user can also add metadata to an artifact within a step directly using the log_artifact_metadata
method:
For further depth, there is an advanced metadata logging guide that goes more into detail about logging metadata in ZenML.
Additionally, there is a lot more to learn about artifacts within ZenML. Please read the dedicated data management guide for more information.
Code example
This section combines all the code from this section into one simple script that you can use easily:

Last updated
Was this helpful?