Skip to main content

Installation

pip install -e ".[all]"

Quick Start

A browser-based interface for the full training pipeline — upload data, configure training, and view results without writing code.
# Launch
reverie ui
Opens at http://127.0.0.1:7860. Customize host and port with --host and --port:
reverie ui --host 0.0.0.0 --port 8000
The Web UI requires foundation model dependencies to run training. Install with pip install -e ".[all]" for both UI and model support.

Option 2: CLI

reverie train \
    --model standard-model \
    --data ./data/synthetic_data.parquet \
    --labels ./data/synthetic_labels.csv \
    --label-column label \
    --output ./results
Use the Web UI for your first run. Use the CLI when you want reproducible runs in scripts.