Track machine learning experiments.
Project description
MLTracker: Lightweight Machine Learning Experiment Tracker
MLTracker is a lightweight library for tracking machine learning experiments, models and metrics. It is a simple data model built on TinyDB. I create this for personal use but feel free to use it as you want.
📖 Full documentation: API Reference
Installation
pip install mltracker
Usage
Create an Experiment
from mltracker import getExperiment
experiment = getExperiment("my-experiment") # get or creates an experiment
print(experiment.id, experiment.name)
Add a model to track:
model = experiment.models.create(hash="123456", name="model1")
model.modules.add(name="conv_layer", attributes={"type": "conv", "layers": 3})
model.modules.add(name="actv_layer", attributes={"type": "relu"})
model.modules.add(name="linear_layer", attributes={"in_size": 256, "out_size": 10})
Track metrics:
model.metrics.add(name="accuracy", value=0.85, step=1, phase="train")
model.metrics.add(name="loss", value=0.25, step=1, phase="train")
model.metrics.add(name="accuracy", value=0.87, step=1, phase="test")
model.metrics.add(name="loss", value=0.24, step=1, phase="test")
model.step += 1
model.metrics.add(name="accuracy", value=0.89, step=2, phase="train")
model.metrics.add(name="loss", value=0.29, step=2, phase="train")
model.metrics.add(name="accuracy", value=0.88, step=2, phase="test")
model.metrics.add(name="loss", value=0.26, step=2, phase="test")
model.step += 1
Track extra metadata:
iteration = model.iterations.create(step=2)
iteration.modules.add(name="SGD", attributes={"lr"=0.01})
Then just retrieve what you need.
model = experiment.models.read(hash="123456")
print(model.step)
for module in model.modules.list():
print(module.name, module.attributes)
for metric in model.metrics.list():
print(metric.name, metric.value)
This is MIT Licensed, feel free to use it as you please.
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 mltracker-0.4.0.tar.gz.
File metadata
- Download URL: mltracker-0.4.0.tar.gz
- Upload date:
- Size: 8.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.12.1 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fc20a908209fe92cc9ee1a088c846c66b1bdad45e74803518ad58f30491a6d9
|
|
| MD5 |
f3654110b8825d0dfe71620cfe49e07a
|
|
| BLAKE2b-256 |
e9d02d8093d3f90c50955bd9c35d3e0d05c57f0ab7517106cb0312084a0f0c8a
|
File details
Details for the file mltracker-0.4.0-py3-none-any.whl.
File metadata
- Download URL: mltracker-0.4.0-py3-none-any.whl
- Upload date:
- Size: 13.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.12.1 Linux/6.11.0-1018-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
45b31ce9b79dea43659fb633934695224c1fa8f5999a61a4f89b8f5894036f1d
|
|
| MD5 |
fcdd12bf97d098b324f59c3dbdea6abc
|
|
| BLAKE2b-256 |
e07c3d2813f68ecc088b09e768aa1fb2211b20fc3b69915301782bc62d3e0abc
|