This repository contains python/cython code with a random forest implementation.
python setup.py build_ext --inplace
To use VisualStudio on Windows, call
python setup.py build_ext -c msvc --inplace
rf = randomforest.RandomForestClassifier(n_estimators=100)
rf.fit(train_data, train_labels)
pred_labels = rf.predict(test_data)