Reputation: 412
Does a vector's distance from the decision plane in a support vector machine (with arbitrary configuration with regards to kernel, etc.) correlate in any way to the machine's confidence/certainty of that vector's classification?
Upvotes: 2
Views: 1409
Reputation: 9290
Yes. This is why Platt Scaling, which monotonically transforms the margin can produce calibrated probabilities, for example.
However, without transforming the margin, it's hard to give a workable interpretation.
Upvotes: 3
Reputation: 709
Yes, I would most certainly say it does. Some formalization given here: http://cs229.stanford.edu/notes/cs229-notes3.pdf
Upvotes: 1