What is a good Python library for decision trees? [closed]
Unless I'm开发者_运维知识库 missing something, the usual suspects don't have this....
There is a DecisionTreeLearner class as part of the Python library for Russell & Norvig's "Artificial Intelligence: A Modern Approach" textbook.
There is also Scikit Learn: http://scikit-learn.org/stable/modules/tree.html#classification Haven't tried it though (but I'm about to).
How about this article: Building Decision Trees with Python
I was finding python decision tree library, too. there are many open source decision tree libraries on the internate, and I found out DecisionTree from Kak, who is a professor in Purdue, is the most useful one.
just want to update the information, so people who are looking for decision tree library can save some effort.
Unfortunately, the library does not implement numeric feature values and treats each number as a different class.
精彩评论