A scratchpad for experiments and notes built on top of nexa-gauge.
This is not a library or shippable software — just a place to keep small scripts, one-off experiments, and the notes that go with them.
.
├── src/ # experiment scripts
├── results/ # run outputs (gitignored)
└── *.story.md # per-experiment write-ups (gitignored)
Requires Python 3.10+.
python -m venv .venv
source .venv/bin/activate
pip install -e .This installs nexa-gauge with the huggingface extra.
- One script per experiment under
src/. - Outputs go to
results/— never committed. - Each experiment may have a sibling
*.story.mdcapturing what was tried, what happened, and what to do next. These are local-only.