LinearBoost / linearboost-classifier

LinearBoost Classifier is a rapid and accurate classification algorithm that builds upon a very fast, linear classifier.
MIT License
105 stars 11 forks source link

Benchmark #1

Open julian-berger opened 1 month ago

julian-berger commented 1 month ago

Hey, just saw your reddit post: https://reddit.com/r/MachineLearning/comments/1cqv5y4/r_our_new_classification_algorithm_outperforms/

Congrats on the algorithm, great to have things that run fast!

Wrt performing better than common boosted tree ensembles:

  1. I recommend to read the following two paper that benchmark multiple classifiers against each other on many datasets.
  1. The mean 10-fold CV results are a function of the CV procedure and subject to some uncertainty. I would recommend to decide how you want to test whether the difference between classifier performances actually exists. This is a nice introduction of how to do it (or not).

  2. Some boosted tree versions are optimized for speed (oftentimes using GPUs). Maybe include some for more comprehensive speed comparisons. SketchBoost is an example.

Excited to see where this goes!

Cheers

hamidkm9 commented 1 month ago

Hey, just saw your reddit post: https://reddit.com/r/MachineLearning/comments/1cqv5y4/r_our_new_classification_algorithm_outperforms/

Congrats on the algorithm, great to have things that run fast!

Wrt performing better than common boosted tree ensembles:

  1. I recommend to read the following two paper that benchmark multiple classifiers against each other on many datasets.
  1. The mean 10-fold CV results are a function of the CV procedure and subject to some uncertainty. I would recommend to decide how you want to test whether the difference between classifier performances actually exists. This is a nice introduction of how to do it (or not).
  2. Some boosted tree versions are optimized for speed (oftentimes using GPUs). Maybe include some for more comprehensive speed comparisons. SketchBoost is an example.

Excited to see where this goes!

Cheers

Hey!

Excellent suggestions. Especially the TabZilla one! I will keep this issue open until we go through them. Thanks for your comment!

Cheers