Skip to content

valeman/mondrianforest-1

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Jupyter Notebook 66.2%
  • Python 33.6%
  • Makefile 0.2%