Difference between revisions of "Structured Prediction Cascades"

From Cohen Courses
Jump to navigationJump to search
Line 20: Line 20:
 
== Brief description of the method ==
 
== Brief description of the method ==
  
At each level of the cascade the method is given the set of possible clique assignments, and each level then filters
+
At each level of the cascade the method is given the set of possible clique assignments as input, and each level then filters
this set and passes the filtered set to the next level.
+
this set and passes the filtered set as input to the next level.
  
 
<math>\mathcal{Y}_c</math> is the set of possible output assignments to clique <math>c</math>
 
<math>\mathcal{Y}_c</math> is the set of possible output assignments to clique <math>c</math>

Revision as of 21:59, 4 October 2011

This method as proposed by Weiss et al, AISTATS 2010

This page is reserved for a write up by Dan Howarth


Citation

Structured Prediction Cascades. David Weiss and Ben Taskar. International Conference on Artificial Intelligence and Statistics (AISTATS), May 2010.

Online version

[1]

Summary

In many structured prediction models an increase in model complexity comes at a high computational cost. For example, the complexity of a HMM grows exponentially with the order of the model. This work introduces a method for learning increasingly complex models while continually pruning the possible output space. This is done by "weeding" out the incorrect output states early on.

Previous methods to solve the problem of model complexity were commonly approximate search methods or heuristic pruning techniques. Structured prediction cascades are different however because they explicitly learn the error/computation trade off for each increase in model complexity.

In this work structured prediction cascades are applied to handwriting recognition and POS tagging.

Brief description of the method

At each level of the cascade the method is given the set of possible clique assignments as input, and each level then filters this set and passes the filtered set as input to the next level.

is the set of possible output assignments to clique

Let the following be defined for the 'th model:

, the set of maximal cliques

, the set of valid output assignments for clique

Before pruning, , or the set

Experimental Result

Related papers