Skip to content

ukoethe/python_randomforest

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A python/cython random forest implementation

This repository contains python/cython code with a random forest implementation.

Installation:

python setup.py build_ext --inplace

To use VisualStudio on Windows, call

python setup.py build_ext -c msvc --inplace

Example usage in your python code:

rf = randomforest.RandomForestClassifier(n_estimators=100)
rf.fit(train_data, train_labels)
pred_labels = rf.predict(test_data)

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%