ACL-OCL / Base_JSON /prefixD /json /D17 /D17-1035.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "D17-1035",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T16:16:09.325664Z"
},
"title": "Reporting Score Distributions Makes a Difference: Performance Study of LSTM-networks for Sequence Tagging",
"authors": [
{
"first": "Nils",
"middle": [],
"last": "Reimers",
"suffix": "",
"affiliation": {
"laboratory": "Darmstadt Ubiquitous Knowledge Processing Lab (UKP-DIPF",
"institution": "German Institute for Educational Research",
"location": {}
},
"email": ""
},
{
"first": "Iryna",
"middle": [],
"last": "Gurevych",
"suffix": "",
"affiliation": {
"laboratory": "Darmstadt Ubiquitous Knowledge Processing Lab (UKP-DIPF",
"institution": "German Institute for Educational Research",
"location": {}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "In this paper we show that reporting a single performance score is insufficient to compare non-deterministic approaches. We demonstrate for common sequence tagging tasks that the seed value for the random number generator can result in statistically significant (p < 10 \u22124) differences for state-of-the-art systems. For two recent systems for NER, we observe an absolute difference of one percentage point F 1-score depending on the selected seed value, making these systems perceived either as state-of-the-art or mediocre. Instead of publishing and reporting single performance scores, we propose to compare score distributions based on multiple executions. Based on the evaluation of 50.000 LSTMnetworks for five sequence tagging tasks, we present network architectures that produce both superior performance as well as are more stable with respect to the remaining hyperparameters. The full experimental results are published in (Reimers and Gurevych, 2017). 1 The implementation of our network is publicly available. 2",
"pdf_parse": {
"paper_id": "D17-1035",
"_pdf_hash": "",
"abstract": [
{
"text": "In this paper we show that reporting a single performance score is insufficient to compare non-deterministic approaches. We demonstrate for common sequence tagging tasks that the seed value for the random number generator can result in statistically significant (p < 10 \u22124) differences for state-of-the-art systems. For two recent systems for NER, we observe an absolute difference of one percentage point F 1-score depending on the selected seed value, making these systems perceived either as state-of-the-art or mediocre. Instead of publishing and reporting single performance scores, we propose to compare score distributions based on multiple executions. Based on the evaluation of 50.000 LSTMnetworks for five sequence tagging tasks, we present network architectures that produce both superior performance as well as are more stable with respect to the remaining hyperparameters. The full experimental results are published in (Reimers and Gurevych, 2017). 1 The implementation of our network is publicly available. 2",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Large efforts are spent in our community on developing new state-of-the-art approaches. To document that those approaches are better, they are applied to unseen data and the obtained performance score is compared to previous approaches. In order to make results comparable, a provided split between train, development and test data is often used, for example from a former shared task.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In recent years, deep neural networks were shown to achieve state-of-the-art performance for a wide range of NLP tasks, including many sequence tagging tasks (Ma and Hovy, 2016) , dependency parsing (Andor et al., 2016) , and machine translation (Wu et al., 2016) . The training process for neural networks is highly non-deterministic as it usually depends on a random weight initialization, a random shuffling of the training data for each epoch, and repeatedly applying random dropout masks. The error function of a neural network is a highly non-convex function of the parameters with the potential for many distinct local minima (LeCun et al., 1998; Erhan et al., 2010) . Depending on the seed value for the pseudo-random number generator, the network will converge to a different local minimum.",
"cite_spans": [
{
"start": 158,
"end": 177,
"text": "(Ma and Hovy, 2016)",
"ref_id": "BIBREF24"
},
{
"start": 199,
"end": 219,
"text": "(Andor et al., 2016)",
"ref_id": "BIBREF0"
},
{
"start": 246,
"end": 263,
"text": "(Wu et al., 2016)",
"ref_id": null
},
{
"start": 633,
"end": 653,
"text": "(LeCun et al., 1998;",
"ref_id": "BIBREF20"
},
{
"start": 654,
"end": 673,
"text": "Erhan et al., 2010)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Our experiments show that these different local minima have vastly different characteristics on unseen data. For the recent NER system by Ma and Hovy (2016) we observed that, depending on the random seed value, the performance on unseen data varies between 89.99% and 91.00% F 1 -score. The difference between the best and worst performance is statistically significant (p < 10 \u22124 ) using a randomization test 3 . In conclusion, whether this newly developed approach is perceived as state-of-the-art or as mediocre, largely depends on which random seed value is selected. This issue is not limited to this specific approach, but potentially applies to all approaches with non-deterministic training processes.",
"cite_spans": [
{
"start": 138,
"end": 156,
"text": "Ma and Hovy (2016)",
"ref_id": "BIBREF24"
},
{
"start": 410,
"end": 411,
"text": "3",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "This large dependence on the random seed value creates several challenges when evaluating new approaches:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "\u2022 Observing a (statistically significant) improvement through a new non-deterministic approach might not be the result of a superior approach, but the result of having a more favorable sequence of random numbers.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "\u2022 Promising approaches might be rejected too early, as they fail to deliver an outperformance simply due to a less favorable sequence of random numbers.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "\u2022 Reproducing results is difficult.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "To study the impact of the random seed value on the performance we will focus on five linguistic sequence tagging tasks: POS-tagging, Chunking, Named Entity Recognition, Entity Recognition 4 , and Event Detection. Further we will focus on Long-Short-Term-Memory (LSTM) Networks (Hochreiter and Schmidhuber, 1997b) , as those demonstrated state-of-the-art performance for a wide variety of sequence tagging tasks (Ma and Hovy, 2016; Lample et al., 2016; S\u00f8gaard and Goldberg, 2016) .",
"cite_spans": [
{
"start": 278,
"end": 313,
"text": "(Hochreiter and Schmidhuber, 1997b)",
"ref_id": "BIBREF11"
},
{
"start": 412,
"end": 431,
"text": "(Ma and Hovy, 2016;",
"ref_id": "BIBREF24"
},
{
"start": 432,
"end": 452,
"text": "Lample et al., 2016;",
"ref_id": "BIBREF18"
},
{
"start": 453,
"end": 480,
"text": "S\u00f8gaard and Goldberg, 2016)",
"ref_id": "BIBREF35"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Fixing the random seed value would solve the issue with the reproducibility, however, there is no justification for choosing one seed value over another seed value. Hence, instead of reporting and comparing a single performance, we show that comparing score distributions can lead to new insights into the functioning of algorithms.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Our main contributions are:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "1. Showing the implications of non-deterministic approaches on the evaluation of approaches and the requirement to compare score distributions instead of single performance scores.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "2. Comparison of two recent, state-of-the-art systems for NER and showing that reporting a single performance score can be misleading.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Validating and reproducing results is an important activity in science to manifest the correctness of previous conclusions and to gain new insights into the presented approaches. Fokkens et al. (2013) show that reproducing results is not always straightforward, as factors like preprocessing (e.g. tokenization), experimental setup (e.g. splitting data), the version of components, the exact implementation of features, and the treatment of ties can have a major impact on the achieved performance and sometimes on the drawn conclusions.",
"cite_spans": [
{
"start": 179,
"end": 200,
"text": "Fokkens et al. (2013)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Background",
"sec_num": "2"
},
{
"text": "For approaches with non-deterministic training procedures, like neural networks, reproducing exact results becomes even more difficult, as randomness can play a major role in the outcome of experiments.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Background",
"sec_num": "2"
},
{
"text": "The error function of a neural network is a highly non-convex function of the parameters with the potential for many distinct local minima (LeCun et al., 1998; Erhan et al., 2010) . The sequence of random numbers plays a major role to which minima the network converges during the training process. However, not all minima generalize equally well to unseen data. Erhan et al. (2010) showed for the MNIST handwritten digit recognition task that different random seeds result in largely varying performances. They noted further that with increasing depth of the neural network, the probability of finding poor local minima increases.",
"cite_spans": [
{
"start": 139,
"end": 159,
"text": "(LeCun et al., 1998;",
"ref_id": "BIBREF20"
},
{
"start": 160,
"end": 179,
"text": "Erhan et al., 2010)",
"ref_id": "BIBREF5"
},
{
"start": 363,
"end": 382,
"text": "Erhan et al. (2010)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Background",
"sec_num": "2"
},
{
"text": "Train/Dev Error Test Error As (informally) defined by Hochreiter and Schmidhuber (1997a) , a minimum can be flat, where the error function remains approximately constant for a large connected region in weight-space, or it can be sharp, where the error function increases rapidly in a small neighborhood of the minimum. A conceptual sketch is given in Figure 1 . Table 1 shows the minimum, the maximum, and the median performance for the test performances. Based on this observation, we draw the conclusion that the system by Lample et al. outperforms the system by Ma and Hovy, as their implementation achieves a higher score distribution and shows a lower standard deviation.",
"cite_spans": [
{
"start": 54,
"end": 88,
"text": "Hochreiter and Schmidhuber (1997a)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [
{
"start": 351,
"end": 359,
"text": "Figure 1",
"ref_id": "FIGREF0"
},
{
"start": 362,
"end": 369,
"text": "Table 1",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Flat Minimum Sharp Minimum",
"sec_num": null
},
{
"text": "f (x)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Flat Minimum Sharp Minimum",
"sec_num": null
},
{
"text": "In a usual setup, approaches would be compared on a development set and the run with the highest development score would be used for unseen data, i.e. be used to report the test performance. For the Lample et al. system we observe a Spearman's rank correlation between the development and the test score of \u03c1 = 0.229. This indicates a weak correlation and that the performance on the development set is not a reliable indicator. Using the run with the best development score (94.44%) would yield a test performance of mere 90.31%. Using the second best run on development set (94.28%), would yield state-of-the-art performance with 91.00%. This difference is statistically significant (p < 0.002). In conclusion, a development set will not necessarily solve the issue with bad local minima.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Flat Minimum Sharp Minimum",
"sec_num": null
},
{
"text": "The main difference between these two approaches is in the generation of character-based representations: Ma In the next step, we evaluated the impact of the random seed value for the five sequence tagging tasks described in section 4. We sampled randomly 1830 different configurations, for example different numbers of recurrent units, and ran the network twice, each time with a different seed value. The results are depicted in Table 2. The largest difference was observed for the ACE 2005 Entities dataset: Using one seed value, the network achieved an F 1 performance of 82.5% while using another seed value, the network achieved a performance of only 74.3%. Even though this is a rare extreme case, the median difference between different weight initializations is still large. For example for the CoNLL 2003 NER dataset, the median difference is at 0.38% and the 95th percentile is at 1.08%.",
"cite_spans": [
{
"start": 106,
"end": 108,
"text": "Ma",
"ref_id": null
}
],
"ref_spans": [
{
"start": 431,
"end": 439,
"text": "Table 2.",
"ref_id": "TABREF2"
}
],
"eq_spans": [],
"section": "Flat Minimum Sharp Minimum",
"sec_num": null
},
{
"text": "In conclusion, if the fact of different local minima is not taken care of and single performance scores are compared, there is a high chance of drawing false conclusions and either rejecting promising approaches or selecting weaker approaches due to a more or less favorable sequence of random numbers.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Flat Minimum Sharp Minimum",
"sec_num": null
},
{
"text": "In order to find LSTM-network architectures that perform robustly on different tasks, we selected five classical NLP tasks as benchmark tasks: Partof-Speech tagging (POS), Chunking, Named Entity Recognition (NER), Entity Recognition (Entities) and Event Detection (Events).",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Setup",
"sec_num": "4"
},
{
"text": "For Part-of-Speech tagging, we use the benchmark setup described by Toutanova et al. (2003) . Using the full training set for POS tagging would hinder our ability to detect design choices that are consistently better than others. The error rate for this dataset is approximately 3% (Marcus et al., 1993) , making all improvements above 97% accuracy likely the result of chance. A 97.24% accuracy was achieved by Toutanova et al. (2003) . Hence, we reduced the training set size from over 38.000 sentences to the first 500 sentences. This decreased the accuracy to about 95%.",
"cite_spans": [
{
"start": 68,
"end": 91,
"text": "Toutanova et al. (2003)",
"ref_id": "BIBREF37"
},
{
"start": 282,
"end": 303,
"text": "(Marcus et al., 1993)",
"ref_id": "BIBREF26"
},
{
"start": 412,
"end": 435,
"text": "Toutanova et al. (2003)",
"ref_id": "BIBREF37"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Setup",
"sec_num": "4"
},
{
"text": "For Chunking, we use the CoNLL 2000 shared task setup. For Named Entity Recognition (NER), we use the CoNLL 2003 setup. The ACE 2005 entity recognition task annotated not only named entities, but all words referring to an entity, e.g. the phrase U.S. president. We use the same data split as Li et al. (2013) . For the Event Detection task, we use the TempEval3 Task B setup. There, the smallest extent of text, usually a single word, that expresses the occurrence of an event, is annotated.",
"cite_spans": [
{
"start": 302,
"end": 308,
"text": "(2013)",
"ref_id": "BIBREF32"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Setup",
"sec_num": "4"
},
{
"text": "For the POS-task, we report accuracy and for the other tasks we report the F 1 -score.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experimental Setup",
"sec_num": "4"
},
{
"text": "We use a BiLSTM-network for sequence tagging as described in (Huang et al., 2015; Ma and Hovy, 2016; Lample et al., 2016) . To be able to evaluate a large number of different network configurations, we optimized our implementation for efficiency, reducing by a factor of 6 the time required per epoch compared to Ma and Hovy (2016) .",
"cite_spans": [
{
"start": 61,
"end": 81,
"text": "(Huang et al., 2015;",
"ref_id": "BIBREF12"
},
{
"start": 82,
"end": 100,
"text": "Ma and Hovy, 2016;",
"ref_id": "BIBREF24"
},
{
"start": 101,
"end": 121,
"text": "Lample et al., 2016)",
"ref_id": "BIBREF18"
},
{
"start": 313,
"end": 331,
"text": "Ma and Hovy (2016)",
"ref_id": "BIBREF24"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Model",
"sec_num": "4.1"
},
{
"text": "We evaluate the following design choices and hyperparameters: Pre-trained Word Embeddings. We evaluate the Google News embeddings (G. News) 7 from Mikolov et al. 2013, the Bag of Words (Le. BoW) as well as the dependency based embeddings (Le. Dep.) 8 by Levy and Goldberg 2014, three different GloVe embeddings 9 from Pennington et al. 2014trained either on Wikipedia 2014 + Gigaword 5 (GloVe1 with 100 dimensions and GloVe2 with 300 dimensions) or on Common Crawl (GloVe3), and the Komninos and Manandhar (2016) embeddings (Komn.) 10 . We also evaluate the approach of Bojanowski et al. (2016) (Fast-Text), which trains embeddings for n-grams with length 3 to 6. The embedding for a word is defined as the sum of the embeddings of the ngrams.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluated Parameters",
"sec_num": "4.2"
},
{
"text": "Character Representation. We evaluate the approaches of Ma and Hovy (2016) using Convolutional Neural Networks (CNN) as well as the approach of Lample et al. (2016) using LSTMnetworks to derive character-based representations.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluated Parameters",
"sec_num": "4.2"
},
{
"text": "Optimizer. Besides Stochastic Gradient Descent (SGD), we evaluate Adagrad (Duchi et al., 2011) , Adadelta (Zeiler, 2012), RMSProp (Hinton, 2012) , Adam (Kingma and Ba, 2014), and Nadam (Dozat, 2015) , an Adam variant that incorporates Nesterov momentum (Nesterov, 1983) as optimizers.",
"cite_spans": [
{
"start": 74,
"end": 94,
"text": "(Duchi et al., 2011)",
"ref_id": null
},
{
"start": 130,
"end": 144,
"text": "(Hinton, 2012)",
"ref_id": "BIBREF9"
},
{
"start": 185,
"end": 198,
"text": "(Dozat, 2015)",
"ref_id": "BIBREF2"
},
{
"start": 253,
"end": 269,
"text": "(Nesterov, 1983)",
"ref_id": "BIBREF30"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluated Parameters",
"sec_num": "4.2"
},
{
"text": "Gradient Clipping and Normalization. Two common strategies to deal with the exploding gradi-ent problem are gradient clipping (Mikolov, 2012) and gradient normalization (Pascanu et al., 2013) . Gradient clipping involves clipping the gradient's components element-wise if it exceeds a defined threshold. Gradient normalization has a better theoretical justification and rescales the gradient whenever the norm goes over a threshold.",
"cite_spans": [
{
"start": 126,
"end": 141,
"text": "(Mikolov, 2012)",
"ref_id": "BIBREF28"
},
{
"start": 169,
"end": 191,
"text": "(Pascanu et al., 2013)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluated Parameters",
"sec_num": "4.2"
},
{
"text": "Tagging schemes. We evaluate the BIO and IOBES schemes for tagging segments.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluated Parameters",
"sec_num": "4.2"
},
{
"text": "Dropout. We compare no dropout, naive dropout, and variational dropout (Gal and Ghahramani, 2016) . Naive dropout applies a new dropout mask at every time step of the LSTM-layers. Variational dropout applies the same dropout mask for all time steps in the same sentence. Further, it applies dropout to the recurrent units. We evaluate the dropout rates {0.05, 0.1, 0.25, 0.5}.",
"cite_spans": [
{
"start": 71,
"end": 97,
"text": "(Gal and Ghahramani, 2016)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluated Parameters",
"sec_num": "4.2"
},
{
"text": "Classifier. We evaluate a Softmax classifier as well as a CRF classifier as the last layer of the network.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluated Parameters",
"sec_num": "4.2"
},
{
"text": "Number of LSTM-layers. We evaluated 1, 2, and 3 stacked BiLSTM-layers.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluated Parameters",
"sec_num": "4.2"
},
{
"text": "For each LSTM-layer, we selected independently a number of recurrent units from the set {25, 50, 75, 100, 125}.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Number of recurrent units.",
"sec_num": null
},
{
"text": "Mini-batch sizes. We evaluate the mini-batch sizes 1, 8, 16, 32, and 64.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Number of recurrent units.",
"sec_num": null
},
{
"text": "We have shown in section 3 that re-running nondeterministic approaches multiple times and comparing score distributions is essential to draw correct conclusions. However, to truly understand the capabilities of an approach, it is interesting to test the approach with different sets of hyperparameters for the complete network.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Robust Model Evaluation",
"sec_num": "5"
},
{
"text": "Training and tuning a neural network can be time consuming, sometimes taking multiple days to train a single instance of a network. A priori it is hard to know which hyperparameters will yield the best performance and the selection of the parameters often makes the difference between mediocre and state-of-the-art performance (Hutter et al., 2014) . If an approach yields good performance only for a narrow set of parameters, it might be difficult to adapt the approach to new tasks, new domains or new languages, as a large range of possible parameters must be evaluated, each time requiring a significant amount of training time. Hence it is desirable, that the approach yields stable results for a wide range of parameters.",
"cite_spans": [
{
"start": 327,
"end": 348,
"text": "(Hutter et al., 2014)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Robust Model Evaluation",
"sec_num": "5"
},
{
"text": "In order to find approaches that result in high performance and are robust against the remaining parameters, we decided to randomly sample several hundred network configurations from the set described in section 4.2. For each sampled configuration, we compare different options, e.g. different options for the last layer of the network. For example, we sampled in total 975 configurations and each configuration was trained with a Softmax classifier as well as with a CRF classifier, totaling to 1950 trained networks. Our results are presented in Table 3 . The table shows that for the NER task 232 configurations were sampled randomly and for 210 of the 232 configurations (90.5%), the CRF setup achieved a better test performance than the setup with a Softmax classifier. To measure the difference between these two options, we compute the median of the absolute differences: Let S i be the test performance (F 1 -measure) for the Softmax setup for configuration i and C i the test performance for the CRF setup. We then compute \u2206F 1 = median(S 1 \u2212 C 1 , S 2 \u2212 C 2 , . . . , S 232 \u2212 C 232 ). For the NER task, the median difference was \u2206F 1 = \u22120.66%, i.e. the setup with a Softmax classifier achieved on average an F 1 -score of 0.66 percentage points below that of the CRF setup.",
"cite_spans": [],
"ref_spans": [
{
"start": 548,
"end": 555,
"text": "Table 3",
"ref_id": "TABREF4"
}
],
"eq_spans": [],
"section": "Robust Model Evaluation",
"sec_num": "5"
},
{
"text": "We also evaluated the standard deviation of the F 1 -scores to detect approaches that are less dependent on the remaining hyperparameters and the random number generator. The standard deviation \u03c3 for the CRF-classifier is with 0.0060 significantly lower (p < 10 \u22123 using Brown-Forsythe test) than for the Softmax classifier with \u03c3 = 0.0082.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Robust Model Evaluation",
"sec_num": "5"
},
{
"text": "This section highlights our main insights in the evaluation of different design choices for BiL-STM architectures. We limit the number of results we present for reasons of brevity. Detailed information can be found in (Reimers and Gurevych, 2017) . 11 Table 3 shows a comparison between using a Softmax classifier as a last layer and using a CRF classifier. The BiLSTM-CRF architecture by Huang et al. (2015) achieves a better performance on 4 out of 5 tasks. For the NER task it further achieves a 27% lower standard deviation (statistically significant with p < 10 \u22123 ), indicating that it is less sensitive to the remaining configuration of the network.",
"cite_spans": [
{
"start": 218,
"end": 246,
"text": "(Reimers and Gurevych, 2017)",
"ref_id": "BIBREF34"
},
{
"start": 389,
"end": 408,
"text": "Huang et al. (2015)",
"ref_id": "BIBREF12"
}
],
"ref_spans": [
{
"start": 252,
"end": 259,
"text": "Table 3",
"ref_id": "TABREF4"
}
],
"eq_spans": [],
"section": "Results",
"sec_num": "6"
},
{
"text": "The CRF classifier only fails for the Event Detection task. This task has nearly no dependency between tags, as often only a single token is annotated as an event trigger in a sentence.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Classifier",
"sec_num": "6.1"
},
{
"text": "We studied the differences between these two classifiers in terms of number of LSTM-layers. As Figure 3 shows, a Softmax classifier profits from a deep LSTM-network with multiple stacked layers. On the other hand, if a CRF classifier is used, the effect of additional LSTM-layers is much smaller.",
"cite_spans": [],
"ref_spans": [
{
"start": 95,
"end": 103,
"text": "Figure 3",
"ref_id": "FIGREF2"
}
],
"eq_spans": [],
"section": "Classifier",
"sec_num": "6.1"
},
{
"text": "We evaluated six optimizers with the suggested default configuration from their respective papers. We observed that SGD is quite sensitive towards the selection of the learning rate and it failed in many instances to converge. For the optimizers SGD, Adagrad and Adadelta we observed a large standard deviation in terms of test performance, which was for the NER task at 0.1328 for SGD, 0.0139 for Adagrad, and 0.0138 for Adadelta. The optimizers RMSProp, Adam, and Nadam on the other hand produced much more stable results. Not only were the medians for these three optimizers higher, but also the standard deviation was with 0.0096, 0.0091, and 0.0092 roughly 35% smaller in comparison to Adagrad. A large standard deviation indicates that the optimizer is sensitive to the hyperparameters as well as to the random initialization and bears the risk that the optimizer produces subpar results.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Optimizer",
"sec_num": "6.2"
},
{
"text": "The best result was achieved by Nadam. For 453 out of 882 configurations (51.4%), it yielded the highest performance out of the six tested optimizers. For the NER task, it produced on average a 0.82 percentage points better performance than Adagrad.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Optimizer",
"sec_num": "6.2"
},
{
"text": "Besides test performance, the convergence speed is important in order to reduce training time. Here, Nadam had the best convergence speed. For the NER dataset, Nadam converged on average after 9 epochs, whereas SGD required 42 epochs.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Optimizer",
"sec_num": "6.2"
},
{
"text": "The pre-trained word embeddings had a large impact on the performance as shown in Table 4 . The embeddings by Komninos and Manandhar (2016) resulted in the best performance for the POS, the Entities and the Events task. For the Chunking task, the dependency-based embeddings of Levy and Goldberg (2014) are slightly ahead of the Komninos embeddings, the significance level is at p = 0.025. For NER, the GloVe embeddings trained on common crawl perform on par with the Komninos embeddings (p = 0.391).",
"cite_spans": [
{
"start": 110,
"end": 139,
"text": "Komninos and Manandhar (2016)",
"ref_id": "BIBREF17"
},
{
"start": 278,
"end": 302,
"text": "Levy and Goldberg (2014)",
"ref_id": "BIBREF21"
}
],
"ref_spans": [
{
"start": 82,
"end": 89,
"text": "Table 4",
"ref_id": "TABREF6"
}
],
"eq_spans": [],
"section": "Word Embeddings",
"sec_num": "6.3"
},
{
"text": "We observe that the underlying word embeddings have a large impact on the performance for all tasks.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word Embeddings",
"sec_num": "6.3"
},
{
"text": "Well suited word embeddings are especially critical for datasets with small training sets. For the POS task we observe a median difference of 4.97% between the Komninos embeddings and the GloVe2 embeddings.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word Embeddings",
"sec_num": "6.3"
},
{
"text": "Note we only evaluated the pre-trained embeddings provided by different authors, but not the underlying algorithms to generate these embeddings. The quality of word embeddings depends on many factors, including the size, the quality, and the preprocessing of the data corpus. As the corpora are not comparable, our results do not allow concluding that one approach is superior for generating word embeddings.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Word Embeddings",
"sec_num": "6.3"
},
{
"text": "We evaluate the approaches of Ma and Hovy (2016) using Convolutional Neural Networks (CNN) as well as the approach of Lample et al. (2016) using LSTM-networks to derive character-based representations. The difference between the CNN approach by Ma and Hovy (2016) and the LSTM approach by Lample et al. (2016) to derive a character-based representations is statistically insignificant for all tasks. This is quite surprising, as both approaches have fundamentally different properties: The CNN approach from Ma and Hovy (2016) takes only trigrams into account. It is also position independent, i.e. the network will not be able to distinguish between trigrams at the beginning, in the middle, or at the end of a word, which can be crucial information for some tasks. The BiLSTM approach from Lample et al. (2016) takes all characters of the word into account. Further, it is position aware, i.e. it can distinguish between characters at the start and at the end of the word. Intuitively, one would think that the LSTM approach by Lample et al. would be superior.",
"cite_spans": [
{
"start": 30,
"end": 48,
"text": "Ma and Hovy (2016)",
"ref_id": "BIBREF24"
},
{
"start": 118,
"end": 138,
"text": "Lample et al. (2016)",
"ref_id": "BIBREF18"
},
{
"start": 245,
"end": 263,
"text": "Ma and Hovy (2016)",
"ref_id": "BIBREF24"
},
{
"start": 289,
"end": 309,
"text": "Lample et al. (2016)",
"ref_id": "BIBREF18"
},
{
"start": 508,
"end": 526,
"text": "Ma and Hovy (2016)",
"ref_id": "BIBREF24"
},
{
"start": 792,
"end": 812,
"text": "Lample et al. (2016)",
"ref_id": "BIBREF18"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Character Representation",
"sec_num": "6.4"
},
{
"text": "For gradient clipping (Mikolov, 2012) we couldn't observe any improvement for the thresholds of 1, 3, 5, and 10 for any of the five tasks.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gradient Clipping and Normalization",
"sec_num": "6.5"
},
{
"text": "Gradient normalization has a better theoretical justification (Pascanu et al., 2013) and we can confirm with our experiments that it performs better. Not normalizing the gradient was the best option only for 5.6% of the 492 evaluated configurations (under null-hypothesis we would expect 20%). Which threshold to choose, as long as it is not too small or too large, is of lower importance. In most cases, a threshold of 1 was the best option (30.5% of the -0.44% -0.04% Average 18.5% 41.9% 39.6% Table 5 : Comparison of not using character-based representations and using CNNs (Ma and Hovy, 2016) or LSTMs (Lample et al., 2016) to derive character-based representations. 225 configurations were sampled for POS, 241 for Chunking, 217 for NER, 228 for Entities, and 219 for Events. cases).",
"cite_spans": [
{
"start": 62,
"end": 84,
"text": "(Pascanu et al., 2013)",
"ref_id": null
},
{
"start": 577,
"end": 596,
"text": "(Ma and Hovy, 2016)",
"ref_id": "BIBREF24"
},
{
"start": 606,
"end": 627,
"text": "(Lample et al., 2016)",
"ref_id": "BIBREF18"
}
],
"ref_spans": [
{
"start": 496,
"end": 503,
"text": "Table 5",
"ref_id": "TABREF5"
}
],
"eq_spans": [],
"section": "Gradient Clipping and Normalization",
"sec_num": "6.5"
},
{
"text": "We observed a large performance increase compared to not normalizing the gradient. The median increase was between 0.29 percentage points F 1score for the Chunking task and 0.82 percentage points for the POS task.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Gradient Clipping and Normalization",
"sec_num": "6.5"
},
{
"text": "Dropout is a popular method to deal with overfitting for neural networks (Srivastava et al., 2014) . We could observe that variational dropout (Gal and Ghahramani, 2016) clearly outperforms naive dropout and not using dropout. It was the best op-tion in 83.5% of the 479 evaluated configurations. The median performance increase in comparison to not using dropout was between 0.31 percentage points for the POS-task and 1.98 for the Entities task. We also observed a large improvement in comparison to naive dropout between 0.19 percentage points for the POS task and 1.32 percentage points for the Entities task. Variational dropout showed the smallest standard deviation, indicating that it is less dependent on the remaining hyperparameters and the random number sequence.",
"cite_spans": [
{
"start": 73,
"end": 98,
"text": "(Srivastava et al., 2014)",
"ref_id": "BIBREF36"
},
{
"start": 143,
"end": 169,
"text": "(Gal and Ghahramani, 2016)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Dropout",
"sec_num": "6.6"
},
{
"text": "We further evaluated whether variational dropout should be applied to the output units of the LSTMnetwork, to the recurrent units, or to both. We observed that applying dropout to both dimensions gave in most cases (62.6%) the best results. The median performance increase was between 0.05 percentage points and 0.82 percentage points.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Dropout",
"sec_num": "6.6"
},
{
"text": "The tagging schemes BIO and IOBES performed on par for 4 out of 5 tasks. For the Entities task, the BIO scheme significantly outperformed the IOBES scheme for 88.7% of the tested configurations. The median difference was \u2206F 1 = \u22121.01%.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Further Evaluated Parameters",
"sec_num": "6.7"
},
{
"text": "For the evaluated tasks, 2 stacked LSTM-layers achieved the best performance. For the POStagging task, 1 and 2 layers performed on par. For flat networks with a single LSTM-layer, around 150 recurrent units yielded the best performance. For networks with 2 or 3 layers, around 100 recurrent units per network yielded the best performance. However, the impact of the number of recurrent units was extremely small.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Further Evaluated Parameters",
"sec_num": "6.7"
},
{
"text": "For tasks with small training sets, smaller minibatch sizes of 1 up to 16 appears to be a good choice. For larger training sets sizes of 8 -32 appears to be a good choice. Mini-batch sizes of 64 usually performed worst.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Further Evaluated Parameters",
"sec_num": "6.7"
},
{
"text": "In this paper, we demonstrated that the sequence of random numbers has a statistically significant impact on the test performance and that wrong conclusions can be made if performance scores based on single runs are compared. We demonstrated this for the two recent state-of-the-art NER systems by Ma and Hovy (2016) and Lample et al. (2016) . Based on the published performance scores, Ma and Hovy draw the conclusion of a significant improvement over the approach of Lample et al. Re-executing the provided implementations with different seed values however showed that the implementation of Lample et al. results in a superior score distribution generalizing better to unseen data.",
"cite_spans": [
{
"start": 298,
"end": 316,
"text": "Ma and Hovy (2016)",
"ref_id": "BIBREF24"
},
{
"start": 321,
"end": 341,
"text": "Lample et al. (2016)",
"ref_id": "BIBREF18"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "7"
},
{
"text": "Comparing score distributions reduces the risk of rejecting promising approaches or falsely accepting weaker approaches. Further it can lead to new insights on the properties of an approach. We demonstrated this for ten design choices and hyperparameters of LSTM-networks for five tasks.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "7"
},
{
"text": "By studying the standard deviation of scores, we estimated the dependence on hyperparameters and on the random seed value for different approaches. We showed that SGD, Adagrad and Adadelta have a higher dependence than RMSProp, Adam or Nadam. We have shown that variational dropout also reduces the dependence on the hyperparameters and on the random seed value. As future work, we will investigate if those methods are either less dependent on the hyperparameters or are less dependent on the random seed value, e.g. if they avoid converging to bad local minima.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "7"
},
{
"text": "By testing a large number of configurations, we showed that some choices consistently lead to superior performance and are less dependent on the remaining configuration of the network. Thus, there is a good chance that these configurations require less tuning when applied to new tasks or domains.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "7"
},
{
"text": "https://arxiv.org/abs/1707.06799 2 https://github.com/UKPLab/ emnlp2017-bilstm-cnn-crf",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "1 Million iterations. p-value adapted using the Bonferroni correction to take the 86 tested seed values into account.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": ". In-depth analysis of different LSTMarchitectures for five sequence tagging tasks with respect to: superior performance, stability of results, and importance of tuning parameters.4 Entity Recognition labels all tokens that refer to an entity in a sentence, also generic phrases like U.S. president.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "https://code.google.com/archive/p/ word2vec/ 8 https://levyomer.wordpress.com/2014/ 04/25/dependency-based-word-embeddings/ 9 http://nlp.stanford.edu/projects/ glove/ 10 https://www.cs.york.ac.uk/nlp/extvec/",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "https://public.ukp.informatik. tu-darmstadt.de/reimers/Optimal_ Hyperparameters_for_Deep_LSTM-Networks. pdf",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "This work has been supported by the German Research Foundation as part of the Research Training Group Adaptive Preparation of Information from Heterogeneous Sources (AIPHES) under grant No. GRK 1994/1. Calculations for this research were conducted on the Lichtenberg high performance computer of the TU Darmstadt.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgements",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Globally normalized transition-based neural networks",
"authors": [
{
"first": "Daniel",
"middle": [],
"last": "Andor",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Alberti",
"suffix": ""
},
{
"first": "David",
"middle": [],
"last": "Weiss",
"suffix": ""
},
{
"first": "Aliaksei",
"middle": [],
"last": "Severyn",
"suffix": ""
},
{
"first": "Alessandro",
"middle": [],
"last": "Presta",
"suffix": ""
},
{
"first": "Kuzman",
"middle": [],
"last": "Ganchev",
"suffix": ""
}
],
"year": 2016,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Daniel Andor, Chris Alberti, David Weiss, Aliaksei Severyn, Alessandro Presta, Kuzman Ganchev, Slav Petrov, and Michael Collins. 2016. Globally nor- malized transition-based neural networks. CoRR, abs/1603.06042.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Enriching Word Vectors with Subword Information",
"authors": [
{
"first": "Piotr",
"middle": [],
"last": "Bojanowski",
"suffix": ""
},
{
"first": "Edouard",
"middle": [],
"last": "Grave",
"suffix": ""
},
{
"first": "Armand",
"middle": [],
"last": "Joulin",
"suffix": ""
},
{
"first": "Tomas",
"middle": [],
"last": "Mikolov",
"suffix": ""
}
],
"year": 2016,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:1607.04606"
]
},
"num": null,
"urls": [],
"raw_text": "Piotr Bojanowski, Edouard Grave, Armand Joulin, and Tomas Mikolov. 2016. Enriching Word Vec- tors with Subword Information. arXiv preprint arXiv:1607.04606.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Incorporating Nesterov Momentum into Adam",
"authors": [
{
"first": "Timothy",
"middle": [],
"last": "Dozat",
"suffix": ""
}
],
"year": 2015,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Timothy Dozat. 2015. Incorporating Nesterov Momen- tum into Adam.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Adaptive Subgradient Methods for Online Learning and Stochastic Optimization",
"authors": [],
"year": null,
"venue": "J. Mach. Learn. Res",
"volume": "12",
"issue": "",
"pages": "2121--2159",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Adaptive Subgradient Methods for Online Learning and Stochastic Optimization. J. Mach. Learn. Res., 12:2121-2159.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Why Does Unsupervised Pre-training Help Deep Learning",
"authors": [
{
"first": "Dumitru",
"middle": [],
"last": "Erhan",
"suffix": ""
},
{
"first": "Yoshua",
"middle": [],
"last": "Bengio",
"suffix": ""
},
{
"first": "Aaron",
"middle": [],
"last": "Courville",
"suffix": ""
},
{
"first": "Pierre-Antoine",
"middle": [],
"last": "Manzagol",
"suffix": ""
},
{
"first": "Pascal",
"middle": [],
"last": "Vincent",
"suffix": ""
},
{
"first": "Samy",
"middle": [],
"last": "Bengio",
"suffix": ""
}
],
"year": 2010,
"venue": "Journal of Machine Learning Research",
"volume": "11",
"issue": "",
"pages": "625--660",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dumitru Erhan, Yoshua Bengio, Aaron Courville, Pierre-Antoine Manzagol, Pascal Vincent, and Samy Bengio. 2010. Why Does Unsupervised Pre-training Help Deep Learning? Journal of Machine Learning Research, 11:625-660.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Offspring from Reproduction Problems: What Replication Failure Teaches Us",
"authors": [
{
"first": "Antske",
"middle": [],
"last": "Fokkens",
"suffix": ""
},
{
"first": "Marten",
"middle": [],
"last": "Marieke Van Erp",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Postma",
"suffix": ""
}
],
"year": 2013,
"venue": "ACL (1)",
"volume": "",
"issue": "",
"pages": "1691--1701",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Antske Fokkens, Marieke van Erp, Marten Postma, Ted Pedersen, Piek Vossen, and Nuno Freire. 2013. Off- spring from Reproduction Problems: What Replication Failure Teaches Us. In ACL (1), pages 1691-1701. The Association for Computer Linguistics.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "A Theoretically Grounded Application of Dropout in Recurrent Neural Networks",
"authors": [
{
"first": "Yarin",
"middle": [],
"last": "Gal",
"suffix": ""
},
{
"first": "Zoubin",
"middle": [],
"last": "Ghahramani",
"suffix": ""
}
],
"year": 2016,
"venue": "Advances in Neural Information Processing Systems 29: Annual Conference on Neural Information Processing Systems",
"volume": "",
"issue": "",
"pages": "1019--1027",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yarin Gal and Zoubin Ghahramani. 2016. A Theoret- ically Grounded Application of Dropout in Recurrent Neural Networks. In Advances in Neural Information Processing Systems 29: Annual Conference on Neural Information Processing Systems 2016, December 5-10, 2016, Barcelona, Spain, pages 1019-1027.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Understanding the difficulty of training deep feedforward neural networks",
"authors": [
{
"first": "Xavier",
"middle": [],
"last": "Glorot",
"suffix": ""
},
{
"first": "Yoshua",
"middle": [],
"last": "Bengio",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of the International Conference on Artificial Intelligence and Statistics (AIS-TATS10). Society for Artificial Intelligence and Statistics",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xavier Glorot and Yoshua Bengio. 2010. Understand- ing the difficulty of training deep feedforward neural networks. In In Proceedings of the International Con- ference on Artificial Intelligence and Statistics (AIS- TATS10). Society for Artificial Intelligence and Statis- tics.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Neural Networks for Machine Learning -Lecture 6a -Overview of mini-batch gradient descent",
"authors": [
{
"first": "Geoffrey",
"middle": [],
"last": "Hinton",
"suffix": ""
}
],
"year": 2012,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Geoffrey Hinton. 2012. Neural Networks for Machine Learning -Lecture 6a -Overview of mini-batch gradi- ent descent.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Flat Minima",
"authors": [
{
"first": "Sepp",
"middle": [],
"last": "Hochreiter",
"suffix": ""
},
{
"first": "J\u00fcrgen",
"middle": [],
"last": "Schmidhuber",
"suffix": ""
}
],
"year": 1997,
"venue": "Neural Computation",
"volume": "9",
"issue": "1",
"pages": "1--42",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sepp Hochreiter and J\u00fcrgen Schmidhuber. 1997a. Flat Minima. Neural Computation, 9(1):1-42.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Long Short-Term Memory",
"authors": [
{
"first": "Sepp",
"middle": [],
"last": "Hochreiter",
"suffix": ""
},
{
"first": "J\u00fcrgen",
"middle": [],
"last": "Schmidhuber",
"suffix": ""
}
],
"year": 1997,
"venue": "Neural Computation",
"volume": "9",
"issue": "8",
"pages": "1735--1780",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Sepp Hochreiter and J\u00fcrgen Schmidhuber. 1997b. Long Short-Term Memory. Neural Computation, 9(8):1735-1780.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Bidirectional LSTM-CRF Models for Sequence Tagging. CoRR",
"authors": [
{
"first": "Zhiheng",
"middle": [],
"last": "Huang",
"suffix": ""
},
{
"first": "Wei",
"middle": [],
"last": "Xu",
"suffix": ""
},
{
"first": "Kai",
"middle": [],
"last": "Yu",
"suffix": ""
}
],
"year": 2015,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zhiheng Huang, Wei Xu, and Kai Yu. 2015. Bidi- rectional LSTM-CRF Models for Sequence Tagging. CoRR, abs/1508.01991.",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "An Efficient Approach for Assessing Hyperparameter Importance",
"authors": [],
"year": null,
"venue": "Proceedings of the 31st International Conference on International Conference on Machine Learning",
"volume": "32",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "An Efficient Approach for Assessing Hyperpa- rameter Importance. In Proceedings of the 31st Inter- national Conference on International Conference on Machine Learning -Volume 32, ICML'14, pages I- 754-I-762. JMLR.org.",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"title": "On Large-Batch Training for Deep Learning: Generalization Gap and Sharp Minima",
"authors": [
{
"first": "Dheevatsa",
"middle": [],
"last": "Nitish Shirish Keskar",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Mudigere",
"suffix": ""
}
],
"year": 2016,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nitish Shirish Keskar, Dheevatsa Mudigere, Jorge No- cedal, Mikhail Smelyanskiy, and Ping Tak Peter Tang. 2016. On Large-Batch Training for Deep Learn- ing: Generalization Gap and Sharp Minima. CoRR, abs/1609.04836.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Adam: A Method for Stochastic Optimization",
"authors": [
{
"first": "P",
"middle": [],
"last": "Diederik",
"suffix": ""
},
{
"first": "Jimmy",
"middle": [],
"last": "Kingma",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Ba",
"suffix": ""
}
],
"year": 2014,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Diederik P. Kingma and Jimmy Ba. 2014. Adam: A Method for Stochastic Optimization. CoRR, abs/1412.6980.",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Dependency based embeddings for sentence classification tasks",
"authors": [
{
"first": "Alexandros",
"middle": [],
"last": "Komninos",
"suffix": ""
},
{
"first": "Suresh",
"middle": [],
"last": "Manandhar",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the 2016 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies",
"volume": "",
"issue": "",
"pages": "1490--1500",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Alexandros Komninos and Suresh Manandhar. 2016. Dependency based embeddings for sentence classifi- cation tasks. In Proceedings of the 2016 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Tech- nologies, pages 1490-1500, San Diego, California. As- sociation for Computational Linguistics.",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Neural architectures for named entity recognition",
"authors": [
{
"first": "Guillaume",
"middle": [],
"last": "Lample",
"suffix": ""
},
{
"first": "Miguel",
"middle": [],
"last": "Ballesteros",
"suffix": ""
},
{
"first": "Sandeep",
"middle": [],
"last": "Subramanian",
"suffix": ""
},
{
"first": "Kazuya",
"middle": [],
"last": "Kawakami",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Dyer",
"suffix": ""
}
],
"year": 2016,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Guillaume Lample, Miguel Ballesteros, Sandeep Sub- ramanian, Kazuya Kawakami, and Chris Dyer. 2016. Neural architectures for named entity recognition. CoRR, abs/1603.01360.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Backpropagation Applied to Handwritten Zip Code Recognition",
"authors": [
{
"first": "Y",
"middle": [],
"last": "Lecun",
"suffix": ""
},
{
"first": "B",
"middle": [],
"last": "Boser",
"suffix": ""
},
{
"first": "J",
"middle": [
"S"
],
"last": "Denker",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Henderson",
"suffix": ""
},
{
"first": "R",
"middle": [
"E"
],
"last": "Howard",
"suffix": ""
},
{
"first": "W",
"middle": [],
"last": "Hubbard",
"suffix": ""
},
{
"first": "L",
"middle": [
"D"
],
"last": "",
"suffix": ""
}
],
"year": 1989,
"venue": "Neural Computation",
"volume": "1",
"issue": "4",
"pages": "541--551",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Y. LeCun, B. Boser, J. S. Denker, D. Henderson, R. E. Howard, W. Hubbard, and L. D. Jackel. 1989. Back- propagation Applied to Handwritten Zip Code Recog- nition. Neural Computation, 1(4):541-551.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Efficient BackProp",
"authors": [
{
"first": "Yann",
"middle": [],
"last": "Lecun",
"suffix": ""
},
{
"first": "L\u00e9on",
"middle": [],
"last": "Bottou",
"suffix": ""
},
{
"first": "Genevieve",
"middle": [
"B"
],
"last": "Orr",
"suffix": ""
},
{
"first": "Klaus-Robert",
"middle": [],
"last": "M\u00fcller",
"suffix": ""
}
],
"year": 1998,
"venue": "Neural Networks: Tricks of the Trade, This Book is an Outgrowth of a 1996 NIPS Workshop",
"volume": "",
"issue": "",
"pages": "9--50",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yann LeCun, L\u00e9on Bottou, Genevieve B. Orr, and Klaus-Robert M\u00fcller. 1998. Efficient BackProp. In Neural Networks: Tricks of the Trade, This Book is an Outgrowth of a 1996 NIPS Workshop, pages 9-50, Lon- don, UK, UK. Springer-Verlag.",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Dependency-Based Word Embeddings",
"authors": [
{
"first": "Omer",
"middle": [],
"last": "Levy",
"suffix": ""
},
{
"first": "Yoav",
"middle": [],
"last": "Goldberg",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the 52nd",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Omer Levy and Yoav Goldberg. 2014. Dependency- Based Word Embeddings. In Proceedings of the 52nd",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Annual Meeting of the Association for Computational Linguistics",
"authors": [],
"year": 2014,
"venue": "",
"volume": "2",
"issue": "",
"pages": "302--308",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Annual Meeting of the Association for Computational Linguistics, ACL 2014, June 22-27, 2014, Baltimore, MD, USA, Volume 2: Short Papers, pages 302-308.",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Joint Event Extraction via Structured Prediction with Global Features",
"authors": [
{
"first": "Qi",
"middle": [],
"last": "Li",
"suffix": ""
},
{
"first": "Ji",
"middle": [],
"last": "Heng",
"suffix": ""
},
{
"first": "Liang",
"middle": [],
"last": "Huang",
"suffix": ""
}
],
"year": 2013,
"venue": "Proceedings of the 51st Annual Meeting of the Association for Computational Linguistics",
"volume": "1",
"issue": "",
"pages": "73--82",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Qi Li, Heng Ji, and Liang Huang. 2013. Joint Event Ex- traction via Structured Prediction with Global Features. In Proceedings of the 51st Annual Meeting of the Asso- ciation for Computational Linguistics (Volume 1: Long Papers), pages 73-82, Sofia, Bulgaria. Association for Computational Linguistics.",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"title": "End-to-end Sequence Labeling via Bi-directional LSTM-CNNs-CRF",
"authors": [
{
"first": "Xuezhe",
"middle": [],
"last": "Ma",
"suffix": ""
},
{
"first": "Eduard",
"middle": [
"H"
],
"last": "Hovy",
"suffix": ""
}
],
"year": 2016,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xuezhe Ma and Eduard H. Hovy. 2016. End-to-end Se- quence Labeling via Bi-directional LSTM-CNNs-CRF.",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "Building a Large Annotated Corpus of English: The Penn Treebank",
"authors": [
{
"first": "Mitchell",
"middle": [
"P"
],
"last": "Marcus",
"suffix": ""
},
{
"first": "Mary",
"middle": [
"Ann"
],
"last": "Marcinkiewicz",
"suffix": ""
},
{
"first": "Beatrice",
"middle": [],
"last": "Santorini",
"suffix": ""
}
],
"year": 1993,
"venue": "Comput. Linguist",
"volume": "19",
"issue": "2",
"pages": "313--330",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Mitchell P. Marcus, Mary Ann Marcinkiewicz, and Beatrice Santorini. 1993. Building a Large Annotated Corpus of English: The Penn Treebank. Comput. Lin- guist., 19(2):313-330.",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "The kolmogorov-smirnov test for goodness of fit",
"authors": [
{
"first": "J",
"middle": [],
"last": "Frank",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Massey",
"suffix": ""
}
],
"year": 1951,
"venue": "Journal of the American Statistical Association",
"volume": "46",
"issue": "253",
"pages": "68--78",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Frank J. Massey. 1951. The kolmogorov-smirnov test for goodness of fit. Journal of the American Statistical Association, 46(253):68-78.",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "Statistical language models based on neural networks",
"authors": [
{
"first": "Tom\u00e1\u0161",
"middle": [],
"last": "Mikolov",
"suffix": ""
}
],
"year": 2012,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tom\u00e1\u0161 Mikolov. 2012. Statistical language models based on neural networks. Ph.D. thesis, Brno Univer- sity of Technology.",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "Efficient Estimation of Word Representations in Vector Space",
"authors": [
{
"first": "Tomas",
"middle": [],
"last": "Mikolov",
"suffix": ""
},
{
"first": "Kai",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "Greg",
"middle": [],
"last": "Corrado",
"suffix": ""
},
{
"first": "Jeffrey",
"middle": [],
"last": "Dean",
"suffix": ""
}
],
"year": 2013,
"venue": "CoRR",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tomas Mikolov, Kai Chen, Greg Corrado, and Jeffrey Dean. 2013. Efficient Estimation of Word Representa- tions in Vector Space. CoRR, abs/1301.3781.",
"links": null
},
"BIBREF30": {
"ref_id": "b30",
"title": "A method of solving a convex programming problem with convergence rate O(1/sqr(k))",
"authors": [
{
"first": "Yurii",
"middle": [],
"last": "Nesterov",
"suffix": ""
}
],
"year": 1983,
"venue": "Soviet Mathematics Doklady",
"volume": "27",
"issue": "",
"pages": "372--376",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yurii Nesterov. 1983. A method of solving a convex programming problem with convergence rate O(1/sqr(k)). Soviet Mathematics Doklady, 27:372- 376.",
"links": null
},
"BIBREF32": {
"ref_id": "b32",
"title": "On the Difficulty of Training Recurrent Neural Networks",
"authors": [],
"year": null,
"venue": "Proceedings of the 30th International Conference on International Conference on Machine Learning",
"volume": "28",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "On the Difficulty of Training Recurrent Neural Networks. In Proceedings of the 30th International Conference on International Conference on Machine Learning -Volume 28, ICML'13, pages III-1310-III- 1318. JMLR.org.",
"links": null
},
"BIBREF33": {
"ref_id": "b33",
"title": "Glove: Global vectors for word representation",
"authors": [
{
"first": "Jeffrey",
"middle": [],
"last": "Pennington",
"suffix": ""
},
{
"first": "Richard",
"middle": [],
"last": "Socher",
"suffix": ""
},
{
"first": "Christopher",
"middle": [
"D"
],
"last": "Manning",
"suffix": ""
}
],
"year": 2014,
"venue": "Empirical Methods in Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "1532--1543",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jeffrey Pennington, Richard Socher, and Christopher D. Manning. 2014. Glove: Global vectors for word repre- sentation. In Empirical Methods in Natural Language Processing (EMNLP), pages 1532-1543.",
"links": null
},
"BIBREF34": {
"ref_id": "b34",
"title": "Optimal Hyperparameters for Deep LSTM-Networks for Sequence Labeling Tasks",
"authors": [
{
"first": "Nils",
"middle": [],
"last": "Reimers",
"suffix": ""
},
{
"first": "Iryna",
"middle": [],
"last": "Gurevych",
"suffix": ""
}
],
"year": 2017,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:1707.06799"
]
},
"num": null,
"urls": [],
"raw_text": "Nils Reimers and Iryna Gurevych. 2017. Optimal Hy- perparameters for Deep LSTM-Networks for Sequence Labeling Tasks. arXiv preprint arXiv:1707.06799.",
"links": null
},
"BIBREF35": {
"ref_id": "b35",
"title": "Deep multitask learning with low level tasks supervised at lower layers",
"authors": [
{
"first": "Anders",
"middle": [],
"last": "S\u00f8gaard",
"suffix": ""
},
{
"first": "Yoav",
"middle": [],
"last": "Goldberg",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics",
"volume": "2",
"issue": "",
"pages": "231--235",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Anders S\u00f8gaard and Yoav Goldberg. 2016. Deep multi- task learning with low level tasks supervised at lower layers. In Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers), pages 231-235, Berlin, Germany. As- sociation for Computational Linguistics.",
"links": null
},
"BIBREF36": {
"ref_id": "b36",
"title": "Dropout: A Simple Way to Prevent Neural Networks from Overfitting",
"authors": [
{
"first": "Nitish",
"middle": [],
"last": "Srivastava",
"suffix": ""
},
{
"first": "Geoffrey",
"middle": [],
"last": "Hinton",
"suffix": ""
},
{
"first": "Alex",
"middle": [],
"last": "Krizhevsky",
"suffix": ""
},
{
"first": "Ilya",
"middle": [],
"last": "Sutskever",
"suffix": ""
},
{
"first": "Ruslan",
"middle": [],
"last": "Salakhutdinov",
"suffix": ""
}
],
"year": 2014,
"venue": "J. Mach. Learn. Res",
"volume": "15",
"issue": "1",
"pages": "1929--1958",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. 2014. Dropout: A Simple Way to Prevent Neural Networks from Overfitting. J. Mach. Learn. Res., 15(1):1929- 1958.",
"links": null
},
"BIBREF37": {
"ref_id": "b37",
"title": "Feature-rich Part-ofspeech 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": "Proceedings of the 2003 Conference of the North American Chapter of the Association for Computational Linguistics on Human Language Technology",
"volume": "1",
"issue": "",
"pages": "173--180",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Kristina Toutanova, Dan Klein, Christopher D. Man- ning, and Yoram Singer. 2003. Feature-rich Part-of- speech Tagging with a Cyclic Dependency Network. In Proceedings of the 2003 Conference of the North Amer- ican Chapter of the Association for Computational Lin- guistics on Human Language Technology -Volume 1, NAACL 2003, pages 173-180, Stroudsburg, PA, USA. Association for Computational Linguistics.",
"links": null
},
"BIBREF39": {
"ref_id": "b39",
"title": "Google's Neural Machine Translation System: Bridging the Gap between Human and Machine Translation",
"authors": [
{
"first": "Mohammad",
"middle": [],
"last": "Le",
"suffix": ""
},
{
"first": "Wolfgang",
"middle": [],
"last": "Norouzi",
"suffix": ""
},
{
"first": "Maxim",
"middle": [],
"last": "Macherey",
"suffix": ""
},
{
"first": "Yuan",
"middle": [],
"last": "Krikun",
"suffix": ""
},
{
"first": "Qin",
"middle": [],
"last": "Cao",
"suffix": ""
},
{
"first": "Klaus",
"middle": [],
"last": "Gao",
"suffix": ""
},
{
"first": "Jeff",
"middle": [],
"last": "Macherey",
"suffix": ""
},
{
"first": "Apurva",
"middle": [],
"last": "Klingner",
"suffix": ""
},
{
"first": "Melvin",
"middle": [],
"last": "Shah",
"suffix": ""
},
{
"first": "Xiaobing",
"middle": [],
"last": "Johnson",
"suffix": ""
},
{
"first": "Lukasz",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "Stephan",
"middle": [],
"last": "Kaiser",
"suffix": ""
},
{
"first": "Yoshikiyo",
"middle": [],
"last": "Gouws",
"suffix": ""
},
{
"first": "Taku",
"middle": [],
"last": "Kato",
"suffix": ""
},
{
"first": "Hideto",
"middle": [],
"last": "Kudo",
"suffix": ""
},
{
"first": "Keith",
"middle": [],
"last": "Kazawa",
"suffix": ""
},
{
"first": "George",
"middle": [],
"last": "Stevens",
"suffix": ""
},
{
"first": "Nishant",
"middle": [],
"last": "Kurian",
"suffix": ""
},
{
"first": "Wei",
"middle": [],
"last": "Patil",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Wang",
"suffix": ""
}
],
"year": 2016,
"venue": "Oriol Vinyals",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Le, Mohammad Norouzi, Wolfgang Macherey, Maxim Krikun, Yuan Cao, Qin Gao, Klaus Macherey, Jeff Klingner, Apurva Shah, Melvin Johnson, Xiaobing Liu, Lukasz Kaiser, Stephan Gouws, Yoshikiyo Kato, Taku Kudo, Hideto Kazawa, Keith Stevens, George Kurian, Nishant Patil, Wei Wang, Cliff Young, Jason Smith, Ja- son Riesa, Alex Rudnick, Oriol Vinyals, Greg Corrado, Macduff Hughes, and Jeffrey Dean. 2016. Google's Neural Machine Translation System: Bridging the Gap between Human and Machine Translation. CoRR, abs/1609.08144.",
"links": null
},
"BIBREF40": {
"ref_id": "b40",
"title": "ADADELTA: an adaptive learning rate method",
"authors": [
{
"first": "D",
"middle": [],
"last": "Matthew",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Zeiler",
"suffix": ""
}
],
"year": 2012,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Matthew D. Zeiler. 2012. ADADELTA: an adaptive learning rate method. CoRR, abs/1212.5701.",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"uris": null,
"text": "A conceptual sketch of flat and sharp minima from Keskar et al. (2016). The Y-axis indicates values of the error function and the Xaxis the weight-space.",
"num": null,
"type_str": "figure"
},
"FIGREF1": {
"uris": null,
"text": "Distribution of scores for re-running the system by Ma and Hovy (left) and Lample et al. (right) multiple times with different seed values. Dashed lines indicate quartiles.",
"num": null,
"type_str": "figure"
},
"FIGREF2": {
"uris": null,
"text": "Difference between Softmax and CRF classifier for different number of BiLSTM-layers for the CoNLL 2003 NER dataset.",
"num": null,
"type_str": "figure"
},
"TABREF1": {
"text": "The system byMa and Hovy (2016) andLample et al. (2016) were run multiple times with different seed values.",
"num": null,
"content": "<table><tr><td>F 1</td><td>\u03c3</td></tr></table>",
"html": null,
"type_str": "table"
},
"TABREF2": {
"text": "The table depicts the median, the 95th percentile and the maximum difference between networks with the same hyperparameters but different random seed values.",
"num": null,
"content": "<table><tr><td>statistically significant improvement for the tasks</td></tr><tr><td>POS, Chunking and Event Detection. For NER</td></tr><tr><td>and Entity Recognition, the difference was statis-</td></tr><tr><td>tically not significant given the number of tested</td></tr><tr><td>hyperparameters.</td></tr></table>",
"html": null,
"type_str": "table"
},
"TABREF4": {
"text": "Percentages of configurations where Softmax or CRF classifiers demonstrated a higher test performance.",
"num": null,
"content": "<table/>",
"html": null,
"type_str": "table"
},
"TABREF5": {
"text": "",
"num": null,
"content": "<table><tr><td>shows that character-based representations</td></tr><tr><td>yield a statistically significant difference only for</td></tr><tr><td>the POS, the Chunking, and the Events task. For</td></tr><tr><td>NER and Entity Recognition, the difference to not</td></tr><tr><td>using a character-based representation is not signif-</td></tr><tr><td>icant (p &gt; 0.01).</td></tr></table>",
"html": null,
"type_str": "table"
},
"TABREF6": {
"text": "Randomly sampled configurations were evaluated with 8 possible word embeddings. 108 configurations were sampled for POS, 97 for Chunking, 110 for NER, 119 for Entities, and 124 for Events.",
"num": null,
"content": "<table/>",
"html": null,
"type_str": "table"
}
}
}
}