Skip to main content

Find your way in a maze of experiments

Project description

Ariadne is a lightweight and minimal Python library for managing computational experiments and their results. WARNING: This library is developed for personal use. Anyone is welcome to use it and give feedback, but be ready for sharp edges and breaking changes.

Basic Usage

The primary goal of Ariadne is to help keep track of what you did and what the results were. The rapid prototyping workflow that research encourages often leads to issues with reproducibility. Plots and results can become stale and lack provenance - it's not clear what codebase these results were generated from. Results may often become overwritten and lost, making it impossible to recover what the results looked like for an earlier snapshot of the codebase. This is especially relevant for expensive operations like training runs, etc, where it's infeasible to re-run a pipeline whenever you want to remember what the results looked like at an earlier stage of the project.

The solution Ariadne provides is the simplest one possible: assign each experiment to a different unique folder. We provide simple utilities for creating and managing these folders, as well as saving useful metadata (like timestamps, notes, and configs) to make organizing these experiments easier. The primary experiment management happens in the Theseus class. Calling start or resume returns a id for that experiment, along with the dedicated folder that everything should be stored under.

from Ariadne import Theseus

experiment = Theseus(db_path="experiments.db", base_dir="results")
experiment_id, experiment_folder = experiment.start(name="resnet", notes="try resnet instead of mlp", run_config={"architecture": "resnet-50"})

for epoch in range(len(50)):
    x = [0, 1]
    yhat = [0, 0]
    y = [1, 1]
    loss = 1
    experiment.log({"epoch": epoch, "loss": loss})

    plt.plot(x, yhat, "-")
    plt.plot(x, y, "--")
    plt.savefig(experiment_folder / f"predictions{epoch}.png")

Ariadne then provides utilities for querying the experiment database by name (or an exact match by id), to quickly associate an experiment with its dedicated folder on disk.

experiment_id, experiment_folder = experiment.get("resnet") # searches by substring match
experiment_id, experiment_folder = experiment.peek() # last run experiment
experiment_id = 3
experiment_folder = experiment.get_by_id(experiment_id) # or exact id match

img = plt.imread(experiment_folder / "predictions49.png")
plt.imshow(img)

Finally, Ariadne provides a simple cli for querying and summarizing experiments. Simply run ariadne --help for more information.

FAQ:

Q: Why the name? A: My project directories often end up evolving into a tangled mess of results, plots, and files, not unlike a maze. In greek mythology, Ariadne's red string was the crucial key for helping Theseus escape the labyrinth of Crete.

Q: Why not weights and biases, tensorboard, or other experiment management tools? A: You probably should use them instead if you can! But here's a brief reason why I wrote this library instead:

  • Experiments are stored locally and a simple CLI is provided. No need for a web server or a browser.
  • Because all Ariadne does is handle creation and management of experiment folders, it composes well with other libraries. Your logging, plot creation and saving, and checkpointing code can remain exactly the same - just prepend the experiment folder in front of the save path.
  • I simply don't need most of the features these other experiment management frameworks offer.

Q: Why not git lfs? A: Git LFS is great for versioning large files. But, when you are rapidly iterating and creating throwaway experiments that you might not need to share, constantly writing and overwriting rich data like plots makes for horribly ugly diffs, and can bloat your cloud storage.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ariadne_lib-0.1.1.tar.gz (37.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ariadne_lib-0.1.1-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file ariadne_lib-0.1.1.tar.gz.

File metadata

  • Download URL: ariadne_lib-0.1.1.tar.gz
  • Upload date:
  • Size: 37.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.4.24

File hashes

Hashes for ariadne_lib-0.1.1.tar.gz
Algorithm Hash digest
SHA256 07d2a8d48d9ecad7329df5aa47823a2237206932ca0c51db628cb10ccba5992d
MD5 981d6484e0fcf34d5879371a087acda4
BLAKE2b-256 c57b67257360965517f97fd0cbcd9f9936d914aecb32ce2ded84e8f6bad224d0

See more details on using hashes here.

File details

Details for the file ariadne_lib-0.1.1-py3-none-any.whl.

File metadata

File hashes

Hashes for ariadne_lib-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 c6bb3a9b669937da24344da3596e5faf3a52f8a76765de041aa9dd700955688f
MD5 bbf1a35d64b2d966beb7962cd6190493
BLAKE2b-256 47cbdb58cb85b019cd4f5c01207bee45a69f513b38cd909fb2d11e39ecf92b96

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page