Integrations
Last updated
Was this helpful?
Last updated
Was this helpful?
Categorizing the MLOps stack is a good way to write abstractions for an MLOps pipeline and standardize your processes. But ZenML goes further and also provides concrete implementations of these categories by integrating with various tools for each category. Once code is organized into a ZenML pipeline, you can supercharge your ML workflows with the best-in-class solutions from various MLOps areas.
For example, you can orchestrate your ML pipeline workflows using or , track experiments using or , and transition seamlessly from a local to a deployed model on Kubernetes using .
There are lots of moving parts for all the MLOps tooling and infrastructure you require for ML in production and ZenML brings them all together and enables you to manage them in one place. This also allows you to delay the decision of which MLOps tool to use in your stack as you have no vendor lock-in with ZenML and can easily switch out tools as soon as your requirements change.
ZenML provides a way to export the package requirements for both individual integrations and entire stacks, enabling you to install the necessary dependencies manually. This approach gives you full control over the versions and the installation process.
You can export the requirements for a specific integration using the zenml integration export-requirements
command. To write the requirements to a file and install them via pip, run:
If you prefer to see the requirements without writing them to a file, omit the --output-file
flag:
This will print the list of dependencies to the console, which you can then pipe to pip:
To install all dependencies for a specific ZenML stack at once, you can export your stack's requirements:
Omitting --output-file
will print the requirements to the console:
You can also pipe the output directly to pip:
We have a that indexes all supported ZenML integrations and their categories.
Another easy way of seeing a list of integrations is to see the list of directories in the on our GitHub.
If you use a different package manager such as , you can install the exported requirements by replacing pip install -r …
with your package manager's equivalent command.
There are countless tools in the ML / MLOps field. We have made an initial prioritization of which tools to support with integrations that are visible on our public .
We also welcome community contributions. Check our and for more details on how to best contribute to new integrations.