Logging Utility for ML Experiments
Project description
ml-logger
Logging utility for ML experiments
Why
People use different tools for logging experimental results - Tensorboard, Wandb etc to name a few. Working with different collaborators, I will have to switch my logging tool with each new project. So I made this simple tool that provides a common interface to logging results to different loggers.
Installation
pip install "mllogger[all]"
If you want to use only the filesystem logger, use pip install "mllogger"
Install from source
git clone git@github.com:shagunsodhani/ml-logger.gitcd ml-loggerpip install ".[all]"
Alternatively, pip install "git+https://git@github.com/shagunsodhani/ml-logger.git@master#egg=ml_logger[all]"
If you want to use only the filesystem logger, use pip install . or pip install "git+https://git@github.com/shagunsodhani/ml-logger.git@master#egg=ml_logger".
Documentation
https://shagunsodhani.github.io/ml-logger
Use
-
Make a
logbook_config:from ml_logger import logbook as ml_logbook logbook_config = ml_logbook.make_config( logger_dir = <path to write logs>, wandb_config = <wandb config or None>, tensorboard_config = <tensorboard config or None>, mlflow_config = <mlflow config or None>)The API for
make_configcan be accessed here. -
Make a
LogBookinstance:logbook = ml_logbook.LogBook(config = logbook_config) -
Use the
logbookinstance:log = { "epoch": 1, "loss": 0.1, "accuracy": 0.2 } logbook.write_metric(log)The API for
write_metriccan be accessed here.
Note
-
If you are writing to wandb, the
logmust have a key calledstep. If yourlogalready captures thestepbut as a different key (sayepoch), you can pass thewandb_key_mapargument (set as{epoch: step}). For more details, refer the documentation here. -
If you are writing to mlflow, the
logmust have a key calledstep. If yourlogalready captures thestepbut as a different key (sayepoch), you can pass themlflow_key_mapargument (set as{epoch: step}). For more details, refer the documentation here. -
If you are writing to tensorboard, the
logmust have a key calledmain_tagortagwhich acts as the data Identifier and another key calledglobal_step. These keys are described here. If yourlogalready captures these values but as different key (saymodeformain_tagandepochforglobal_step), you can pass thetensorboard_key_mapargument (set as{mode: main_tag, epoch: global_step}). For more details, refer the documentation here.
Dev Setup
pip install -e ".[dev]"- Install pre-commit hooks
pre-commit install - The code is linted using:
blackflake8mypyisort
- Tests can be run locally using
nox
Acknowledgements
- Config for
circleci,pre-commit,mypyetc are borrowed/modified from Hydra
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 mllogger-0.7.tar.gz.
File metadata
- Download URL: mllogger-0.7.tar.gz
- Upload date:
- Size: 19.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200917 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb384382bfa174a5f7cd003fbd78b297cb148e87c653614ff060b9616d343ce7
|
|
| MD5 |
cb24339540607504a064419ea7b2e2b6
|
|
| BLAKE2b-256 |
2264fb0a7656898d769c2a21216eb07359e3e9feb0e499b5b4c183cb594d5e56
|
File details
Details for the file mllogger-0.7-py3-none-any.whl.
File metadata
- Download URL: mllogger-0.7-py3-none-any.whl
- Upload date:
- Size: 26.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200917 requests-toolbelt/0.9.1 tqdm/4.50.0 CPython/3.8.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43ea1fad6f63d25b076f8ae4981a43dd64be559cc3f1b85a4fcbc64f2bc135e8
|
|
| MD5 |
831e6aa56d44984ef12eec2f79f5ad0e
|
|
| BLAKE2b-256 |
ba53c8fa17250d270fc9b625405c9484eb3b85632526e117f910f8ee9a7d25fe
|