evaluations

The library for models evaluation


Keywords
evaluations, kaggle, kaggle-competition, metrics, metrics-library, pypi, python, python-library, python3
License
MIT
Install
pip install evaluations==0.0.5

Documentation

Evaluations

PyPI version

  • The library implements various metrics for evaluating machine learning algorithms

Table of contents

How to use

>>> from evaluations.classification import confusion_matrix_binary
>>> confusion_matrix_binary([1, 1, 0, 0], [1, 0, 0, 1])
{'tp': 1, 'tn': 1, 'fp': 1, 'fn': 1}

Installation

PyPI

You can use pip to install evaluations:

pip install evaluations

You can clone and install the latest version of the library from GitHub:

pip install -U git+https://github.com/yisaienkov/evaluations

Documentation

The full documentation is available at https://evaluations.readthedocs.io/.

Authors

Yaroslav Isaienkov