The SVMlight site (in the FAQ) offers a script that computes the weight vector of a hyperlane. It says it "computes the weighted sum of the support vectors".
What does this mean? That is, what does the script do and what is the meaning and use of this weight vector?
Thanks in advance!
In linear case, the hyperplane can be always defined with
d+1
numbers, where d is the dimension of the input space, while the number of actual support vectors may be much larger. By computing this hyperplane (lets call it w) you get more compact model, which can be then used to perform a classification:where w' is a transpositon of w
Things get much more tricky in the kernelized version, as w is in the form of the feature space projection, which may be unknown (or to expensive to compute) so one cannot get an equation of such an object (as it is no longer a hyperplane in the input space, but rather - a hyperplane in very rich feature space).