用决策树逻辑实现程序

发布于 2024-08-27 11:08:53 字数 1437 浏览 5 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无人问我粥可暖 2024-09-03 11:08:53

你想做的事情绝对不是微不足道的。至于决策算法,您是否研究过 C4.5 ?我无法找到它的 C# 实现,因此您可能需要自己解决。 ID3 也可能适合您。

SQL Server 的 Google B 树实现有大量信息,但实际的实现可能在很大程度上取决于您的决策树实现。

祝你好运!

What you are trying to do is definitely not trivial. As for the decision making algorithm have you looked into C4.5 ? I was unable to find a implementation in C# for it so you may be on your own. ID3 may also work for you.

Google b-tree implementations for SQL Server there is tons of information out there, but the actual implementation may depend heavily on your decision tree implementation.

Good Luck!

探春 2024-09-03 11:08:53

正如前面提到的,您将需要使用决策树生成算法。但是,由于您的系统希望在与用户的每次“会话”之后逐步“更新”自身,因此您可能需要使用 增量决策树算法,因此您不必每次都运行长时间的批量更新。

As it's been mentioned, decision tree generating algorithms are what you'll want to use. However, since your system will want to incrementally "update" itself after each "session" with the user, you may want to use an incremental decision tree algorithm, so you don't have to run a long batch update each time.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文