Structured support vector machine

Whereas the SVM classifier supports binary classification, multiclass classification and regression, the structured SVM allows training of a classifier for general structured output labels.

As an example, a sample instance might be a natural language sentence, and the output label is an annotated parse tree.

Training a classifier consists of showing pairs of correct sample and output label pairs.

After training, the structured SVM model allows one to predict for new sample instances the corresponding output label; that is, given a natural language sentence, the classifier can produce the most likely parse tree.

, the structured SVM minimizes the following regularized risk function.

because the maximum of a set of affine functions is convex.

measures a distance in label space and is an arbitrary function (not necessarily a metric) satisfying

The design of this function depends very much on the application.

Because the regularized risk function above is non-differentiable, it is often reformulated in terms of a quadratic program by introducing one slack variable

The standard structured SVM primal formulation is given as follows.

obtained from training, the prediction function is the following.

Solving for this maximizer is the so-called inference problem and similar to making a maximum a-posteriori (MAP) prediction in probabilistic models.

Depending on the structure of the function

, solving for the maximizer can be a hard problem.

The above quadratic program involves a very large, possibly infinite number of linear inequality constraints.

In general, the number of inequalities is too large to be optimized over explicitly.

Instead the problem is solved by using delayed constraint generation where only a finite and small subset of the constraints is used.

Optimizing over a subset of the constraints enlarges the feasible set and will yield a solution that provides a lower bound on the objective.

violates constraints of the complete set inequalities, a separation problem needs to be solved.

The right hand side objective to be maximized is composed of the constant

and a term dependent on the variables optimized over, namely

If the achieved right hand side objective is smaller or equal to zero, no violated constraints for this sample exist.

If it is strictly larger than zero, the most violated constraint with respect to this sample has been identified.

The problem is enlarged by this constraint and resolved.

The process continues until no violated inequalities can be identified.

The only difference is the addition of the term

Most often, it is chosen such that it has a natural decomposition in label space.

can be encoded into the inference problem and solving for the most violating constraint is equivalent to solving the inference problem.