I am writing code of SVM Primal that uses SGD (Stochastic SubGradient Descent) for optimize the vector W.
The classification methos is sign(w*x + bias).
My question is how to find the best bias for it?
I guess that it has to do during the W optimizing, but how? I have no idea.