ML experiment tracker
Project description
GoodSeed
ML experiment tracker. Logs metrics and configs to local SQLite files, serves them via a built-in HTTP server, and visualizes them in the browser.
Full documentation at goodseed.ai/docs.
Install
pip install goodseed
Python 3.9+ required. No runtime dependencies.
For development:
pip install -e ".[dev]"
Quick Start
Log metrics and configs from a training script:
import goodseed
run = goodseed.Run(experiment_name="my-experiment")
run.log_configs({"learning_rate": 0.001, "batch_size": 32})
for step in range(100):
loss = train_step()
run.log_metrics({"loss": loss}, step=step)
run.close()
Your data is saved to a local SQLite file. You can also use with goodseed.Run(...) as run: to close the run automatically.
Then view your runs:
goodseed serve
Open the printed link in your browser to see your runs, metrics, and configs.
Coming from Neptune?
You can export your data from neptune.ai and import it into GoodSeed using neptune-exporter. See the migration guide for details.
Configuration
| Variable | Description |
|---|---|
GOODSEED_HOME |
Data directory (default: ~/.goodseed) |
GOODSEED_PROJECT |
Default project name (default: default) |
CLI
goodseed # Start the server (default command)
goodseed serve [dir] # Start the server, optionally from a specific directory
goodseed serve --port 9000 # Use a custom port
goodseed list # List projects
goodseed list -p default # List runs in a project
Tests
pip install -e ".[dev]"
pytest tests/ -v
See DOCS.md for architecture details and API reference.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file goodseed-0.2.6.tar.gz.
File metadata
- Download URL: goodseed-0.2.6.tar.gz
- Upload date:
- Size: 68.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f38901159519f491b7480a6edff98ec24c6940a19169735eb88aced5aa162b3a
|
|
| MD5 |
702f94ad365d88cd564b8c60fd480a55
|
|
| BLAKE2b-256 |
7a8bd0291fb32e3e33f68caeb71e949d1879d9679f6d1d85e8e4f83f729c7563
|
File details
Details for the file goodseed-0.2.6-py3-none-any.whl.
File metadata
- Download URL: goodseed-0.2.6-py3-none-any.whl
- Upload date:
- Size: 19.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1b18678aefeec22b486364e9747d15d10a26846b10412cfc00a970a6871cee67
|
|
| MD5 |
f087c42fd675f511549b2f8fe20b14b0
|
|
| BLAKE2b-256 |
adb2dd45e673114ade6c2b04f3803dd90508fe03c964d3ede3ed094bc503ffd5
|