Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AdaBoost ML algorithm python implementation

Is there anyone that has some ideas on how to implement the AdaBoost (Boostexter) algorithm in python?

Cheers!

like image 576
Timos K. Avatar asked Jul 07 '10 10:07

Timos K.


2 Answers

It looks as if the sdpy project has an AdaBoost implementation. Specifically look at the sdpy/cs/ml/cla/boosting.py file.

Perhaps you can get some motivation from there.

like image 53
Steve Lianoglou Avatar answered Nov 04 '22 14:11

Steve Lianoglou


Thanks a million Steve! In fact, your suggestion had some compatibility issues with MacOSX (a particular library was incompatible with the system) BUT it helped me find out a more interesting package : icsi.boost.macosx. I am just denoting that in case any Mac-eter finds it interesting!

Thank you again!

Tim

like image 28
Timos K. Avatar answered Nov 04 '22 16:11

Timos K.