Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Incremental Decision Tree C++ Implementation

Do anyone know any incremental implementation of decision tree classifier. Such that it could generate optimal decision tree classifier when you add new instance to training set with low computation and as quick as possible according existing decision tree classifier?

In other words I have an optimal decision tree classifier of set A, which named T_1, now I want to add instance X to set A and find optimal decision tree classifier tree T_2 by taking advantage of T_1 and X for set {A,X}.

adding instances will occurs several times. So it will valuable for me to find incremental method instead of building the tree every time.

Actually I am suspicious whether such implementation exists or not. It is appreciated if anybody could help me. I prefer code in c++ if there is any.

thanks

like image 978
Ali Avatar asked Mar 09 '26 18:03

Ali


1 Answers

The wikipedia article links to two codes. ITI is not open source, but the source is avalable, VMFL is open source and in C (mostly)

like image 93
deinst Avatar answered Mar 12 '26 06:03

deinst



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!