• Stars
    star
    102
  • Rank 333,898 (Top 7 %)
  • Language
    C++
  • Created over 7 years ago
  • Updated over 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

a 1500 lines simple C++ implementation of RandomForests with detailed comments

RandomForests

A 1500 lines simple C++ implementation of RandomForests with detailed comments. No dependency, support regression and classification.

quick start

  1. download MNIST dataset from http://yann.lecun.com/exdb/mnist/ and unzip train&test data in some dir
  2. git clone https://github.com/handspeaker/RandomForests.git
  3. cd RandomForests and make
  4. run the following command:
    ./RandomForests
    mnist_train_image_file_path
    mnist_train_label_file_path
    mnist_test_image_file_path
    mnist_test_label_file_path

more

Open main.cpp file and modify as you want. In RandomForest.h there are some parameters you can change. input samples is a matrix, every row is a sample.