ACL-OCL / Base_JSON /prefixN /json /N06 /N06-1012.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "N06-1012",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T14:45:47.137683Z"
},
"title": "Reducing Weight Undertraining in Structured Discriminative Learning",
"authors": [
{
"first": "Charles",
"middle": [],
"last": "Sutton",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Massachusetts Amherst Amherst",
"location": {
"postCode": "01003",
"region": "MA",
"country": "USA"
}
},
"email": "casutton@cs.umass.edu"
},
{
"first": "Michael",
"middle": [],
"last": "Sindelar",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Massachusetts Amherst Amherst",
"location": {
"postCode": "01003",
"region": "MA",
"country": "USA"
}
},
"email": "msindela@student.umass.edu"
},
{
"first": "Andrew",
"middle": [],
"last": "Mccallum",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "University of Massachusetts Amherst Amherst",
"location": {
"postCode": "01003",
"region": "MA",
"country": "USA"
}
},
"email": "mccallum@cs.umass.edu"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Discriminative probabilistic models are very popular in NLP because of the latitude they afford in designing features. But training involves complex trade-offs among weights, which can be dangerous: a few highlyindicative features can swamp the contribution of many individually weaker features, causing their weights to be undertrained. Such a model is less robust, for the highly-indicative features may be noisy or missing in the test data. To ameliorate this weight undertraining, we introduce several new feature bagging methods, in which separate models are trained on subsets of the original features, and combined using a mixture model or a product of experts. These methods include the logarithmic opinion pools used by Smith et al. (2005). We evaluate feature bagging on linear-chain conditional random fields for two natural-language tasks. On both tasks, the feature-bagged CRF performs better than simply training a single CRF on all the features.",
"pdf_parse": {
"paper_id": "N06-1012",
"_pdf_hash": "",
"abstract": [
{
"text": "Discriminative probabilistic models are very popular in NLP because of the latitude they afford in designing features. But training involves complex trade-offs among weights, which can be dangerous: a few highlyindicative features can swamp the contribution of many individually weaker features, causing their weights to be undertrained. Such a model is less robust, for the highly-indicative features may be noisy or missing in the test data. To ameliorate this weight undertraining, we introduce several new feature bagging methods, in which separate models are trained on subsets of the original features, and combined using a mixture model or a product of experts. These methods include the logarithmic opinion pools used by Smith et al. (2005). We evaluate feature bagging on linear-chain conditional random fields for two natural-language tasks. On both tasks, the feature-bagged CRF performs better than simply training a single CRF on all the features.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Discriminative methods for training probabilistic models have enjoyed wide popularity in natural language processing, such as in part-of-speech tagging (Toutanova et al., 2003) , chunking (Sha and Pereira, 2003) , namedentity recognition (Florian et al., 2003; Chieu and Ng, 2003) , and most recently parsing (Taskar et al., 2004) . A discriminative probabilistic model is trained to maximize the conditional probability p(y|x) of output labels y given input variables x, as opposed to modeling the joint probability p(y, x), as in generative models such as the Naive Bayes classifier and hidden Markov models. The popularity of discriminative models stems from the great flexibility they allow in defining features: because the distribution over input features p(x) is not modeled, it can contain rich, highly overlapping features without making the model intractable for training and inference.",
"cite_spans": [
{
"start": 152,
"end": 176,
"text": "(Toutanova et al., 2003)",
"ref_id": "BIBREF20"
},
{
"start": 188,
"end": 211,
"text": "(Sha and Pereira, 2003)",
"ref_id": "BIBREF15"
},
{
"start": 238,
"end": 260,
"text": "(Florian et al., 2003;",
"ref_id": "BIBREF7"
},
{
"start": 261,
"end": 280,
"text": "Chieu and Ng, 2003)",
"ref_id": "BIBREF6"
},
{
"start": 309,
"end": 330,
"text": "(Taskar et al., 2004)",
"ref_id": "BIBREF19"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In NLP, for example, useful features include word bigrams and trigrams, prefixes and suffixes, membership in domain-specific lexicons, and information from semantic databases such as WordNet. It is not uncommon to have hundreds of thousands or even millions of features.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "But not all features, even ones that are carefully engineered, improve performance. Adding more features to a model can hurt its accuracy on unseen testing data. One well-known reason for this is overfitting: a model with more features has more capacity to fit chance regularities in the training data. In this paper, however, we focus on another, more subtle effect: adding new features can cause existing ones to be underfit. Training of discriminative models, such as regularized logistic regression, involves complex trade-offs among weights. A few highlyindicative features can swamp the contribution of many individually weaker features, even if the weaker features, taken together, are just as indicative of the output. Such a model is less robust, for the few strong features may be noisy or missing in the test data.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "This effect was memorably observed by Dean Pomerleau (1995) when training neural networks to drive vehicles autonomously. Pomerleau reports one example when the system was learning to drive on a dirt road:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "The network had no problem learning and then driving autonomously in one direction, but when driving the other way, the network was erratic, swerving from one side of the road to the other. . . . It turned out that the network was basing most of its predictions on an easilyidentifiable ditch, which was always on the right in the training set, but was on the left when the vehicle turned around. (Pomerleau, 1995) The network had features to detect the sides of the road, and these features were active at training and test time, although weakly, because the dirt road was difficult to detect. But the ditch was so highly indicative that the network did not learn the dependence between the road edge and the desired steering direction.",
"cite_spans": [
{
"start": 397,
"end": 414,
"text": "(Pomerleau, 1995)",
"ref_id": "BIBREF14"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "A natural way of avoiding undertraining is to train separate models for groups of competing features-in the driving example, one model with the ditch features, and one with the side-of-the-road features-and then average them into a single model. This is same idea behind logarithmic opinion pools, used by Smith, Cohn, and Osborne (2005) to reduce overfitting in CRFs. In this paper, we tailor our ensemble to reduce undertraining rather than overfitting, and we introduce several new combination methods, based on whether the mixture is taken additively or geometrically, and on a per-sequence or pertransition basis. We call this general class of methods feature bagging, by analogy to the well-known bagging algorithm for ensemble learning.",
"cite_spans": [
{
"start": 306,
"end": 337,
"text": "Smith, Cohn, and Osborne (2005)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "We test these methods on conditional random fields (CRFs) (Lafferty et al., 2001; Sutton and McCallum, 2006) , which are discriminatively-trained undirected models. On two natural-language tasks, we show that feature bagging performs significantly better than training a single CRF with all available features.",
"cite_spans": [
{
"start": 58,
"end": 81,
"text": "(Lafferty et al., 2001;",
"ref_id": "BIBREF11"
},
{
"start": 82,
"end": 108,
"text": "Sutton and McCallum, 2006)",
"ref_id": "BIBREF18"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Conditional random fields (CRFs) (Lafferty et al., 2001; Sutton and McCallum, 2006) are undirected graphical models of a conditional distribution. Let G be an undirected graphical model over random vectors y and x. As a typical special case, y = {y t } and x = {x t } for t = 1, . . . , T , so that y is a labeling of an observed sequence x. For a given collection C = {{y c , x c }} of cliques in G, a CRF models the conditional probability of an assignment to labels y given the observed variables x as:",
"cite_spans": [
{
"start": 33,
"end": 56,
"text": "(Lafferty et al., 2001;",
"ref_id": "BIBREF11"
},
{
"start": 57,
"end": 83,
"text": "Sutton and McCallum, 2006)",
"ref_id": "BIBREF18"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Fields",
"sec_num": "2"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "p \u039b (y|x) = 1 Z(x) c\u2208C \u03a6(y c , x c ),",
"eq_num": "(1)"
}
],
"section": "Conditional Random Fields",
"sec_num": "2"
},
{
"text": "where \u03a6 is a potential function and the partition function",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Fields",
"sec_num": "2"
},
{
"text": "Z(x) = y c\u2208C \u03a6(y c , x c )",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Fields",
"sec_num": "2"
},
{
"text": "is a normalization factor over all possible label assignments.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Fields",
"sec_num": "2"
},
{
"text": "We assume the potentials factorize according to a set of features {f k }, which are given and fixed, so that",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Fields",
"sec_num": "2"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "\u03a6(y c , x c ) = exp k \u03bb k f k (y c , x c )",
"eq_num": "(2)"
}
],
"section": "Conditional Random Fields",
"sec_num": "2"
},
{
"text": "The model parameters are a set of real weights \u039b = {\u03bb k }, one weight for each feature. Many applications have used the linear-chain CRF, in which a first-order Markov assumption is made on the hidden variables. In this case, the cliques of the conditional model are the nodes and edges, so that there are feature functions f k (y t\u22121 , y t , x, t) for each label transition. (Here we write the feature functions as potentially The x-axis indicates the strength of the strong feature. In the top line, the strong feature is present at training and test time. In the bottom line, the strong feature is missing from the training data at test time.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Fields",
"sec_num": "2"
},
{
"text": "depending on the entire input sequence.) Feature functions can be arbitrary. For example, a feature function f k (y t\u22121 , y t , x, t) could be a binary test that has value 1 if and only if y t\u22121 has the label \"adjective\", y t has the label \"proper noun\", and x t begins with a capital letter. Linear-chain CRFs correspond to finite state machines, and can be roughly understood as conditionally-trained hidden Markov models (HMMs). This class of CRFs is also a globally-normalized extension to Maximum Entropy Markov Models (McCallum et al., 2000) that avoids the label bias problem (Lafferty et al., 2001) .",
"cite_spans": [
{
"start": 502,
"end": 547,
"text": "Entropy Markov Models (McCallum et al., 2000)",
"ref_id": null
},
{
"start": 583,
"end": 606,
"text": "(Lafferty et al., 2001)",
"ref_id": "BIBREF11"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Fields",
"sec_num": "2"
},
{
"text": "Note that the number of state sequences is exponential in the input sequence length T . In linear-chain CRFs, the partition function Z(x), the node marginals p(y i |x), and the Viterbi labeling can be calculated efficiently by variants of the dynamic programming algorithms for HMMs. chain conditional random fields are the generalization of logistic regression to sequence data.)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Fields",
"sec_num": "2"
},
{
"text": "Consider random variables x 1 . . . x n , each distributed as independent standard normal variables. The output y is a binary variable whose probability depends on all the x i ; specifically, we define its distribution as y \u223c Bernoulli(logit( i x i )). The correct decision boundary in this synthetic problem is the hyperplane tangent to the weight vector (1, 1, . . . , 1). Thus, if n is large, each x i contributes weakly to the output y. Finally, we include a highly indicative feature x S = \u03b1 i x i + N (\u00b5 = 0, \u03c3 2 = 0.04). This variable alone is sufficient to determine the distribution of y. The variable \u03b1 is a parameter of the problem that determines how strongly indicative x S is; specifically, when \u03b1 = 0, the variable x S is random noise.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Fields",
"sec_num": "2"
},
{
"text": "We choose this synthetic model by analogy to Pomerleau's observations. The x i correspond to the side of the road in Pomerleau's case-the weak features present at both testing and training-and x S corresponds to the ditch-the strongly indicative feature that is corrupted at test time.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conditional Random Fields",
"sec_num": "2"
},
{
"text": "We examine how badly the learned classifier is degraded when x S feature is present at training time but missing at test time. For several values of the weight parameter \u03b1, we train a regularized logistic regression classifier on 1000 instances with n = 10 weak variables. In Figure 1 , we show how the amount of error caused by ablating x S at test time varies according to the strength of x S . Each point in Figure 1 is averaged over 100 randomly-generated data sets. When x S is weakly indicative, it does not affect the predictions of the model at all, and the classifier's performance is the same whether it appears at test time or not. When x S becomes strongly indicative, however, the classifier learns to depend on it, and performs much more poorly when x S is ablated, even though exactly the same information is available in the weak features.",
"cite_spans": [],
"ref_spans": [
{
"start": 276,
"end": 284,
"text": "Figure 1",
"ref_id": "FIGREF1"
},
{
"start": 411,
"end": 419,
"text": "Figure 1",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Conditional Random Fields",
"sec_num": "2"
},
{
"text": "In this section, we describe the feature bagging method. We divide the set of features F = {f k } into a collection of possibly overlapping subsets F = {F 1 , . . . F M }, which we call feature bags. We train individual CRFs on each of the feature bags using standard MAP training, yielding individual CRFs {p 1 , . . . p M }.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "We average the individual CRFs into a single combined model. This averaging can be performed in several ways: we can average probabilities of entire sequences, or of individual transitions; and we can average using the arithmetic mean, or the geometric mean. This yields four combination methods:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "1. Per-sequence mixture. The distribution over label sequences y given inputs x is modeled as a mixture of the individual CRFs. Given nonnegative weights {\u03b1 1 , . . . \u03b1 m } that sum to 1, the combined model is given by",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "p SM (y|x) = M i=1 \u03b1 i p i (y|x).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "(3)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "It is easily seen that if the sequence model is defined as in Equation 3, then the pairwise marginals are mixtures as well:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "p SM (y t , y t\u22121 |x) = M i=1 \u03b1 i p i (y t , y t\u22121 |x). (4)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "The probabilities p i (y t , y t\u22121 |x) are pairwise marginal probabilities in the individual models, which can be efficiently computed by the forward-backward algorithm.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "We can perform decoding in the mixture model by maximizing the individual node marginals. That is, to predict y t we compute",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "y * t = arg max yt p SM (y t |x) = arg max yt i \u03b1 i p i (y t |x),",
"eq_num": "(5)"
}
],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "where p i (y t |x) is computed by first running forward-backward on each of the individual CRFs.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "In the results here, however, we compute the maximum probability sequence approximately, as follows.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "We form a linear-chain distribution p APPX (y|x) = t p SM (y t |y t\u22121 , x), and compute the most probable sequence according to p APPX by the Viterbi algorithm. This is approximate because p SM is not a linear-chain distribution in general, even when all the components are. However, the distribution p APPX does minimize the KL-divergence D(p SM q) over all linear-chain distributions q. The mixture weights can be selected in a variety of ways, including equal voting, as in traditional bagging, or EM.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "2. Per-sequence product of experts. These are the logarithmic opinion pools that have been applied to CRFs by (Smith et al., 2005) . The distribution over label sequences y given inputs x is modeled as a product of experts (Hinton, 2000) . In a product of experts, instead of summing the probabilities from the individual models, we multiply them together. Essentially we take a geometric mean instead of an arithmetic mean. Given nonnegative weights {\u03b1 1 , . . . \u03b1 m } that sum to 1, the product model is",
"cite_spans": [
{
"start": 110,
"end": 130,
"text": "(Smith et al., 2005)",
"ref_id": "BIBREF17"
},
{
"start": 223,
"end": 237,
"text": "(Hinton, 2000)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "p(y|x) \u221d M i=1 (p i (y|x)) \u03b1i .",
"eq_num": "(6)"
}
],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "The combined model can also be viewed as a conditional random field whose features are the log probabilities from the original models:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "p(y|x) \u221d exp M i=1 \u03b1 i log p i (y|x)",
"eq_num": "(7)"
}
],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "By substituting in the CRF definition, it can be seen that the model in Equation 7 is simply a single CRF whose parameters are a weighted average of the original parameters. So feature bagging using the product method does not increase the family of models that are considered: standard training of a single CRF on all available features could potentially pick the same parameters as the bagged model.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "Nevertheless, in Section 5, we show that this feature bagging method performs better than standard CRF training.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "The previous two combination methods combine the individual models by averaging probabilities of entire sequences. Alternatively, in a sequence model we can average probabilities of individual transitions",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "p i (y t |y t\u22121 , x).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "Computing these transition probabilities requires performing probabilistic inference in each of the original CRFs, because",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "p i (y t |y t\u22121 , x) = y\\yt,yt+1 p(y|y t\u22121 , x).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "This yields two other combination methods:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "3. Per-transition mixture. The transition probabilities are modeled as",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "p TM (y t |y t\u22121 , x) = M i=1 \u03b1 i p i (y t |y t\u22121 , x) (8)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "Intuitively, the difference between per-sequence and per-transition mixtures can be understood generatively. In order to generate a label sequence y given an input x, the per-sequence model selects a mixture component, and then generates y using only that component. The per-transition model, on the other hand, selects a component, generates y 1 from that component, selects another component, generates y 2 from the second component given y 1 , and so on.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "4. Per-transition product of experts. Finally, we can combine the transition distributions using a product model",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "EQUATION",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [
{
"start": 0,
"end": 8,
"text": "EQUATION",
"ref_id": "EQREF",
"raw_str": "p SP (y t |y t\u22121 , x) \u221d M i=1 p(y t |y t\u22121 , x) \u03b1i",
"eq_num": "(9)"
}
],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "Each transition distribution is thus-similarly to the per-sequence case-an exponential-family distribution whose features are the log transition probabilities from the individual models. Unlike the per-sequence product, there is no weight-averaging trick here, because the probabilities p(y t |y t\u22121 , x) are marginal probabilities.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "Considered as a sequence distribution p(y|x), the per-transition product is a locally-normalized maximum-entropy Markov model (McCallum et al., 2000) . It would not be expected to suffer from label bias, however, because each of the features take the future into account; they are marginal probabilities from CRFs.",
"cite_spans": [
{
"start": 126,
"end": 149,
"text": "(McCallum et al., 2000)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "Of these four combination methods, Method 2, the persequence product of experts, is originally due to Smith et al. (2005) . The other three combination methods are as far as we know novel. In the next section, we compare the four combination methods on several sequence labeling tasks. Although for concreteness we describe them in terms of sequence models, they may be generalized to arbitrary graphical structures.",
"cite_spans": [
{
"start": 102,
"end": 121,
"text": "Smith et al. (2005)",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Feature Bagging",
"sec_num": "4"
},
{
"text": "We evaluate feature bagging on two natural language tasks, named entity recognition and noun-phrase chunking. We use the standard CoNLL 2003 English data set, which is taken from Reuters newswire and consists of a training set of 14987 sentences, a development set of 3466 sentences, and a testing set of 3684 sentences. The named-entity labels in this data set corresponding to people, locations, organizations and other miscellaneous entities. Our second task is noun-phrase chunking. We use the standard CoNLL 2000 data set, which consists of 8936 sentences for training and 2012 sentences for testing, taken from Wall Street Journal articles annotated by the Penn Treebank project. Although the CoNLL 2000 data set is labeled with other chunk types as well, here we use only the NP chunks.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "5"
},
{
"text": "As is standard, we compute precision and recall for both tasks based upon the chunks (or named entities for CoNLL 2003) as P = # correctly labeled chunks # labeled chunks R = # correctly labeled chunks # actual chunks We report the harmonic mean of precision and recall as F 1 = (2P R)/(P + R).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "5"
},
{
"text": "For both tasks, we use per-sequence product-of-experts feature bagging with two feature bags which we manually choose based on prior experience with the data set. For each experiment, we report two baseline CRFs, one trained on union of the two feature sets, and one trained only on the features that were present in both bags, such as lexical identity and regular expressions. In both data sets, we trained the individual CRFs with a Gaussian prior on parameters with variance \u03c3 2 = 10. For the named entity task, we use two feature bags based upon character ngrams and lexicons. Both bags contain a set of baseline features, such as word identity and regular expressions (Table 4) . The ngram CRF includes binary features for character ngrams of length 2, 3, and 4 and word prefixes and suffixes of length 2, 3, and 4. The lexicon CRF includes membership features for a variety of lexicons containing people names, places, and company names. The combined model has 2,342,543 features. The mixture weight \u03b1 is selected using the development set.",
"cite_spans": [],
"ref_spans": [
{
"start": 673,
"end": 682,
"text": "(Table 4)",
"ref_id": null
}
],
"eq_spans": [],
"section": "Results",
"sec_num": "5"
},
{
"text": "For the chunking task, the two feature sets are selected based upon part of speech and lexicons. Again, a set of baseline features are used, similar to the regular expressions and word identity features used on the named entity task (Table 4 ). The first bag also includes part-of-speech tags generated by the Brill tagger and the conjunctions of those tags used by Sha and Pereira (2003) . The second bag uses lexicon membership features for lexicons containing names of people, places, and organizations. In addition, we use part-of-speech lexicons generated from the entire Treebank, such as a list of all words that appear as nouns. These lists are also used by the Brill tagger (Brill, 1994 ). The combined model uses 536,203 features. The mixture weight \u03b1 is selected using 2-fold cross validation. The chosen model had weight 0.55 on the lexicon model, and weight 0.45 on the ngram model.",
"cite_spans": [
{
"start": 366,
"end": 388,
"text": "Sha and Pereira (2003)",
"ref_id": "BIBREF15"
},
{
"start": 683,
"end": 695,
"text": "(Brill, 1994",
"ref_id": "BIBREF4"
}
],
"ref_spans": [
{
"start": 233,
"end": 241,
"text": "(Table 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Results",
"sec_num": "5"
},
{
"text": "In both data sets, the bagged model performs better than the single CRF trained with all of the features. For the named entity task, bagging improves performance from 85.45% to 86.61%, with a substantial error reduction of 8.32%. This is lower than the best reported results for this data set, which is 89.3% (Ando and Zhang, 2005) , using a large amount of unlabeled data. For the chunking task, bagging improved the performance from 94.34% to 94.77%, with an error reduction of 7.60%. In both data sets, the improvement is statistically significant (McNemar's test; p < 0.01).",
"cite_spans": [
{
"start": 309,
"end": 331,
"text": "(Ando and Zhang, 2005)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "5"
},
{
"text": "On the chunking task, the bagged model also outperforms the models of Kudo and Matsumoto (2001) and Sha and Pereira (2003) , and equals the currently-best results of (Ando and Zhang, 2005) , who use a large amount of unlabeled data. Although we use lexicons that were not included in the previous models, the additional features actually do not help the original CRF. Only with feature bagging do these lexicons improve performance.",
"cite_spans": [
{
"start": 70,
"end": 95,
"text": "Kudo and Matsumoto (2001)",
"ref_id": "BIBREF10"
},
{
"start": 100,
"end": 122,
"text": "Sha and Pereira (2003)",
"ref_id": "BIBREF15"
},
{
"start": 166,
"end": 188,
"text": "(Ando and Zhang, 2005)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "5"
},
{
"text": "Finally, we compare the four bagging methods of Section 4: pre-transition mixture, pre-transition product of experts, and per-sequence mixture. On the named entity data, all four models perform in a statistical tie, with no statistically significant difference in their performance (Table 1) . As we mentioned in the last section, the de- coding procedure for the per-sequence mixture is approximate. It is possible that a different decoding procedure, such as maximizing the node marginals, would yield better performance.",
"cite_spans": [],
"ref_spans": [
{
"start": 282,
"end": 291,
"text": "(Table 1)",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Results",
"sec_num": "5"
},
{
"text": "In the machine learning literature, there is much work on ensemble methods such as stacking, boosting, and bagging. Generally, the ensemble of classifiers is generated by training on different subsets of data, rather than different features. However, there is some literature within unstructured classified on combining models trained on feature subsets. Ho (1995) creates an ensemble of decision trees by randomly choosing a feature subset on which to grow each tree using standard decision tree learners. Other work along these lines include that of Bay (1998) using nearest-neighbor classifiers, and more recently Bryll et al (2003) . Also, in Breiman's work on random forests (2001), ensembles of random decision trees are constructed by choosing a random feature at each node. This literature mostly has the goal of improving accuracy by reducing the classifier's variance, that is, reducing overfitting. In contrast, O'Sullivan et al. 2000specifically focus on increasing robustness by training classifiers to use all of the available features. Their algorithm FeatureBoost is analogous to AdaBoost, except that the meta-learning algorithm maintains weights on features instead of on instances. Feature subsets are automatically sampled based on which features, if corrupted, would most affect the ensemble's prediction. They show that FeatureBoost is more robust than AdaBoost on synthetically corrupted UCI data sets. Their method does not easily extend to sequence models, especially natural-language models with hundreds of thousands of features. 89.60 Single CRF (All Feat.) 94.34 (Sha and Pereira, 2003) 94.38 (Kudo and Matsumoto, 2001) 94.39 (Ando and Zhang, 2005) 94.70 Combined CRF 94.77 (Ando and Zhang, 2005) , who use a large amount of unlabeled data.",
"cite_spans": [
{
"start": 355,
"end": 364,
"text": "Ho (1995)",
"ref_id": "BIBREF9"
},
{
"start": 617,
"end": 635,
"text": "Bryll et al (2003)",
"ref_id": "BIBREF5"
},
{
"start": 1574,
"end": 1585,
"text": "(All Feat.)",
"ref_id": null
},
{
"start": 1592,
"end": 1615,
"text": "(Sha and Pereira, 2003)",
"ref_id": "BIBREF15"
},
{
"start": 1622,
"end": 1648,
"text": "(Kudo and Matsumoto, 2001)",
"ref_id": "BIBREF10"
},
{
"start": 1655,
"end": 1677,
"text": "(Ando and Zhang, 2005)",
"ref_id": "BIBREF1"
},
{
"start": 1703,
"end": 1725,
"text": "(Ando and Zhang, 2005)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Previous Work",
"sec_num": "6"
},
{
"text": "wt = w wt begins with a capital letter wt contains only capital letters wt is a single capital letter wt contains some capital letters and some lowercase wt contains a numeric character wt contains only numeric characters wt appears to be a number wt is a string of at least two periods wt ends with a period wt contains a dash wt appears to be an acronym wt appears to be an initial wt is a single letter wt contains punctuation wt contains quotation marks Pt = P All features for time t + \u03b4 for all \u03b4 \u2208 [\u22122, 2] Table 4 : Baseline features used in all bags. In the above w t is the word at position t, P t is the POS tag at position t, w ranges over all words in the training data, and P ranges over all chunk tags supplied in the training data. The \"appears to be\" features are based on hand-designed regular expressions.",
"cite_spans": [],
"ref_spans": [
{
"start": 513,
"end": 520,
"text": "Table 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Previous Work",
"sec_num": "6"
},
{
"text": "There is less work on ensembles of sequence models, as opposed to unstructured classifiers. One example is Altun, Hofmann, and Johnson (2003) , who describe a boosting algorithm for sequence models, but they boost instances, not features. In fact, the main advantage of their technique is increased model sparseness, whereas in this work we aim to fully use more features to increase accuracy and robustness.",
"cite_spans": [
{
"start": 107,
"end": 141,
"text": "Altun, Hofmann, and Johnson (2003)",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Previous Work",
"sec_num": "6"
},
{
"text": "Most closely related to the present work is that on logarithmic opinion pools for CRFs (Smith et al., 2005 ), which we have called per-sequence mixture of experts in this paper. The previous work focuses on reducing overfitting, combining a model of many features with several simpler models. In contrast, here we apply feature bagging to reduce feature undertraining, combining several models with complementary feature sets. Our current positive results are probably not due to reduction in over-fitting, for as we have observed, all the models we test, including the bagged one, have 99.9% F1 on the training set. Now, feature undertraining can be viewed as a type of overfitting, because it arises when a set of features is more indicative in the training set than the testing set. Understanding this particular type of overfitting is useful, because it motivates the choice of feature bags that we explore in this work. Indeed, one contribution of the present work is demonstrating how a careful choice of feature bags can yield state-of-the-art performance.",
"cite_spans": [
{
"start": 87,
"end": 106,
"text": "(Smith et al., 2005",
"ref_id": "BIBREF17"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Previous Work",
"sec_num": "6"
},
{
"text": "Concurrently and independently, Smith and Osborne (2006) present similar experiments on the CoNLL-2003 data set, examining a per-sequence mixture of experts (that is, a logarithmic opinion pool), in which the lexicon features are trained separately. Their work presents more detailed error analysis than we do here, while we present results both on other combination methods and on NP chunking.",
"cite_spans": [
{
"start": 32,
"end": 56,
"text": "Smith and Osborne (2006)",
"ref_id": "BIBREF16"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Previous Work",
"sec_num": "6"
},
{
"text": "Discriminatively-trained probabilistic models have had much success in applications because of their flexibility in defining features, but sometimes even highlyindicative features can fail to increase performance. We have shown that this can be due to feature undertraining, where highly-indicative features prevent training of many weaker features. One solution to this is feature bagging: repeatedly selecting feature subsets, training separate models on each subset, and averaging the individual models.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "7"
},
{
"text": "On large, real-world natural-language processing tasks, feature bagging significantly improves performance, even with only two feature subsets. In this work, we choose the subsets based on our intuition of which features are complementary for this task, but automatically determining the feature subsets is an interesting area for future work.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "7"
},
{
"text": "Weight UndertrainingIn the section, we give a simple demonstration of weight undertraining. In a discriminative classifier, such as a neural network or logistic regression, a few strong features can drown out the effect of many individually weaker features, even if the weak features are just as indicative put together. To demonstrate this effect, we present an illustrative experiment using logistic regression, because of its strong relation to CRFs. (Linear-",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "We thank Andrew Ng, Hanna Wallach, Jerod Weinman, and Max Welling for helpful conversations. This work was supported in part by the Center for Intelligent Information Retrieval, in part by the Defense Advanced Research Projects Agency (DARPA), in part by The Central Intelligence Agency, the National Security Agency and National Science Foundation under NSF grant #IIS-0326249, and in part by The Central Intelligence Agency, the National Security Agency and National Science Foundation under NSF grant #IIS-0427594. Any opinions, findings and conclusions or recommendations expressed in this material are the author(s) and do not necessarily reflect those of the sponsor.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Discriminative learning for label sequences via boosting",
"authors": [
{
"first": "Yasemin",
"middle": [],
"last": "Altun",
"suffix": ""
},
{
"first": "Thomas",
"middle": [],
"last": "Hofmann",
"suffix": ""
},
{
"first": "Mark",
"middle": [],
"last": "Johnson",
"suffix": ""
}
],
"year": 2003,
"venue": "Advances in Neural Information Processing Systems (NIPS*15",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yasemin Altun, Thomas Hofmann, and Mark Johnson. 2003. Discriminative learning for label sequences via boosting. In Advances in Neural Information Process- ing Systems (NIPS*15).",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "A high-performance semi-supervised learning method for text chunking",
"authors": [
{
"first": "Rie",
"middle": [],
"last": "Ando",
"suffix": ""
},
{
"first": "Tong",
"middle": [],
"last": "Zhang",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of the 43rd Annual Meeting of the Association for Computational Linguistics (ACL'05)",
"volume": "",
"issue": "",
"pages": "1--9",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rie Ando and Tong Zhang. 2005. A high-performance semi-supervised learning method for text chunking. In Proceedings of the 43rd Annual Meeting of the Asso- ciation for Computational Linguistics (ACL'05), pages 1-9, Ann Arbor, Michigan, June. Association for Com- putational Linguistics.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Combining nearest neighbor classifiers through multiple feature subsets",
"authors": [
{
"first": "D",
"middle": [],
"last": "Stephen",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Bay",
"suffix": ""
}
],
"year": 1998,
"venue": "ICML '98: Proceedings of the Fifteenth International Conference on Machine Learning",
"volume": "",
"issue": "",
"pages": "37--45",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Stephen D. Bay. 1998. Combining nearest neighbor classifiers through multiple feature subsets. In ICML '98: Proceedings of the Fifteenth International Con- ference on Machine Learning, pages 37-45. Morgan Kaufmann Publishers Inc.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Random forests. Machine Learning",
"authors": [
{
"first": "Leo",
"middle": [],
"last": "Breiman",
"suffix": ""
}
],
"year": 2001,
"venue": "",
"volume": "45",
"issue": "",
"pages": "5--32",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Leo Breiman. 2001. Random forests. Machine Learn- ing, 45(1):5-32, October.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Some advances in transformation-based part of speech tagging",
"authors": [
{
"first": "Eric",
"middle": [],
"last": "Brill",
"suffix": ""
}
],
"year": 1994,
"venue": "AAAI '94: Proceedings of the twelfth national conference on Artificial intelligence",
"volume": "1",
"issue": "",
"pages": "722--727",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Eric Brill. 1994. Some advances in transformation-based part of speech tagging. In AAAI '94: Proceedings of the twelfth national conference on Artificial intelli- gence (vol. 1), pages 722-727. American Association for Artificial Intelligence.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Attribute bagging: improving accuracy of classifier ensembles by using random feature subsets",
"authors": [
{
"first": "Robert",
"middle": [],
"last": "Bryll",
"suffix": ""
},
{
"first": "Ricardo",
"middle": [],
"last": "Gutierrez-Osuna",
"suffix": ""
},
{
"first": "Francis",
"middle": [],
"last": "Quek",
"suffix": ""
}
],
"year": 2003,
"venue": "Pattern Recognition",
"volume": "36",
"issue": "",
"pages": "1291--1302",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Robert Bryll, Ricardo Gutierrez-Osuna, and Francis Quek. 2003. Attribute bagging: improving accuracy of classifier ensembles by using random feature sub- sets. Pattern Recognition, 36:1291-1302.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Named entity recognition with a maximum entropy approach",
"authors": [
{
"first": "Hai",
"middle": [],
"last": "Leong Chieu",
"suffix": ""
},
{
"first": "Hwee Tou",
"middle": [],
"last": "Ng",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of CoNLL-2003",
"volume": "",
"issue": "",
"pages": "160--163",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Hai Leong Chieu and Hwee Tou Ng. 2003. Named en- tity recognition with a maximum entropy approach. In Walter Daelemans and Miles Osborne, editors, Pro- ceedings of CoNLL-2003, pages 160-163. Edmonton, Canada.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Named entity recognition through classifier combination",
"authors": [
{
"first": "Radu",
"middle": [],
"last": "Florian",
"suffix": ""
},
{
"first": "Abe",
"middle": [],
"last": "Ittycheriah",
"suffix": ""
},
{
"first": "Hongyan",
"middle": [],
"last": "Jing",
"suffix": ""
},
{
"first": "Tong",
"middle": [],
"last": "Zhang",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of CoNLL-2003",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Radu Florian, Abe Ittycheriah, Hongyan Jing, and Tong Zhang. 2003. Named entity recognition through clas- sifier combination. In Proceedings of CoNLL-2003.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Training products of experts by minimizing contrastive divergence",
"authors": [
{
"first": "G",
"middle": [
"E"
],
"last": "Hinton",
"suffix": ""
}
],
"year": 2000,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "G.E. Hinton. 2000. Training products of experts by mini- mizing contrastive divergence. Technical Report 2000- 004, Gatsby Computational Neuroscience Unit.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Random decision forests",
"authors": [
{
"first": "T",
"middle": [
"K"
],
"last": "Ho",
"suffix": ""
}
],
"year": 1995,
"venue": "Proc. of the 3rd Int'l Conference on Document Analysis and Recognition",
"volume": "",
"issue": "",
"pages": "278--282",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "T. K. Ho. 1995. Random decision forests. In Proc. of the 3rd Int'l Conference on Document Analysis and Recognition, pages 278-282, Montreal, Canada, Au- gust.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Chunking with support vector machines",
"authors": [
{
"first": "T",
"middle": [],
"last": "Kudo",
"suffix": ""
},
{
"first": "Y",
"middle": [],
"last": "Matsumoto",
"suffix": ""
}
],
"year": 2001,
"venue": "Proceedings of NAACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "T. Kudo and Y. Matsumoto. 2001. Chunking with sup- port vector machines. In Proceedings of NAACL-2001.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Conditional random fields: Probabilistic models for segmenting and labeling sequence data",
"authors": [
{
"first": "J",
"middle": [],
"last": "Lafferty",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Mccallum",
"suffix": ""
},
{
"first": "F",
"middle": [],
"last": "Pereira",
"suffix": ""
}
],
"year": 2001,
"venue": "Proc. 18th International Conf. on Machine Learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "J. Lafferty, A. McCallum, and F. Pereira. 2001. Con- ditional random fields: Probabilistic models for seg- menting and labeling sequence data. Proc. 18th Inter- national Conf. on Machine Learning.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Maximum entropy Markov models for information extraction and segmentation",
"authors": [
{
"first": "Andrew",
"middle": [],
"last": "Mccallum",
"suffix": ""
},
{
"first": "Dayne",
"middle": [],
"last": "Freitag",
"suffix": ""
},
{
"first": "Fernando",
"middle": [],
"last": "Pereira",
"suffix": ""
}
],
"year": 2000,
"venue": "Proc. 17th International Conf. on Machine Learning",
"volume": "",
"issue": "",
"pages": "591--598",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Andrew McCallum, Dayne Freitag, and Fernando Pereira. 2000. Maximum entropy Markov models for information extraction and segmentation. In Proc. 17th International Conf. on Machine Learning, pages 591-598. Morgan Kaufmann, San Francisco, CA.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Featureboost: A meta learning algorithm that improves model robustness",
"authors": [
{
"first": "O'",
"middle": [],
"last": "Joseph",
"suffix": ""
},
{
"first": "John",
"middle": [],
"last": "Sullivan",
"suffix": ""
},
{
"first": "Rich",
"middle": [],
"last": "Langford",
"suffix": ""
},
{
"first": "Avrim",
"middle": [],
"last": "Caruana",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Blum",
"suffix": ""
}
],
"year": 2000,
"venue": "International Conference on Machine Learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Joseph O'Sullivan, John Langford, Rich Caruana, and Avrim Blum. 2000. Featureboost: A meta learning algorithm that improves model robustness. In Interna- tional Conference on Machine Learning.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Neural network vision for robot driving",
"authors": [
{
"first": "Dean",
"middle": [],
"last": "Pomerleau",
"suffix": ""
}
],
"year": 1995,
"venue": "The Handbook of Brain Theory and Neural Networks",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dean Pomerleau. 1995. Neural network vision for robot driving. In M. Arbib, editor, The Handbook of Brain Theory and Neural Networks.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "Shallow parsing with conditional random fields",
"authors": [
{
"first": "Fei",
"middle": [],
"last": "Sha",
"suffix": ""
},
{
"first": "Fernando",
"middle": [],
"last": "Pereira",
"suffix": ""
}
],
"year": 2003,
"venue": "Proceedings of HLT-NAACL 2003",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Fei Sha and Fernando Pereira. 2003. Shallow pars- ing with conditional random fields. In Proceedings of HLT-NAACL 2003. Association for Computational Linguistics.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Using gazetteers in discriminative information extraction",
"authors": [
{
"first": "Andrew",
"middle": [],
"last": "Smith",
"suffix": ""
},
{
"first": "Miles",
"middle": [],
"last": "Osborne",
"suffix": ""
}
],
"year": 2006,
"venue": "CoNLL-X, Tenth Conference on Computational Natural Language Learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Andrew Smith and Miles Osborne. 2006. Using gazetteers in discriminative information extraction. In CoNLL-X, Tenth Conference on Computational Natu- ral Language Learning.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Logarithmic opinion pools for conditional random fields",
"authors": [
{
"first": "Andrew",
"middle": [],
"last": "Smith",
"suffix": ""
},
{
"first": "Trevor",
"middle": [],
"last": "Cohn",
"suffix": ""
},
{
"first": "Miles",
"middle": [],
"last": "Osborne",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of the 43rd Annual Meeting of the Association for Computational Linguistics (ACL'05)",
"volume": "",
"issue": "",
"pages": "18--25",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Andrew Smith, Trevor Cohn, and Miles Osborne. 2005. Logarithmic opinion pools for conditional random fields. In Proceedings of the 43rd Annual Meet- ing of the Association for Computational Linguistics (ACL'05), pages 18-25, Ann Arbor, Michigan, June. Association for Computational Linguistics.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "An introduction to conditional random fields for relational learning",
"authors": [
{
"first": "Charles",
"middle": [],
"last": "Sutton",
"suffix": ""
},
{
"first": "Andrew",
"middle": [],
"last": "Mccallum",
"suffix": ""
}
],
"year": 2006,
"venue": "Introduction to Statistical Relational Learning",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Charles Sutton and Andrew McCallum. 2006. An in- troduction to conditional random fields for relational learning. In Lise Getoor and Ben Taskar, editors, Intro- duction to Statistical Relational Learning. MIT Press. To appear.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Max-margin parsing",
"authors": [
{
"first": "Ben",
"middle": [],
"last": "Taskar",
"suffix": ""
},
{
"first": "Dan",
"middle": [],
"last": "Klein",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Collins",
"suffix": ""
},
{
"first": "Daphne",
"middle": [],
"last": "Koller",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Manning",
"suffix": ""
}
],
"year": 2004,
"venue": "Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ben Taskar, Dan Klein, Michael Collins, Daphne Koller, and Chris Manning. 2004. Max-margin parsing. In Empirical Methods in Natural Language Processing (EMNLP04).",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Feature-rich part-of-speech tagging with a cyclic dependency network",
"authors": [
{
"first": "Kristina",
"middle": [],
"last": "Toutanova",
"suffix": ""
},
{
"first": "Dan",
"middle": [],
"last": "Klein",
"suffix": ""
},
{
"first": "Christopher",
"middle": [
"D"
],
"last": "Manning",
"suffix": ""
},
{
"first": "Yoram",
"middle": [],
"last": "Singer",
"suffix": ""
}
],
"year": 2003,
"venue": "HLT-NAACL",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kristina Toutanova, Dan Klein, Christopher D. Manning, and Yoram Singer. 2003. Feature-rich part-of-speech tagging with a cyclic dependency network. In HLT- NAACL 2003.",
"links": null
}
},
"ref_entries": {
"FIGREF1": {
"text": "Effect of a single strong feature drowning out weaker features in logistic regression on synthetic data.",
"num": null,
"uris": null,
"type_str": "figure"
},
"TABREF1": {
"content": "<table><tr><td colspan=\"2\">Model Single CRF(Base Feat.) 81.52 F1 Single CRF(All Feat.) 85.45</td></tr><tr><td>Combined CRF</td><td>86.61</td></tr></table>",
"num": null,
"text": "Comparison of various bagging methods on the CoNLL 2003 Named Entity Task.",
"html": null,
"type_str": "table"
},
"TABREF2": {
"content": "<table><tr><td>: Results for the CoNLL 2003 Named Entity Task. The bagged CRF performs significantly better than a single CRF with all available features (McNemar's test; p &lt; 0.01).</td></tr></table>",
"num": null,
"text": "",
"html": null,
"type_str": "table"
},
"TABREF3": {
"content": "<table><tr><td>The bagged CRF performs significantly better than a sin-gle CRF (McNemar's test; p &lt; 0.01), and equals the re-sults of</td></tr></table>",
"num": null,
"text": "Results for the CoNLL 2000 Chunking Task.",
"html": null,
"type_str": "table"
}
}
}
}