什么是适合决策树的 Python 库?
除非我遗漏了什么,否则通常的嫌疑人不会有这个......
Unless I'm missing something, the usual suspects don't have this....
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
除非我遗漏了什么,否则通常的嫌疑人不会有这个......
Unless I'm missing something, the usual suspects don't have this....
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
DecisionTreeLearner 类是Russell 的 Python 库诺维格的《人工智能:现代方法》教科书。
There is a DecisionTreeLearner class as part of the Python library for Russell & Norvig's "Artificial Intelligence: A Modern Approach" textbook.
还有 Scikit Learn: http://scikit-learn.org/stable/模块/tree.html#classification
虽然还没有尝试过(但我即将尝试)。
There is also Scikit Learn: http://scikit-learn.org/stable/modules/tree.html#classification
Haven't tried it though (but I'm about to).
我也在寻找 python 决策树库。
国际上有很多开源决策树库,我发现了 DecisionTree 是最有用的。
只是想更新信息,所以寻找决策树库的人可以节省一些精力。
不幸的是,该库没有实现数字特征值,并将每个数字视为不同的类。
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.