Lightweight and lazy experiment logging
Project description
Lightweight, lazy experiment logging
lazyscribe is a lightweight package for model experiment logging. It creates a single JSON
file per project, and an experiment is only added to the file when code finishes (errors won't
result in partially finished experiments in your project log).
lazyscribe also has functionality to allow for multiple people to work on a single project.
You can merge projects together and update the list of experiments to create a single, authoritative
view of all executed experiments.
Installation
Python 3.10 and above is required. Use pip to install:
$ python -m pip install lazyscribe
Basic Usage
The basic usage involves instantiating a Project and using the context manager to log
an experiment:
import json
from lazyscribe import Project
project = Project(fpath="project.json")
with project.log(name="My experiment") as exp:
exp.log_metric("auroc", 0.5)
exp.log_parameter("algorithm", "lightgbm")
You've created an experiment! You can view the experimental data by using list:
print(json.dumps(list(project), indent=4))
[
{
"name": "My experiment",
"author": "<AUTHOR>",
"last_updated_by": "<AUTHOR>",
"metrics": {
"auroc": 0.5
},
"parameters": {
"algorithm": "lightgbm"
},
"created_at": "<CREATED_AT>",
"last_updated": "<LAST_UPDATED>",
"dependencies": [],
"short_slug": "my-experiment",
"slug": "my-experiment-<CREATED_AT>",
"tests": [],
"artifacts": []
}
]
Once you've finished, save the project to project.json:
project.save()
Later on, you can read the project back in read-only mode ("r"), append mode ("a"),
or editable mode ("w+"):
project = Project("project.json", mode="r")
with project.log(name="New experiment") as exp: # Raises a ReadOnlyError
...
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 lazyscribe-2.0.1.tar.gz.
File metadata
- Download URL: lazyscribe-2.0.1.tar.gz
- Upload date:
- Size: 24.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e401bb75d8d8e821ae998a6ee3b57def09456e929f7a108e61ce869957aeca3
|
|
| MD5 |
01d33774f0fe8a940f055f9fafe2f9dc
|
|
| BLAKE2b-256 |
f3e1681d03e7234d0f05b7b96a23474b3c7cebf1b86e00dd49faa11edc359b26
|
File details
Details for the file lazyscribe-2.0.1-py3-none-any.whl.
File metadata
- Download URL: lazyscribe-2.0.1-py3-none-any.whl
- Upload date:
- Size: 32.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c26d03d20472d066061b190e76e1781b624a5bb5e2f1a939ed2b23b312a1c00f
|
|
| MD5 |
9cb552e165a8a6c280dc48430336010f
|
|
| BLAKE2b-256 |
8d4613a697f729c6f374216000026ef1e14990adffebebe347045f6e96a4d208
|