哪些分类器提供权重向量?
Which classifiers provide weight vector?
存在哪些机器学习分类器可以在学习阶段之后提供权重向量?我了解 SVM、逻辑回归、感知器和 LDA。还有吗?
我的目标是使用这些权重向量绘制重要性图。
实际上任何 linear classifier 都有这样的 属性 设计。
据我了解,您想做的是类似功能选择的操作,但不切断最不有用的功能。
参见 the paper
Mladenić, D., Brank, J., Grobelnik, M., & Milic-Frayling, N. (2004,
July). Feature selection using linear classifier weights: interaction
with classification models. In Proceedings of the 27th annual
international ACM SIGIR conference on Research and development in
information retrieval (pp. 234-241). ACM.
作者比较了几种特征选择方法,包括使用 SVM 权重,发现最后一种方法最好。
存在哪些机器学习分类器可以在学习阶段之后提供权重向量?我了解 SVM、逻辑回归、感知器和 LDA。还有吗?
我的目标是使用这些权重向量绘制重要性图。
实际上任何 linear classifier 都有这样的 属性 设计。
据我了解,您想做的是类似功能选择的操作,但不切断最不有用的功能。
参见 the paper
Mladenić, D., Brank, J., Grobelnik, M., & Milic-Frayling, N. (2004, July). Feature selection using linear classifier weights: interaction with classification models. In Proceedings of the 27th annual international ACM SIGIR conference on Research and development in information retrieval (pp. 234-241). ACM.
作者比较了几种特征选择方法,包括使用 SVM 权重,发现最后一种方法最好。