Skip to main content

A simple, file-based Python library for tracking machine learning experiments.

Project description

RuneLog

Build Status Codecov Ask DeepWiki Docs

Lightweight ML Tracker

A simple, file-based Python library for tracking machine learning experiments, inspired by MLflow.

RuneLog is in active development. The core API is functional but subject to change.

The name RuneLog is a play on words. It's reminiscent of the common run.log() command used to log an experiment in tracking systems, while also treating these powerful, and sometimes mysterious, models as modern-day mystical writings: a "log of runes".

Why RuneLog?

  • Zero-Overhead Setup: start tracking runs in a single line
  • Local-First, Lightweight: perfect for solo devs or small teams
  • Portable & Transparent: data is stored in simple folders/files

Installation

User Setup

This is the recommended way to install runelog if you just want to use it in your projects.

  1. Make sure you have Python 3.10+ installed.
  2. Install the library from PyPI using pip:
pip install runelog

That's it! You can now import it into your Python scripts.

Quickstart

Start tracking your ML experiments in just a few lines of code:

from runelog import get_tracker

# 1. Initialize the tracker
tracker = get_tracker(experiment_name="my-first-experiment")

# 2. Start a run
with tracker.start_run():
    # 3. Your training code and logging calls go here
    tracker.log_metric("accuracy", 0.95)

Check the detailed Quickstart Guide for for a complete runnable example.

Development Setup

  1. Clone the repository:
git clone https://github.com/gonz4lex/runelog.git
cd runelog
  1. Create and activate a virtual environment:
python3 -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
  1. Install in Editable Mode: Install the package and all development dependencies from your pyproject.toml file.
pip install -e .[dev]

Development Workflow

RuneLog uses Hatch to manage dependencies, environments, and scripts.

  1. Environment Setup: the primary command to enter a fully configured development environment is hatch shell. This will create a virtual environment, install all dependencies listed in pyproject.toml, and activate it.
hatch shell
  1. Formatting Code

RuneLog uses Black for automatic code formatting. To format all project files, run the following command:

hatch run lint:format
  1. Running Tests

The test suite is run using pytest and the test environment is configured to automatically run tests with coverage:

hatch run test

This command is a shortcut for pytest --cov=src/runelog --cov-report=term-missing --cov-report=xml.

  1. Building the Documentation

To preview the documentation site locally with live reloading, you can add a docs environment to your pyproject.toml.

hatch run docs:serve
  1. Building the Package

To build the distributable package files (.whl and .tar.gz) just run:

hatch build

The files will be created in the dist/ directory, ready for publishing.

Usage Examples

You can find example scripts in the examples/ directory:

train_model.py

Full pipeline example with:

  • logging parameters and metrics
  • saving and registering models
  • tagging and retrieving models
python examples/train_model.py  # or use the CLI: runelog examples train

minimal_tracking.py

Minimal working example with only metric logging.

python examples/minimal_tracking.py  # or use the CLI: runelog examples minimal

sweep/sweep.py

Sweep example with configuration file to define runs.

python examples/sweep/sweep.py # or use the CLI: runelog examples sweep

Features

  • Core Tracking API: Experiments, runs, parameters, metrics.
  • Artifact Logging: Save model files, plots, and other artifacts.
  • Model Registry: Version and tag models.
  • Streamlit UI: Interactive dashboard to explore runs and the registry.
  • Command-Line Interface (CLI) for programmatic interaction.
  • Full Test Coverage: Comprehensive unit and integration tests.

🐳 Running the UI with Docker

The easiest way to run the Runelog web UI without setting up a local Python environment is with Docker. You must have Docker installed and running.

Instructions

  1. Build the Docker image from the root of the project directory:

    docker build -t runelog-app .
    
  2. Use docker-compose to start the application:

    docker-compose up
    
  3. To access the UI, open your web browser and navigate to: http://localhost:8501

  4. To stop the application, press Ctrl+C in the terminal, and then run:

    docker-compose down
    

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

runelog-0.1.1.tar.gz (39.8 kB view details)

Uploaded Source

Built Distribution

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

runelog-0.1.1-py3-none-any.whl (20.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: runelog-0.1.1.tar.gz
  • Upload date:
  • Size: 39.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for runelog-0.1.1.tar.gz
Algorithm Hash digest
SHA256 36fb4a686c626d7e3a92f1e320ec037b9babf53d8b5e2c8adb1530ff31440089
MD5 7cfdb18a8cdd7ed6d1cc35497736c47f
BLAKE2b-256 1cd95602b08f9f4881102d0b5d009644a54460368eee34413977fad39db8d3b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: runelog-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 20.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for runelog-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 cb3f1ddcc3ffe17628e3615f0069c9368349a7ebb68289117cd2b9c358745895
MD5 f4d459358ab22fe7497a215ade96130a
BLAKE2b-256 39331ba25546d165c48497f8aeabd2e37574c912809eae5984e03346f5d3e7ce

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