Reputation: 41841
I need to know if SVMlight outputs classification scores. I couldn't find it anywhere.I know that for example libSVM does.thx
Upvotes: 3
Views: 1265
Reputation: 3032
SVMLight's output consists of a "prediced value" for each classified instance. Strictly speaking, this is not a "classification score", but can be used as some measure of certainty.
There are many methods of transforming this into some type of probability measure (I guess this is what you're referring to in 'scores'). For instance, see a paper by JS Platt on the topic
Upvotes: 2