Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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++)
- Host: GitHub
- URL: https://github.com/manics/yarf
- Owner: manics
- License: other
- Created: 2012-04-14T22:52:11.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-05-03T21:33:48.000Z (over 12 years ago)
- Last Synced: 2024-04-14T03:20:04.088Z (9 months ago)
- Language: C++
- Homepage:
- Size: 180 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README
- License: LICENSE
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).