chainer-jsonl-report

JSONL formatted LogReport extention for chainer.


Keywords
machine, learning
License
MIT
Install
pip install chainer-jsonl-report==0.0.5

Documentation

Build Status

About

JSONL formatted LogReport extention for chainer.

Installation

$ pip install chainer-jsonl-report

Usage

from chainer_jsonl_report import JsonlReport
...
trainer.extend(JsonlReport())
trainer.extend(extensions.PrintReport(
    ['epoch', 'main/loss', 'validation/main/loss'],
    log_report='JsonlReport',
))