贝叶斯过滤器可以用来创建多个输出吗

发布于 2024-12-06 18:36:13 字数 283 浏览 2 评论 0原文

我发现贝叶斯过滤器非常适合二元选择 - (垃圾邮件:不是垃圾邮件,男性:女性等)。有什么方法可以对多个值进行分类(例如 php+javascript、house+yard)。 我见过朴素贝叶斯分类器 - 多个决策,但我想知道是否有多个输出是可能的。

如果没有,还有哪些其他建议的分类方法(有或没有学习)。特别是对于 php 来说。

I see that Bayesian filters are use well for binary choices - (spam:not spam, male:female etc). Is there any way for it to categorize multiple values (eg php+javascript, house+yard).
I've seen Naive bayesian classifier - multiple decisions but I want to know if multiple outputs are possible.

If not, what are other suggested approaches for categorization (with or without learning). Especially for php.

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

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

发布评论

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

评论(1

请帮我爱他 2024-12-13 18:36:13

正如您所链接的问题的公认答案所说:“绝对有可能有两个以上的课程。”。在实践中,一种方法是并行训练多个分类器,例如,一个分类器用于 phpnot php,另一个分类器用于 javascriptnot php不是 JavaScript

其他广泛使用的多元分类方法包括

  • 人工神经网络(也称为多层感知器) )
  • (增强的)决策树
  • 支持向量机

如果您对此有更详细/后续的问题,请将其发布在 http://stats.stackexchange.com

我不确定 php 可以使用哪些库来完成此类任务,但是 Swig 是一个用于编写库的工具在 C/C++ 中可从 php 使用。

As the accepted answer of the question you linked to says: "It's definitely possible to have more than two classes.". In practice, one approach is to train multiple classifiers in parallel, e.g. one classifier for php vs. not php and another classifier for javascript vs. not javascript.

Other widely used multivariate classification methods include

  • artificial neural networks (also called multilayer perceptrons)
  • (boosted) decision trees
  • support vector machines

If you have a more detailed/follow up question on this, post it on http://stats.stackexchange.com .

I'm not sure what libraries for such a task are available for php but Swig is a tool to make libraries written in C/C++ usable from php.

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