Skip to content

Latest commit

 

History

History
46 lines (26 loc) · 1.04 KB

README.rst

File metadata and controls

46 lines (26 loc) · 1.04 KB

rhf

https://travis-ci.com/anrputina/rhf.svg?branch=master Documentation Status

Python implementation of Random Histogram Forest (RHF)

Installation and Usage

To install rhf

pip install rhf

To use rhf in a project:

from rhf import RHF

my_rhf = RHF(num_trees = 100, max_height = 5, split_criterion='kurtosis')
output_scores = my_rhf.fit(data)

Credits

This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.