Difference between revisions of "Bellare 2009 generalized expectation criteria for bootstrapping extractors using record text alignment"

From Cohen Courses
Jump to navigationJump to search
Line 79: Line 79:
  
 
=== ExtrCRF ===
 
=== ExtrCRF ===
 +
 +
This model, whose probability is denoted by <math>p_{\Lambda}</math>, is trained by minimizing the following objective function using L-BFGS.
 +
 +
<math>
 +
O(\Lambda;\mathcal{D},\Theta)=\min_{\Lambda}{\sum_{i=1}^{K}{KL(p_{\Theta}(\mathbf{y}\vert\mathbf{X}_{2}^{(i)})\vert\vert p_{\Lambda}(\mathbf{y}\vert\mathbf{X}_{2}^{(i)}))}+||\Lambda||^{2}/2}
 +
</math>
  
 
== Experimental Result ==
 
== Experimental Result ==

Revision as of 10:55, 1 November 2011

A summary is coming soon from Daegunw!

Citation

Generalized Expectation Criteria for Bootstrapping Extractors using Record-Text Alignment, by K. Bellare, A. McCallum. In Proceedings of the 2009 Conference on Empirical Methods in Natural Language Processing, 2009.

Online version

This Paper is available online [1].

Summary

This paper presents a novel approach using Generalized Expectation Criteria to train a Conditional Random Field model for an IE task. In a setting where there exists a database

Brief description of the method

The paper present two CRF models: AlignCRF and ExtrCRF. The first is a zero-order CRF model used to predict labels for a text sequence given a matching DB record. The other model is a first-order linear-chain CRF to extract when there is no DB record to match.

Features

  • Extraction features (in AlignCRF and ExtrCRF)
    • regular expressions detecting tokens containing all characters, all digits, or all alphanumeric
    • number of characters and digits in the token (ex. [NUMCHAR=3, NUMDIGITS=1])
    • domain-specific patterns for 'date', and 'pages'
    • token identity, prefix/suffix, character n-grams
    • presence of a token in lexicons such as "last names", "publisher names", "cities
    • lexicon features within a window of 10
    • regular expression feature within a window of 10
    • token identity features within a window of 3
  • Alignment features (in AlignCRF)
    • exact token match
    • approximate token match after binning Jaro-Winkler edit distance between tokens
    • substring token match
    • prefix/suffix token match (if the prefixes/suffixes match for lengths 1,2,3,4)
    • exact and approximate token matches at offsets (-1,-1) and (+1,+1) around the alignment

AlignCRF

For a database record with token sequence and label sequence , a text sequence and an alignment sequence where indicates is assigned to the token , the alignment model defines a probability distribution of the alignment sequence conditioned on the database record and the text sequence as

The expectation criteria is determined in the following manner: for expectation features, for each label, the top N extraction features are selected by mutual information with that label. Also, the top N alignment features that have highest mutual information with correct labeling are selected as alignment criteria. The target expectations of these criteria are binned into 11 bins [0.05, 0.1, 0.2, ..., 0.9, 0.95]. [[2]] is a complete list of expectation criteria.

Given expectation criteria where is a list of binary feature functions, is target expectations, is weights, the objective function to optimize is the following:

where is the squared divergence and . The authors use the L-BFGS algorithm to maximize the objective function.

ExtrCRF

This model, whose probability is denoted by , is trained by minimizing the following objective function using L-BFGS.

Experimental Result

The authors tested this method on MUC-7 and the oncology part of PennBioIE corpus. The base learner used for the experiment is a linear-chain Conditional Random Fields. Features used are orthographical features (regexp patterns), lexical and morphological features (prefix, suffix, lemmatized tokens), and contextual features (features of neighbor tokens). In terms of the number of tokens that had to be labled to reach the maximal F-score, SeSAL could save about 60% over FuSAL, and 80% over random sampling. Having high confidence was also important because it could save the model from making errors in the early stages.

Related papers


Comment

If you're further interested in active learning for NLP, you might want to see Burr Settles' review of active learning: http://active-learning.net/ --Brendan 22:51, 13 October 2011 (UTC)