对分类器进行分类

发布于 2024-12-07 23:28:54 字数 455 浏览 0 评论 0原文

我实现了一个分类器,

  • 每次迭代都会接收一个参数对象进行分类,一些对象共享一个可分类的“属性”,例如颜色名称。
  • 分类参数可能会改变,因此它们也被参数化 并在初始化时传递给该分类器。
  • 分类器根据类型实现分类逻辑 可能的分类和要分类的对象。

我对某些文章中使用的词汇非常困惑:线性分类器特征值和向量

这是分类器的常见形式吗? 在我的方法中,我没有看到向量,没有统计分类,没有层次分类,没有机器学习等。

哪种分类器适合计算机科学文献?

I've implemented a classifier which

  • Each iteration receives a parameter object to classify, some objects share a classifiable "property" like a color name.
  • Classification parameters could change, so they are parametrized too
    and passed to this classifier at initialization time.
  • The classifier implements the classification logic based in the type
    of possible classifications AND the object to classify.

I am VERY confused about the vocabulary used in some articles: Linear Classifier, Feature Values and Vectors.

Is this a common form of classifier?
In my approach I see no vectors, no statistical classifications, no hierarchical classificatoin, no machine learning, etc.

Which kind of classifier would be for the computer science literature?

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

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

发布评论

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

评论(1

鹤仙姿 2024-12-14 23:28:54

您的“参数对象”是一个特征向量。您的分类器显然不涉及训练,所以我想说它是一个基于规则的临时分类器。

Your "parameter object" is a feature vector. Your classifier apparently does not involve training so I'd say it's an ad hoc rule-based classifier.

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