Skip to content

Latest commit

 

History

History
13 lines (11 loc) · 633 Bytes

README.md

File metadata and controls

13 lines (11 loc) · 633 Bytes

Hyperplane folding.

The following code runs the algorithm from the paper: *Hyperplane folding - a way to increase the margin in Support Vector Machines Lars Lundberg, Håkan Lennerstad, Eva Garcia-Martin, Niklas Lavesson and Veselka Boeva

It does the following:

  1. Apply SVM in a dataset
  2. Select the primary support vector
  3. Divide the points into two, ones to the left of the support vector (forming an orthogonal line with the hyperplane) and the other ones to the right of the support vector
  4. Apply two SVM on each new set of points
  5. Rotate one side an angle a.
  6. The margin has thus increased from the initial one.