Skip to content
This repository was archived by the owner on Jul 26, 2024. It is now read-only.

Latest commit

 

History

History
48 lines (40 loc) · 3.36 KB

README.md

File metadata and controls

48 lines (40 loc) · 3.36 KB

Build Status GitHub Release
MIT Licence Python 3.7
Read Book

💾 eXplainable Machine Learning – Code 💾

This repository holds a Python package implementing a collection of modules used by the eXplainable Machine Learning book (Jupyter Book).

Usage

The package can be installed with

pip install .

To run the tests, first install the development dependencies

pip install -r requirements-dev.txt

and execute

PYTHONPATH=./ pytest \
  --junit-xml=_pytest_junit.xml \
  --cov-report=term-missing \
  --cov-report=xml:_pytest_coverage.xml \
  --cov=xml_book \
  xml_book/

Useful Resources