Table logger using Rich
Project description
rich-logger
Table logger using Rich, aimed at Pytorch Lightning logging
Features
- display your training logs with pretty rich tables
- describe your fields with
goal
("higher_is_better" or "lower_is_better"),format
andname
- a field descriptor can be matched with any regex
- a field name can be computed as a regex substitution
- works in Jupyter notebooks as well as in a command line
- integrates easily with Pytorch Lightning
Demo
from rich_logger import RichTablePrinter
import time
import random
from tqdm import trange
logger_fields = {
"step": {},
"(.*)_precision": {
"goal": "higher_is_better",
"format": "{:.4f}",
"name": r"\1_p",
},
"(.*)_recall": {
"goal": "higher_is_better",
"format": "{:.4f}",
"name": r"\1_r",
},
"duration": {"format": "{:.1f}", "name": "dur(s)"},
}
def optimization():
printer = RichTablePrinter(key="step", fields=logger_fields)
printer.hijack_tqdm()
t = time.time()
for i in trange(10):
time.sleep(random.random() / 3)
printer.log(
{
"step": i,
"task_precision": i / 10.0 if i < 5 else 0.5 - (i - 5) / 10.0,
}
)
time.sleep(random.random() / 3)
printer.log(
{
"step": i,
"task_recall": 0.0 if i < 3 else (i - 3) / 10.0,
"duration": time.time() - t,
}
)
printer.log({"test": i})
t = time.time()
for j in trange(5):
time.sleep(random.random() / 10)
printer.finalize()
optimization()
Use it with PytorchLightning
from rich_logger import RichTableLogger
trainer = pl.Trainer(..., logger=[RichTableLogger(key="epoch", fields=logger_fields)])
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
rich_logger-0.2.1.tar.gz
(10.6 kB
view details)
Built Distribution
File details
Details for the file rich_logger-0.2.1.tar.gz
.
File metadata
- Download URL: rich_logger-0.2.1.tar.gz
- Upload date:
- Size: 10.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.8.10 Linux/5.15.0-1021-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d21769045b0d0d852c6dc43b392be31cd882b5854ff4e06f894afbff138ee55e |
|
MD5 | d9a6bae06e0008a814c70214655bcefb |
|
BLAKE2b-256 | 110c11d4fa148481f3886d92c2885e7452699763aaa4f7486aa73a3b15933106 |
Provenance
File details
Details for the file rich_logger-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: rich_logger-0.2.1-py3-none-any.whl
- Upload date:
- Size: 11.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.2 CPython/3.8.10 Linux/5.15.0-1021-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d7c0a28964d99cb0f0e0a03b48db4dcdda47ff45c37eb5221a0c229d40f8a9a |
|
MD5 | d27c550dd2a08552e9f6715a2bc122fd |
|
BLAKE2b-256 | d4e6951f76441a6e5caf007e505b913951a290fc6c4b6994f5e1152ce24bf343 |