This project contains two scripts that enable Visdom updates in realtime.
Use this in your experiments to write relevant metrics to file that would populate visdom graphs.
Run this while you run experiments so that your metrics are written to visdom in realtime.
Simple writes a sequence of (float, int) pairs to file. Look at test.py
for usage.
A crude but effective metrics digest. Works with Visdom.
Depends on:
- numpy
- python-gflags
- visdom
- watchdog
Example Usage:
$ python -m visdom.server # in a separate terminal
$ python reporter.py \
--state ./runs/.visdom_state.json \ # keeps state for the reporter
--root ./runs \ # crawls directory for experiments and metric files
--suffix .metric \ # file extension indicating a metric file
--verbose