Create, Run and Benchmark DVC Pipelines in Python
Project description
ZnTrack: A Parameter Tracking Package for Python
ZnTrack zɪŋk træk
is a lightweight and easy-to-use package for tracking parameters in your Python projects using DVC.
With ZnTrack, you can define parameters in Python classes and monitor how they change over time.
This information can then be used to compare the results of different runs, identify computational bottlenecks, and avoid the re-running of code components where parameters have not changed.
Key Features
- Parameter, output and metric tracking: ZnTrack makes it easy to store and track the values of parameters in your Python code. It further allows you to store any outputs produced and gives an easy interface to define metrics.
- Lightweight and database-free: Unlike other parameter tracking solutions, ZnTrack is lightweight and does not require any databases.
Getting Started
To get started with ZnTrack, you can install it via pip: pip install zntrack
Next, you can start using ZnTrack to track parameters, outputs and metrics in your Python code.
Here's an example of how to use ZnTrack to track the value of a parameter in a Python class.
Start in an empty directory and run git init
and dvc init
for preparation.
Then put the following into a python file called hello_world.py
and call it with python hello_world.py
.
from zntrack import Node, zn
from random import randrange
class HelloWorld(Node):
"""Define a ZnTrack Node"""
# parameter to be tracked
max_number: int = zn.params()
# parameter to store as output
random_number: int = zn.outs()
def run(self):
"""Command to be run by DVC"""
self.random_number = randrange(self.max_number)
if __name__ == "__main__":
# Write the computational graph
HelloWorld(max_number=512).write_graph()
This will create a DVC stage HelloWorld
.
The workflow is defined in dvc.yaml
and the parameters are stored in params.yaml
.
You can run the workflow with dvc repro
.
Once the graph is executed, the results, i.e. the random number can be accessed directly by the Node object.
hello_world = HelloWorld.load()
print(hello_world.random_numer)
An overview of all the ZnTrack features as well as more detailed examples can be found in the ZnTrack Documentation.
Wrap Python Functions
ZnTrack also provides tools to convert a Python function into a DVC Node. This approach is much more lightweight compared to the class-based approach with only a reduced set of functionality. Therefore, it is recommended for smaller nodes that do not need the additional toolset that the class-based approach provides.
from zntrack import nodify, NodeConfig
import pathlib
@nodify(outs=pathlib.Path("text.txt"), params={"text": "Lorem Ipsum"})
def write_text(cfg: NodeConfig):
cfg.outs.write_text(
cfg.params.text
)
# build the DVC graph
write_text()
The cfg
dataclass passed to the function provides access to all configured files
and parameters via dot4dict. The function body
will be executed by the dvc repro
command or if ran via write_text(run=True)
.
All parameters are loaded from or stored in params.yaml
.
Technical Details
ZnTrack as an Object-Relational Mapping for DVC
On a fundamental level the ZnTrack package provides an easy-to-use interface for DVC directly from Python.
It handles all the computational overhead of reading config files, defining outputs in the dvc.yaml
as well as in the script and much more.
For more information on DVC visit their homepage.
Copyright
This project is distributed under the Apache License Version 2.0.
Similar Tools
The following (incomplete) list of other projects that either work together with ZnTrack or can achieve similar results with slightly different goals or programming languages.
- DVC - Main dependency of ZnTrack for Data Version Control.
- dvthis - Introduce DVC to R.
- DAGsHub Client - Logging parameters from within .Python
- MLFlow - A Machine Learning Lifecycle Platform.
- Metaflow - A framework for real-life data science.
- Hydra - A framework for elegantly configuring complex applications
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for zntrack-0.6.0a0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | d7fa0e3ce476209f8c181898a0a192538fbf2bd66acade9083b51ad6d8f9b6f0 |
|
MD5 | 259ebf12222556517ebc7675c759a80f |
|
BLAKE2b-256 | 7da9cca8c5fb1c7bd4b385bf00ac8ae1f713354dc864becbb176f1d69816b234 |