Bellare 2009 generalized expectation criteria for bootstrapping extractors using record text alignment

From Cohen Courses
Jump to navigationJump to search

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, the authors train a CRF model for alignment with the unlabeled text using generalized expectation. Also, based on the alignment model, they also propose a usual 1st order CRF model that can extract information without relying on a DB record.

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

Bellare 1.png

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 is the alignment latent variables to apply expectation criteria. 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 DBLP bibliographic database on a pruned label set (author, title, date, venue, volume, number, pages, editor, publisher, series, O). AlignCRF clearly outperforms other models, and ExtrCRF also achieves an error reduction of 20~35% compared to other methods. An interesting thing to note is that there is no evident decrease in the performance of AlignCRF compared to ExtrCRF, although AlignCRF is not using DB records. This is due to the benefit of having higher order (first-order) model and using noisy DB records in the test set for alignment.

Bellare 2.png Bellare 3.png

Related papers