nel215 / mondrianforest

An online random forest implementaion written in Python.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mondrian Forest

An online random forest implementaion written in Python.

Build Status PyPI

Usage

import mondrianforest
from sklearn import datasets, cross_validation

iris = datasets.load_iris()
forest = mondrianforest.MondrianForestClassifier(n_tree=10)
cv = cross_validation.ShuffleSplit(len(iris.data), n_iter=20, test_size=0.10)
scores = cross_validation.cross_val_score(forest, iris.data, iris.target, cv=cv)
print(scores.mean(), scores.std())

License

mondrianforest is licensed under the MIT license.
Copyright (c) 2016 nel215

References

Papers

Slides

Videos

Code

About

An online random forest implementaion written in Python.

License:MIT License


Languages

Language:Jupyter Notebook 66.2%Language:Python 33.6%Language:Makefile 0.2%