Skip to main content

Light-weight experiment tracker

Project description

🔬 ERM: Experiment Results Manager

Light-weight alternative to mlflow experiment tracking that doesn't require kubernetes. Useful tool to compare metrics between training attempts in your model training workflow

✨ Features

  • 📈 Track plots, metrics, & other data
  • 👀 Side-by-side comparison
  • 💾 Experiment registry
  • ⛅️ Supports S3, GCS, Azure and others (via fsspec)

🚀 Examples & Demos

✅ Get Started

Installation

pip install experiment-results-manager \
  gcsfs \
  s3fs
# install s3fs if you plan to store data in s3
# install gcsfs if you plan to store data in google cloud storage

Basic Usage

import experiment_results_manager as erm

# Create an experiment run
er = erm.ExperimentRun(
    experiment_id="my_experiment",
    variant_id="main"
)

# Log relevant data
er.log_param("objective", "rmse")
er.log_metric("rmse", "0.9")
er.log_figure(mpl_fig, "ROC Curve")
er.log_text("lorem ipsum...", "text")

# Display the report (if you are in a notebook)
html = erm.compare_runs(er)
display(HTML(html))

# Save to registry
saved_path = erm.save_run_to_registry(er, "s3://erm-registry")

Made with ❤️ in Berlin

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

experiment-results-manager-0.1.2.tar.gz (22.2 kB view hashes)

Uploaded Source

Built Distribution

experiment_results_manager-0.1.2-py3-none-any.whl (23.7 kB view hashes)

Uploaded Python 3

Supported by

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