-2

Could any body explain that " how does linear svm work for prediction in the classification process?"

Many thanks,

Weam
  • 43
  • 3

1 Answers1

0

Very briefly, support vector machines learn a linearly separating hyperplane that best divides two classes of data within their collective feature space. There are many good tutorials that will expand upon this! Here is one.

Kyle.
  • 1,550
  • 1
  • 11
  • 22
  • Thank you, but I meant how does svm decide that this test point belongs to this class. – Weam Mar 04 '14 at 16:17
  • @wearn I see. The tutorial should cover that. Test points are projected into the feature space defined by your training data, and their class is assigned based on which side of the decision boundary they lie. – Kyle. Mar 04 '14 at 16:22