Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/manics/yarf

Yet Another Random Forest (C++)
https://github.com/manics/yarf

Last synced: 3 months ago
JSON representation

Yet Another Random Forest (C++)

Awesome Lists containing this project

README

        

Yet Another Random Forest
=========================

An implementation of the random forests machine learning algorithm in C++.
Currently supports classification only, not fully tested.

Features include:
Class probability distributions at each node (as opposed to just single votes).
OOB error rates.
Feature importance using a permutation test on the OOB samples.

In progress:
Image segmentation/classification, currently some Haar-like features are available.

Aims:
Configurable split rules (currently only one: single feature threshold scored using information gain).