What classifiers provide a weight vector?

What machine learning classifiers are there that provide a weight vector after the training phase? I know about SVM, Logistic Regression, Perceptron and LDA. Is there more?

My goal is to use this weight vector to draw the importance map.

+3


source to share


1 answer


Virtually any linear classifier has this property by design.

As I understand it, what you want to do is something like selecting a function without clipping the least useful ones.

See document



Mladic, D., Branck, J., Gromelnik, M. and Milich-Freiling, N. (2004, July). Selecting functions using the linear weight of the classifier: interaction with classification models. In the proceedings of the 27th ACM SIGIR Annual International Conference on Research and Development in Search of Information (pp. 234-241). ACM.

the authors compare several methods for selecting features, including using SVM weights and finding the latter to be the best.

+2


source







All Articles