Random Forests for the GPU using PyCUDA
Project description
CudaTree is an implementation of Leo Breiman’s Random Forests adapted to run on the GPU. A random forest is an ensemble of randomized decision trees which vote together to predict new labels. CudaTree parallelizes the construction of each individual tree in the ensemble and thus is able to train faster than the latest version of scikits-learn.
Usage
import numpy as np from cudatree import load_data, RandomForestClassifier x_train, y_train = load_data("digits") forest = RandomForestClassifier() forest.fit(x_train, y_train, n_trees=50, verbose = True, bootstrap = False) forest.predict(x_train)
Dependencies
CudaTree is writen for Python 2.7 and depends on:
scikit-learn
NumPy
PyCUDA
Parakeet
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cudatree-0.2.2.tar.gz
(18.4 kB
view hashes)