Learn Before
Concept

What is ξi\xi_i?

Each of these terms are called slack-variables. For a given training row xˉ(i)\bar{x}^{(i)}, if:

  • If ξi=0\xi_i = 0, then xˉ(i)\bar{x}^{(i)} is correctly classified, and is outside of the margin.
  • If ξi>0\xi_i>0, then xˉ(i)\bar{x}^{(i)} violates the margin, and is considered a support vector.
  • If ξi>1\xi_i > 1, then xˉ(i)\bar{x}^{(i)} is incorrectly classified by the decision boundary.

When solving this optimization problem with SGD, we notice that correctly classified points that lie outside of the margin don't effect the update to θˉ\bar{\theta}. This is why the marginal/misclassified points are known as support-vectors.

0

2

Updated 2025-08-31

Tags

Data Science

Related