Lightweight, lazy experiment tracking¶
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 log when code
finishes.
lazyscribe
also has functionality for merging projects, paving the way for multiple
people to work on a single project.
Installation¶
To install lazyscribe
from PyPI, run
$ python -m pip install lazyscribe
This is the preferred method to install lazyscribe
.
Contents¶
Quickstart
How-to...
- Create a basic project
- Tag experiments
- Filter experiments within your project
- Log non-global metrics
- Represent the project as a table
- Save and examine experiment artifacts
- Write a custom artifact handler
- Version artifacts
- Specify cross-project dependencies
- Log a project to an external file system
- Open existing projects
- Merge project files
- Use lazyscribe with Prefect