A framework that helps you setup and run reproducible experiments in python.
Project description
Pystematic is a lightweight framework that helps you to systematically setup and run reproducible computational experiments in python.
Main features:
Standardizes how experiments and associated parameters are defined.
Provides both CLI and programmatic interfaces for running your experiments.
Encourages reproducibility by isolating experiment outputs and providing tools for managing random seeds.
Quickstart
Installation
pystematic is available on pypi, and can be installed with your package manager of choice.
If using poetry:
$ poetry add pystematic
or with pip:
$ pip install pystematic
Defining and running experiments
Experiments and parameters are defined by decorating the main function of the experiment. The following example defines an experiment named hello_world with a single parameter name:
import pystematic as ps
@ps.parameter(
name="name",
help="The name to greet.",
)
@ps.experiment
def hello_world(params):
print(f"Hello {params['name']}!")
You can run the experiment either by supplying a dict containing the values for the parameters:
hello_world.run({
"name": "World",
})
or you can run the experiment from the command line by invoking the cli() method of the experiment:
if __name__ == "__main__":
hello_world.cli()
Then from the terminal you simply run:
$ python path/to/file.py --name "World"
Documentation
Full documentation is available at https://pystematic.readthedocs.io.
Extensions
For running machine learning experiments in pytorch check out the pystematic-torch plugin.
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 Distributions
Built Distribution
Hashes for pystematic-1.5.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8789b862d8d953fb4eb27c5648511f02f2b6a222410dc68a65956f397b408744 |
|
MD5 | ec6f63ad57bdcac39b976bfea38772c9 |
|
BLAKE2b-256 | 13e1cd4fe508a2202c12b0fe28f9bb9abb91e454452a4a1119e2c3dbd0d993c5 |