
The PyDL8.5 library provides an implementation of DL8.5 algorithm to learn optimal decision trees for various machine learning tasks. The documentation is available here.

Description
This project implements an algorithm for inferring optimal binary decision trees by mixing dynamic programming and branch-and-bound. The core code is written in C++ and is made easily accessible through a python wrapper that also provides additional features. It is scikit-learn compatible and can be used in combination with scikit-learn. As a scikit-learn classifier, it implements the methods "fit" and "predict". It is shown that decision trees learnt by this project ensure better performance while being interpretable.