Munin

A package for easing return of multiple values


Keywords
python, reinforcement-learning, interface, api, metrics, report
License
Apache-2.0
Install
pip install Munin==0.1.20190425065700

Documentation

munin

Munin

Old Norse: Muninn

python

Build Status Code style: black Coverage Status


Reporting.


This package is a package for generating classification reports. Uses jinja2 templates, see documentation.

Quick Start

  pip install munin

Now you can add all your metrics and plots.

  from munin import generate_html
  from warg import NOD # used for generating a dict with the same keys as names in context

  ...

  metrics = NOD.dict_of(accuracy, precision, f1_score, recall, support).as_flat_tuples()

  bundle = NOD.dict_of(title, confusion_matrix, metrics, predictions)

  generate_html(file_name, **bundle)