Incremental Decision Tree C++ Implementation

旧街凉风 提交于 2019-12-07 21:37:15

问题


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


回答1:


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)



来源:https://stackoverflow.com/questions/3411279/incremental-decision-tree-c-implementation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!