ACL-OCL / Base_JSON /prefixC /json /C18 /C18-1007.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "C18-1007",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T13:08:22.950192Z"
},
"title": "Low-resource Cross-lingual Event Type Detection in Documents via Distant Supervision with Minimal Effort",
"authors": [
{
"first": "Aldrian",
"middle": [
"Obaja"
],
"last": "Muis",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Language Technology Institute Carnegie Mellon University Pittsburgh",
"location": {
"region": "PA"
}
},
"email": "amuis@andrew.cmu.edu"
},
{
"first": "Naoki",
"middle": [],
"last": "Otani",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Language Technology Institute Carnegie Mellon University Pittsburgh",
"location": {
"region": "PA"
}
},
"email": "notani@andrew.cmu.edu"
},
{
"first": "Nidhi",
"middle": [],
"last": "Vyas",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Language Technology Institute Carnegie Mellon University Pittsburgh",
"location": {
"region": "PA"
}
},
"email": "nkvyas@andrew.cmu.edu"
},
{
"first": "Ruochen",
"middle": [],
"last": "Xu",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Language Technology Institute Carnegie Mellon University Pittsburgh",
"location": {
"region": "PA"
}
},
"email": "ruochenx@andrew.cmu.edu"
},
{
"first": "Yiming",
"middle": [],
"last": "Yang",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Language Technology Institute Carnegie Mellon University Pittsburgh",
"location": {
"region": "PA"
}
},
"email": "yiming@andrew.cmu.edu"
},
{
"first": "Teruko",
"middle": [],
"last": "Mitamura",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Language Technology Institute Carnegie Mellon University Pittsburgh",
"location": {
"region": "PA"
}
},
"email": "teruko@andrew.cmu.edu"
},
{
"first": "Eduard",
"middle": [],
"last": "Hovy",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "Language Technology Institute Carnegie Mellon University Pittsburgh",
"location": {
"region": "PA"
}
},
"email": "ehovy@andrew.cmu.edu"
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "The use of machine learning for NLP generally requires resources for training. Tasks performed in a low-resource language usually rely on labeled data in another, typically resource-rich, language. However, there might not be enough labeled data even in a resource-rich language such as English. In such cases, one approach is to use a hand-crafted approach that utilizes only a small bilingual dictionary with minimal manual verification to create distantly supervised data. Another is to explore typical machine learning techniques, for example adversarial training of bilingual word representations. We find that in event-type detection task-the task to classify [parts of] documents into a fixed set of labels-they give about the same performance. We explore ways in which the two methods can be complementary and also see how to best utilize a limited budget for manual annotation to maximize performance gain.",
"pdf_parse": {
"paper_id": "C18-1007",
"_pdf_hash": "",
"abstract": [
{
"text": "The use of machine learning for NLP generally requires resources for training. Tasks performed in a low-resource language usually rely on labeled data in another, typically resource-rich, language. However, there might not be enough labeled data even in a resource-rich language such as English. In such cases, one approach is to use a hand-crafted approach that utilizes only a small bilingual dictionary with minimal manual verification to create distantly supervised data. Another is to explore typical machine learning techniques, for example adversarial training of bilingual word representations. We find that in event-type detection task-the task to classify [parts of] documents into a fixed set of labels-they give about the same performance. We explore ways in which the two methods can be complementary and also see how to best utilize a limited budget for manual annotation to maximize performance gain.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "For most languages of the world, few or no language processing tools or resources exist (Baumann and Pierrehumbert, 2014) . This hinders efforts to apply certain language technologies enjoyed by languages like English, in which much current research is done.",
"cite_spans": [
{
"start": 88,
"end": 121,
"text": "(Baumann and Pierrehumbert, 2014)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "To perform natural language processing tasks in resource-poor languages, one way to overcome data scarcity is to tap on resources from another resource-rich language. Assuming that there are already good resources and tools to solve the same tasks in the more resource-rich language (henceforth, auxiliary language), the only remaining challenge is to transfer the learning process into the resource-poor language (henceforth, target language) and adapt it to the specifics of that language. One way to do this is to build a shared word representation across the two languages and train an NL engine on this shared representation, perhaps using an adversarial domain adaptation approach to handle the domain (language) shift (Chen et al., 2017) . Usually, these approaches assume the availability of large labeled data in the auxiliary language, on the order of hundred thousands to millions.",
"cite_spans": [
{
"start": 725,
"end": 744,
"text": "(Chen et al., 2017)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "However, for some more complex or specialized tasks, there might not be enough available training data even in a resource-rich language such as English. A case in point is the event-type classification task over the publicly available datasets, such as ACE 2005 1 and TAC KBP 2 datasets, which usually contain only a few hundred to a few thousand documents. The situation frame (SF) detection task is one example of event-type classification task, where the objective is to extract from each document one or more situation frames with their corresponding arguments. A situation frame (SF) is either an issue being described in the articles, such as civil unrest or terrorism, or a need situation such as the need for water or medical aid. In our task there are 11 situation frame types, each associated with a set of arguments, namely the location, status, relief, and urgency. For example, an article titled \"Millions of people are at the risk of starvation due to the food shortage in South Sudan\", with content describing the details and the cause of the food shortage, including a mention of difficulty accessing certain regions, can be classified as describing a food need and an infrastructure need.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "As described below, we have tried two approaches: (1) a simple keyword-matching system utilizing only a small bilingual dictionary and minimal manual verification and (2) a sophisticated neural adversarial network that learns bilingual word representations for cross-lingual transfer. We find that the methods have similar performance. We therefore explore ways in which few keyword-based models can create additional, distantly supervised data to improve the performance of a neural cross-lingual event type detection system. Our contributions are: (1) an evaluation of a state-of-the-art method in a different task showing its similar result against a simple baseline, (2) ways to improve performance of such models, and (3) an analysis of the result, with insights to practitioners as to where to focus the available, yet limited, budget for manual annotation work.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "This paper is organized as follows: we first describe the related work on cross-lingual NLP tasks in low-resource settings, specifically how the available resources are used. Based on previous work, we then apply our proposed training data augmentation methods and run experiments to show the effectiveness of our methods. We then analyze the results, and follow with a few suggestions on how to best utilize the available annotation effort for maximum gain.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Keyword-based Models A keyword-based heuristic model is a simple yet effective approach to extract specific information such as events (Keane et al., 2015) , because keywords often indicate a strong presence of important information contained in documents (Marujo et al., 2015) . Such methods have been used in different tasks like text categorization (\u00d6zg\u00fcr et al., 2005) and information retrieval (Marujo et al., 2013) to extract the required information. Keyword heuristics have also been used to overcome language and domain barriers using bilingual dictionaries (Szarvas, 2008; Tran et al., 2013) . However, a weak bilingual dictionary could result in low coverage with this method. Hence, to overcome the limiting bilingual dictionary people employ bootstrapping methods to improve the coverage (Knopp, 2011; Ebrahimi et al., 2016) .",
"cite_spans": [
{
"start": 135,
"end": 155,
"text": "(Keane et al., 2015)",
"ref_id": "BIBREF13"
},
{
"start": 256,
"end": 277,
"text": "(Marujo et al., 2015)",
"ref_id": "BIBREF22"
},
{
"start": 352,
"end": 372,
"text": "(\u00d6zg\u00fcr et al., 2005)",
"ref_id": null
},
{
"start": 399,
"end": 420,
"text": "(Marujo et al., 2013)",
"ref_id": "BIBREF21"
},
{
"start": 567,
"end": 582,
"text": "(Szarvas, 2008;",
"ref_id": "BIBREF29"
},
{
"start": 583,
"end": 601,
"text": "Tran et al., 2013)",
"ref_id": "BIBREF30"
},
{
"start": 801,
"end": 814,
"text": "(Knopp, 2011;",
"ref_id": "BIBREF16"
},
{
"start": 815,
"end": 837,
"text": "Ebrahimi et al., 2016)",
"ref_id": "BIBREF6"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "Cross-Lingual Text Classification Cross-lingual event type detection is closely related to crosslingual text classification (CLTC), which aims to classify text in a target language using training data from an auxiliary language (Bel et al., 2003) .",
"cite_spans": [
{
"start": 228,
"end": 246,
"text": "(Bel et al., 2003)",
"ref_id": "BIBREF2"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "To bridge the language gap, early approaches of CLTC relied on a comprehensive bilingual dictionary to translate documents between languages (Bel et al., 2003; Shi et al., 2010; Mihalcea et al., 2007) . However, in resource-poor languages, bilingual dictionaries may be small and sparse. Therefore, the performance of direct word translation will be unsatisfactory. Some researchers utilized the bilingual dictionary to translate the models instead (Xu et al., 2016; Littell et al., 2017) .",
"cite_spans": [
{
"start": 141,
"end": 159,
"text": "(Bel et al., 2003;",
"ref_id": "BIBREF2"
},
{
"start": 160,
"end": 177,
"text": "Shi et al., 2010;",
"ref_id": "BIBREF28"
},
{
"start": 178,
"end": 200,
"text": "Mihalcea et al., 2007)",
"ref_id": "BIBREF23"
},
{
"start": 449,
"end": 466,
"text": "(Xu et al., 2016;",
"ref_id": "BIBREF35"
},
{
"start": 467,
"end": 488,
"text": "Littell et al., 2017)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "Another line of work focuses on the use of automatic machine translation as an oracle. The various learning algorithms treated the translations as a second view of document and facilitate cross-lingual learning with co-training (Wan, 2009) , majority learning (Amini et al., 2009) , matrix completion (Xiao and Guo, 2013) and multi-view co-regularization (Guo and Xiao, 2012a) .",
"cite_spans": [
{
"start": 228,
"end": 239,
"text": "(Wan, 2009)",
"ref_id": "BIBREF32"
},
{
"start": 260,
"end": 280,
"text": "(Amini et al., 2009)",
"ref_id": "BIBREF0"
},
{
"start": 301,
"end": 321,
"text": "(Xiao and Guo, 2013)",
"ref_id": "BIBREF33"
},
{
"start": 355,
"end": 376,
"text": "(Guo and Xiao, 2012a)",
"ref_id": "BIBREF9"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "Instead of word-level or sentence-level translation, various other approaches seek some cross-lingual mapping between document representation (Littman et al., 1998; Vinokourov et al., 2002; Platt et al., 2010; Jagarlamudi et al., 2011; De Smet et al., 2011; Guo and Xiao, 2012b; Zhou et al., 2016a; Zhou et al., 2016b; Chen et al., 2017) or label distribution (Xu and Yang, 2017) .",
"cite_spans": [
{
"start": 142,
"end": 164,
"text": "(Littman et al., 1998;",
"ref_id": "BIBREF19"
},
{
"start": 165,
"end": 189,
"text": "Vinokourov et al., 2002;",
"ref_id": "BIBREF31"
},
{
"start": 190,
"end": 209,
"text": "Platt et al., 2010;",
"ref_id": "BIBREF27"
},
{
"start": 210,
"end": 235,
"text": "Jagarlamudi et al., 2011;",
"ref_id": "BIBREF11"
},
{
"start": 236,
"end": 257,
"text": "De Smet et al., 2011;",
"ref_id": "BIBREF4"
},
{
"start": 258,
"end": 278,
"text": "Guo and Xiao, 2012b;",
"ref_id": "BIBREF10"
},
{
"start": 279,
"end": 298,
"text": "Zhou et al., 2016a;",
"ref_id": "BIBREF38"
},
{
"start": 299,
"end": 318,
"text": "Zhou et al., 2016b;",
"ref_id": "BIBREF39"
},
{
"start": 319,
"end": 337,
"text": "Chen et al., 2017)",
"ref_id": "BIBREF3"
},
{
"start": 360,
"end": 379,
"text": "(Xu and Yang, 2017)",
"ref_id": "BIBREF34"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "Bilingual Word Embedding The most recent method for sharing document representation between languages is bilingual word embedding (Mikolov et al., 2013a; Faruqui and Dyer, 2014; Luong et al., 2015) . The goal is to learn a shared embedding space between words in two languages. With the shared embedding, we are able to project all documents into a shared space. The model trained in one language can, therefore, be used in the other language.",
"cite_spans": [
{
"start": 130,
"end": 153,
"text": "(Mikolov et al., 2013a;",
"ref_id": "BIBREF24"
},
{
"start": 154,
"end": 177,
"text": "Faruqui and Dyer, 2014;",
"ref_id": "BIBREF7"
},
{
"start": 178,
"end": 197,
"text": "Luong et al., 2015)",
"ref_id": "BIBREF20"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Related Work",
"sec_num": "2"
},
{
"text": "To see how well recent state-of-the-art methods for CLTC work in our task, we implemented a convolutional neural classifier. We compare this against a simple keyword-based method. ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Models",
"sec_num": "3"
},
{
"text": "The first step is to train a bilingual word embedding as a shared feature representation space between the two languages. We trained our bilingual word embedding for English and the incident language using the method proposed in XlingualEmb (Duong et al., 2016) . This method is a cross-lingual extension from word2vec model (Mikolov et al., 2013b) to bilingual text using two large monolingual corpora and a bilingual dictionary.",
"cite_spans": [
{
"start": 241,
"end": 261,
"text": "(Duong et al., 2016)",
"ref_id": "BIBREF5"
},
{
"start": 325,
"end": 348,
"text": "(Mikolov et al., 2013b)",
"ref_id": "BIBREF25"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Adversarial Convolutional Network",
"sec_num": "3.1"
},
{
"text": "Based on the shared representation, we then used a convolutional neural network (CNN) (Kim, 2014) to perform the classification. There are two main advantages of choosing a deep neural classifier over a shallow one. First, CNN outperforms shallow models like SVM or Logistic Regression in various text classification benchmark datasets (Kim, 2014; Lai et al., 2015; Johnson and Zhang, 2015; Xu and Yang, 2017) . Second, CNN takes dense word vector representations as input, allowing one to incorporate the state-of-the-art bilingual word embedding methods into the pipeline.",
"cite_spans": [
{
"start": 86,
"end": 97,
"text": "(Kim, 2014)",
"ref_id": "BIBREF14"
},
{
"start": 336,
"end": 347,
"text": "(Kim, 2014;",
"ref_id": "BIBREF14"
},
{
"start": 348,
"end": 365,
"text": "Lai et al., 2015;",
"ref_id": "BIBREF17"
},
{
"start": 366,
"end": 390,
"text": "Johnson and Zhang, 2015;",
"ref_id": "BIBREF12"
},
{
"start": 391,
"end": 409,
"text": "Xu and Yang, 2017)",
"ref_id": "BIBREF34"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Adversarial Convolutional Network",
"sec_num": "3.1"
},
{
"text": "The CNN model takes a sequence of word embeddings as input and applies 1-D convolutional operation on the input to extract semantic features. The features are then passed through a fully-connected layer before reaching the final soft-max layer. The model is trained in English using the ReliefWeb dataset (Littell et al., 2017, Sec 2. 3), which is annotated at sentence level with disaster relief needs and emergency situations. Thanks to the bilingual word embedding, which maps the words from the two languages to the same distributional semantic space, the model trained in English can be applied to documents in the target language.",
"cite_spans": [
{
"start": 305,
"end": 334,
"text": "(Littell et al., 2017, Sec 2.",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Adversarial Convolutional Network",
"sec_num": "3.1"
},
{
"text": "Ideally, if the bilingual word embedding captures the ground-truth mapping between two languages, a classifier learned from English training documents should generalize well on the target language. However, in practice, we can observe obvious domain gaps between documents in different languages when we represent them with bilingual word embeddings. In order to close the domain (language) gap between training and testing, we adapt our learned model in English to the target language with similar adversarial training techniques used in (Xu and Yang, 2017; Chen et al., 2017) . In order to alleviate the domain mismatch, we are essentially looking for a feature extractor that only captures the semantics of the event types but not the difference in language usage between English and the target language. In other words, we want the features captured by CNN to be informative for the event type classification and to be language-invariant at the same time. To achieve this goal, we include an auxiliary classifier that takes the features extracted by CNN and predicts the language that the input belongs to. During training, we update our parameter to simultaneously minimize the loss of the event type classification and maximize the loss of language classification through Gradient Reversal Layer (Ganin and Lempitsky, 2015) .",
"cite_spans": [
{
"start": 539,
"end": 558,
"text": "(Xu and Yang, 2017;",
"ref_id": "BIBREF34"
},
{
"start": 559,
"end": 577,
"text": "Chen et al., 2017)",
"ref_id": "BIBREF3"
},
{
"start": 1302,
"end": 1329,
"text": "(Ganin and Lempitsky, 2015)",
"ref_id": "BIBREF8"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Adversarial Convolutional Network",
"sec_num": "3.1"
},
{
"text": "As mentioned previously, a keyword-based model is a simple, quick, yet effective approach to perform text classification without much training data. In our case, we do this in two steps: (1) build a list of keywords for each SF type in English, then (2) translate the keywords into the target language automatically Instances Distribution of Situation Frames (%) Visualization terror violence regime food water med infra shelter evac utils search none Eng-Orig ( O ) 82,096 2.4 1.8 3.9 14.0 33.0 8.2 6.0 9.2 3.7 4.3 8.6 4.9 Eng-KW ( E ) 1,356,425 17.5 29.2 6.0 11.3 12.6 9.9 2.7 4.0 3.6 1.6 1.5 0.3 Tigrinya Tgt-Boot ( T ) 98 12.2 33.7 10.2 4.1 6.1 20.4 0.0 11.2 1.0 0.0 1.0 0.0 Tgt-Ann A1,012 6.7 14.3 17.6 2.0 0.8 6.6 2.2 3.3 2.4 0.9 2.7 40.6 Test Data 2,991* 3.2 6.2 0.7 2.5 0.9 3.2 0.4 0.3 0.8 0.3 0.8 80.7 Oromo Tgt-Boot T92 3.3 13.0 25.0 21.7 8.7 10.9 1.1 6.5 3.3 1.1 5.4 0.0 Tgt-Ann ( A ) 652 3.2 4.0 3.5 0.8 0.2 0.6 0.2 0.6 0.0 0.0 0.5 86.5 Test Data 2,810* 0.6 11.4 2.3 1.4 0.5 2.1 1.7 1.2 0.7 0.5 1.5 76.2 Table 1 : Statistics of the various sources of training data. Eng-Orig and Eng-KW refer to training data in English described in Littell et al. (2017, Sec 2.3) and from our English keyword model's output on ReliefWeb corpus, respectively, while Tgt-Boot and Tgt-Ann refer to training data in the target language obtained from bootstrapped keyword-spotting and from annotation, respectively. The \"none\" class signifies negative examples in the data. The last column shows a visualization of the SF types, excluding \"none\". Note: for Test Data, the instances refer to documents, while for the rest, instances refer to sentences.",
"cite_spans": [
{
"start": 1145,
"end": 1175,
"text": "Littell et al. (2017, Sec 2.3)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 1016,
"end": 1023,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Keyword-based Model",
"sec_num": "3.2"
},
{
"text": "using a bilingual dictionary. We also asked native speakers of the target language to refine the translation, especially for domain-specific keywords which are not adequately captured by the bilingual dictionary. 3 Building English keywords is again a two-step process. First, we use the ReliefWeb dataset to generate a list of 100 candidate keywords for each class by taking the top-100 words with the highest TF.IDF scores. Similar to the keyword generation method described by Littell et al. (2017) , we manually refined the keyword list by pruning based on world knowledge. For each candidate keyword, we added 30 most similar words using the English word2vec model trained on the Google News corpus 4 . We retained only the words that have cosine-similarity greater than 70%. For each candidate keyword in this extended list, we computed a label affinity score with each SF class label (e.g., water, evacuation) using cosinesimilarity between their word2vec embeddings. Candidate keywords with similarity above a certain threshold th 1 were retained and used as keywords for the corresponding classes 5 .",
"cite_spans": [
{
"start": 480,
"end": 501,
"text": "Littell et al. (2017)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Keyword-based Model",
"sec_num": "3.2"
},
{
"text": "4 Method: Training Data Augmentation Chen et al. (2017) assumed the auxiliary language contains a large amount of labeled data for the task, about 700k Yelp reviews. For our case, the original training data, which was built semi-automatically by Littell et al. (2017, Sec 2. 3), contains only about 80k sentences (Table 1, first row). To improve the performance of the neural model, therefore, we propose to utilize the keyword-based system to automatically augment the original training data. We also explore using additional training data obtained via manual annotation for comparison. Figure 2 is a summary of the various training data sources we compare in this paper: the original training data ( O ), keyword-spotting in the auxiliary language ( E ), keyword-spotting with bootstrapping in the target language ( T ), and annotated data in the target language ( A ). The additional training data from keyword-spotting in English ( E ) can be directly obtained by using the keyword list in English that we used for the keyword model (Section 3.2) to label a larger ReliefWeb corpus. We describe the other two ways ( T and A ) to obtain additional training data in the following sections. Figure 2 : A summary of the various training data sources that we compare in this paper ( O , E , T , A ).",
"cite_spans": [
{
"start": 37,
"end": 55,
"text": "Chen et al. (2017)",
"ref_id": "BIBREF3"
},
{
"start": 246,
"end": 274,
"text": "Littell et al. (2017, Sec 2.",
"ref_id": null
}
],
"ref_spans": [
{
"start": 588,
"end": 596,
"text": "Figure 2",
"ref_id": null
},
{
"start": 1192,
"end": 1200,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Keyword-based Model",
"sec_num": "3.2"
},
{
"text": "We note that using simple keyword matching can result in low coverage due to missing keywords in the bilingual dictionary or word-variations in the target language. To overcome this, we developed an iterative bootstrapping algorithm that takes into account the newly labeled documents from keywordspotting and generates additional language-specific keywords in a two-step process ( T in Figure 2 ).",
"cite_spans": [],
"ref_spans": [
{
"start": 387,
"end": 395,
"text": "Figure 2",
"ref_id": null
}
],
"eq_spans": [],
"section": "Bootstrapping Language-specific Keywords",
"sec_num": "4.1"
},
{
"text": "Clustering: In the first step, we collected labeled documents from each class, and generated clusters for them (D = {D c 1 ,..,D cm }, where D cp is the cluster of the class c p ). For each cluster D cp and nonkeyword w i in it, we then computed the label affinity score S p (w i ), defined as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bootstrapping Language-specific Keywords",
"sec_num": "4.1"
},
{
"text": "S p (w i ) = tfidf (w i ) + w j \u2208Wp cos(w i , w j ) |W p |",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bootstrapping Language-specific Keywords",
"sec_num": "4.1"
},
{
"text": "where W p was the set of keywords present in D cp . We then appended the words which exceed a certain threshold th 2 to the keywords list of class c p .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bootstrapping Language-specific Keywords",
"sec_num": "4.1"
},
{
"text": "The rationale for this step is that the keywords that were missed in the initial keyword list (due to an incomplete bilingual dictionary, the keywords being language-specific, or incident-specific) may appear more frequently in the document cluster, and the second term in S p (w i ) will capture this.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bootstrapping Language-specific Keywords",
"sec_num": "4.1"
},
{
"text": "Labeling: With the updated set of keywords for each class, we relabeled the documents to obtain a new set of labeled documents and again executed the clustering step to get more keywords. We can repeat this two-step process n times until we have the desired coverage or until this process no longer gives useful new keywords. In our experiments, we found that n = 10 generally gives good coverage. To generate the training data, we ran this procedure on the test set and took the top-100 most confident predictions. 6",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bootstrapping Language-specific Keywords",
"sec_num": "4.1"
},
{
"text": "When we have the budget and annotators to do so, we can also annotate documents in the target language with class labels of interest. Given the limited budget and the rarity of documents with SFs (14-18% in our dataset), however, one question remains: how to best pick the documents to be annotated to maximize the gain from the additional training data? Seeing that the number of documents with at least one positive class is much less common compared to the number of documents without any positive class (see Table 1 ), simply taking a randomly sampled document from the unlabeled documents will likely give a document with no class, which is less useful compared to document with at least one positive class. Thus, we opt for a simpler method of asking annotators to make a binary decision on a ) . In addition to the native speakers, we also had non-speaker linguists annotate another separate (359) sentences in Tigrinya, assisted by grapheme-tophoneme conversion, morphological glossing, and machine translation (MT) output. 7 This results in 1,012 sentences annotated in Tigrinya ( A in Figure 2 and Table 1 ). Overall, we spent less than 12 manhours with native speakers of the target language to do the keyword translation and the annotation, with the larger amount of time spent on keyword translation.",
"cite_spans": [
{
"start": 1032,
"end": 1033,
"text": "7",
"ref_id": null
}
],
"ref_spans": [
{
"start": 512,
"end": 519,
"text": "Table 1",
"ref_id": null
},
{
"start": 799,
"end": 800,
"text": ")",
"ref_id": null
},
{
"start": 1095,
"end": 1103,
"text": "Figure 2",
"ref_id": null
},
{
"start": 1108,
"end": 1115,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Annotation in Target Language",
"sec_num": "4.2"
},
{
"text": "For the purpose of the experiments and analysis, we used the dataset from the LoReHLT 2017 8 shared task, which consists of news articles in two Ethiopian languages: Tigrinya and Oromo. 9 The statistics of the dataset is shown in Table 2 . The available resources that we used for this experiment consist of:",
"cite_spans": [],
"ref_spans": [
{
"start": 230,
"end": 237,
"text": "Table 2",
"ref_id": "TABREF1"
}
],
"eq_spans": [],
"section": "Dataset",
"sec_num": "5.1"
},
{
"text": "1. Monolingual articles in Tigrinya and Oromo in various genres (news, discussion, social media). 2. Bilingual word dictionary (English-Tigrinya and English-Oromo). 3. A few hours of interaction with volunteers who are native speakers of Tigrinya or Oromo. 4. English documents about disaster recovery from ReliefWeb 10 and CrisisNet 11 annotated semiautomatically with disaster type and theme (Littell et al., 2017, Sec 2. 3). 12",
"cite_spans": [
{
"start": 394,
"end": 423,
"text": "(Littell et al., 2017, Sec 2.",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Dataset",
"sec_num": "5.1"
},
{
"text": "We summarize more details about the experiment setup.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Setup",
"sec_num": "5.2"
},
{
"text": "Sentence-level prediction: Although the model we used can be applied to produce document-level predictions directly, working at sentence-level provided more training data for the model and made it easier to train. Doing so also enabled some insight on which sentences contain the information about the document-level predictions.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Setup",
"sec_num": "5.2"
},
{
"text": "We then aggregate sentence-level predictions to a document-level prediction by assigning to each SF type the maximum confidence score of that type across all sentences in the document. Based on these scores, we calculate the mean confidence score \u00b5 cp of each SF type c p . We then took the top-k (k = 3 in our experiments) SF types as our document-level prediction and filter out the predicted SF types which have confidence scores below \u00b5 cp . In the absence 7 The MT model was also trained in a low-resource setting, with BLEU score around 12 for Tigrinya. 8 https://www.nist.gov/itl/iad/mig/lorehlt-evaluations#lorehlt17 9 For Oromo, the original dataset includes one annotator (out of 4) which annotated most of the documents with a single class. We did not consider this outlier annotator in our experiments.",
"cite_spans": [
{
"start": 461,
"end": 462,
"text": "7",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Document-level aggregation:",
"sec_num": null
},
{
"text": "10 https://reliefweb. Table 3 : Performance of the neural model (NN) with various sources of training data, averaged over 3 runs. O is the original training data, E is the additional training data in English from keyword-spotting, A is the additional training data in target language from annotation, and T is the additional training data in target language from bootstrapping. The result on keyword model (KW) is also shown for comparison. of labeled data in the target language to be used as development set, this is one method that we can use without much tuning. In later sections we show how different document-level aggregation procedures may affect the performance.",
"cite_spans": [],
"ref_spans": [
{
"start": 22,
"end": 29,
"text": "Table 3",
"ref_id": null
}
],
"eq_spans": [],
"section": "Document-level aggregation:",
"sec_num": null
},
{
"text": "We followed the metric defined in LoReHLT 2017 guidelines 13 , which is occurrence-weighted scores, defined as follows:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Metric:",
"sec_num": null
},
{
"text": "P occ = \u03b1 tp \u03b1 tp + \u03b1 f p , R occ = \u03b1 tp \u03b1 tp + \u03b1 f n , F occ = 2 \u2022 P occ \u2022 R occ P occ + R occ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Metric:",
"sec_num": null
},
{
"text": "where \u03b1 tp is the number of true positives, weighted with the number of annotators that agree with it. \u03b1 f p and \u03b1 f n are similarly defined for false positives and false negatives. False negatives always have weight 1. For brevity, we drop the occ subscript when referring to these scores.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Metric:",
"sec_num": null
},
{
"text": "In our neural CNN model, we used filter lengths of {3, 4, 5} and 300 filters for each length. We also applied dropout on the extracted feature by CNN at a rate of 0.2. The model was optimized in mini-batches of size 128 by Adam (Kingma and Ba, 2014) optimizer at the learning rate of 0.001. The optimization was terminated after 30 epochs or a convergence criteria was satisfied on the held-out training data. Table 3 shows the results in Tigrinya and Oromo with the varying training data described in Section 4. First, the keyword model (KW) outperforms the neural model with only original training data (NN O ). This suggests that in a low-resource setting, a keyword-based model can be used as a way to quickly get a working classifier, without the hassle of training a machine learning classifier or getting a large additional training data.",
"cite_spans": [],
"ref_spans": [
{
"start": 410,
"end": 417,
"text": "Table 3",
"ref_id": null
}
],
"eq_spans": [],
"section": "Model hyperparameters:",
"sec_num": null
},
{
"text": "Next, the additional training data did help to significantly improve the performance of the baseline neural model in both languages. The large additional English data (+ E ) provided a large boost both in Tigrinya (+4.97) and Oromo (+4.27). Interestingly, with only about 900 examples in the target language, the additional annotation in the target language (+ A ) gave more improvements in F 1 -score in both Tigrinya (5.3 points more) and Oromo (3.27 points more), compared to the large additional training data in English. Recall that the annotation was done on a subset of the neural model's output (trained on O ). This suggests that when an annotation budget is available, using that to verify the output of a model is a good investment.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "5.3"
},
{
"text": "It is interesting to note that each source of additional training data improved a different aspect of the model. The additional training data in English ( O + E ) seemed to improve recall more, while the additional training data in target language from annotation seemed to improve precision more ( O + A ), and combining both ( O + E + A ) provided the best of both worlds, especially in Tigrinya.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "5.3"
},
{
"text": "When we included the training data in target language from the keyword model with bootstrapping together with all other training data ( O + E + T + A ), it further improved the result in Tigrinya, but not in Oromo, although when it was used alone ( O + T ) it still gave some improvements over the original training data ( O ). This could be due to the lower quality of the keyword system in Oromo. Recall that it was created by taking the top-100 most confident predictions of the keyword model. This set of predictions gave 75.9% precision in Tigrinya and 47.1% precision in Oromo. This lower quality of Oromo bootstrapping method can also be seen in the diverging SF Type distribution, as can be seen in Table 1 .",
"cite_spans": [],
"ref_spans": [
{
"start": 707,
"end": 714,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Results",
"sec_num": "5.3"
},
{
"text": "The best overall improvement was more pronounced in Oromo (+7.54 points in F 1 for O + E + A ) than in Tigrinya (+15.19 points in F 1 for O + E + T + A ). This could be related to the fact that the baseline score was much lower in Oromo than in Tigrinya to begin with.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "5.3"
},
{
"text": "For completeness, we also compare the results of the keyword model (KW) in target language without and with bootstrapping in the first two rows of Table 3 . As anticipated, the bootstrapping process increased recall significantly, almost doubling the recall in Oromo. Although the precision was slightly reduced, it still resulted in an overall improvement in F 1 -score for both languages.",
"cite_spans": [],
"ref_spans": [
{
"start": 147,
"end": 154,
"text": "Table 3",
"ref_id": null
}
],
"eq_spans": [],
"section": "Results",
"sec_num": "5.3"
},
{
"text": "In summary, there are four main observations:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "5.3"
},
{
"text": "1. The Neural model with original training data (NN O ) gave lower performance compared to the keyword (KW) model, although the keyword model was a much simpler system. 2. With large additional training data in English (+ E ), we obtained large improvements both in Tigrinya (+4.97) and Oromo (+4.27). 3. With only small additional annotations in target language (+ A ) we obtained even better performance compared to using large English training data. 4. Getting additional training data in the target language through the keyword model can help if the quality of the keyword model is good enough.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "5.3"
},
{
"text": "We hypothesize that the focused improvements on recall when using additional training data in English ( E ) could be attributed to the large number of training data in E (over 1 million sentences). This causes the model to be able to learn more unique contexts for SF types, thereby increasing recall. In contrast, the annotated dataset in the target language ( A ), being made from the output of the NN model on a separate dataset, will mostly help the model to do better recognition of false positives, thereby improving precision.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Discussion",
"sec_num": "6"
},
{
"text": "Another reason for increased precision could be the similar distribution of SF types in the annotated dataset ( A ) to the true distribution, compared to the distribution of SF types in the additional training data in English ( E ). We can see this from the SF type distribution shown in Table 1 ",
"cite_spans": [],
"ref_spans": [
{
"start": 288,
"end": 295,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Discussion",
"sec_num": "6"
},
{
"text": "To analyze the differences between the various source of additional training data, we plot the cooccurrence of classes on the Tigrinya dataset in Figure 3 . Each row describes the percentage of a particular SF type co-occurring with other SF types in the same document (recall that each document might be labeled with multiple SF types), including none, in which the SF type is the single label for that document. The numbers in a row sums to unity.",
"cite_spans": [],
"ref_spans": [
{
"start": 146,
"end": 154,
"text": "Figure 3",
"ref_id": null
}
],
"eq_spans": [],
"section": "by comparing the visualization at the last column.",
"sec_num": null
},
{
"text": "As can be seen, predictions of the NN system trained on the additional English data ( Figure 3b ) and target language data (Figure 3c ) have different co-occurrence patterns. The additional English data apparently allowed the NN model to find a strong correlation between the crime violence class and the terrorism class, which is consistent with our intuition. On the other hand, the NN model fine-tuned on the Tigrinya annotations apparently found the crime violence and terrorism classes tend to occur alone (last column of Figure 3c ).",
"cite_spans": [],
"ref_spans": [
{
"start": 86,
"end": 95,
"text": "Figure 3b",
"ref_id": null
},
{
"start": 123,
"end": 133,
"text": "(Figure 3c",
"ref_id": null
},
{
"start": 527,
"end": 536,
"text": "Figure 3c",
"ref_id": null
}
],
"eq_spans": [],
"section": "by comparing the visualization at the last column.",
"sec_num": null
},
{
"text": "There is also an interesting phenomenon that arises from the correlation between keywords and class labels. We found that the SF type terrorism is associated with the keyword \" \" which means 1 0 23 0 1 0 0 0 0 0 24 52 0 0 24 1.1 0 0 0 3.2 0 0 24 47 0 0 33 0 0 0 0 0 0 0 56 11 0 0 50 0 0 0 0 17 0 17 17 0 3.6 0 31 Table 4 : Impact of various aggregation strategy to the performance. \"youth\" or \"juvenile\", as in the example sentence (English translation, the word recognized as keyword in the original language underlined) \"According to the information, the Eritrean girls killed in the incident hide near the tyre of a car and was hot by the Sudanese soldiers.\" Examining the various examples in the dataset, we found that the violence inherent in terrorism is often depicted with youths as the victims. This could be related to the tendency of news outlets to focus on the suffering experienced by young people to make more emotional appeal.",
"cite_spans": [],
"ref_spans": [
{
"start": 191,
"end": 362,
"text": "1 0 23 0 1 0 0 0 0 0 24 52 0 0 24 1.1 0 0 0 3.2 0 0 24 47 0 0 33 0 0 0 0 0 0 0 56 11 0 0 50 0 0 0 0 17 0 17 17 0 3.6 0 31",
"ref_id": "TABREF1"
},
{
"start": 363,
"end": 370,
"text": "Table 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "by comparing the visualization at the last column.",
"sec_num": null
},
{
"text": "In Section 5.2 we showed one heuristic to do document-level aggregation. One might wonder whether one can do better in the classification performance by using another aggregation strategy, such as filtering out classes with confidence scores under certain threshold, or using different k when taking top-k classes. In this section, we explore the impact of different aggregation strategies on the performance under different conditions. Assuming the more realistic case of having no development set to prefer one strategy over another, we can use the top-k strategy like we did in our experiments, or set a fixed threshold on the confidence score based on the average confidence score of each type across all documents in the test set. We also show the result when we set the threshold based on the reference annotation, to show how well the result can be in the case that we have a development set to find the best threshold. The result is shown in Table 4 .",
"cite_spans": [],
"ref_spans": [
{
"start": 950,
"end": 957,
"text": "Table 4",
"ref_id": null
}
],
"eq_spans": [],
"section": "Impact of Document-level Aggregation Strategy",
"sec_num": "6.1"
},
{
"text": "The significant gap of performance between the one tuned on the reference annotation and the rest suggests that if additional training data can be obtained in the target language, independently from the model's predictions, we should allocate a portion of them to be used for validation, since there are still large room for improvements just from tuning the thresholds (about 4 points in Tigrinya and over 17 points in Oromo). Note that in our experiments, since the annotation was done on the output of our neural model, we cannot use them as validation set, as it is biased towards the output of our model. So there is a trade-off between ease of annotation process and the amount of data that can be used as validation set.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Impact of Document-level Aggregation Strategy",
"sec_num": "6.1"
},
{
"text": "In this paper we tackled the problem of event type detection and classification in low-resource setting. We found that a neural model with adversarial training compared about the same as a simple keywordbased model using a small bilingual dictionary. Given that the problem lies with the limited amount of training data available, we proposed and compared methods to increase the amount of training data: to get significant gain in performance one can either use a very large additional semi-automatically labeled dataset in a resource-rich language, or annotate a small amount of documents in the target resource-poor language. We also showed how investing in a development set for tuning might also be a good strategy when there is a limited budget for annotation, after allocating some of them for keyword translation and additional training data.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion and Future Work",
"sec_num": "7"
},
{
"text": "One possible direction for future work is to address the mismatch of distribution of the classes between the additional training data and the actual test data as we see in Oromo. One way to mitigate the mismatch would be to make the classifier itself less prone to overfitting. In Section 6.1 we have shown how the document-level aggregation strategy may significantly affect the final result. Thus, exploring ways to effectively select the thresholds might be worthwhile. We could also incorporate the correlation between classes as evident from Figure 3 , which has proven useful in multi-label classification (Zhang and Zhang, 2010) .",
"cite_spans": [
{
"start": 612,
"end": 635,
"text": "(Zhang and Zhang, 2010)",
"ref_id": "BIBREF36"
}
],
"ref_spans": [
{
"start": 547,
"end": 555,
"text": "Figure 3",
"ref_id": null
}
],
"eq_spans": [],
"section": "Conclusion and Future Work",
"sec_num": "7"
},
{
"text": "We showed the native speakers translation pairs obtained through the bilingual dictionary, and asked them to verify the translation as acceptable, or to supply a better translation.4 https://code.google.com/archive/p/word2vec/ 5 Threshold th1 = 0.9 was determined by a grid search on a held-out English dataset.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "As explained below, we used sentences as our training data, by taking the sentences which contain the keywords found.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "https://goo.gl/FwRCwj",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "We acknowledge NIST for coordinating the SF type evaluation and providing the test data. NIST serves to coordinate the evaluations in order to support research and to help advance the state-of-the-art. NIST evaluations are not viewed as a competition, and such results reported by NIST are not to be construed, or represented, as endorsements of any participants system, or as official findings on the part of NIST or the U.S. Government. We thank Lori Levin for the inputs for an earlier version of this paper. This project was sponsored by the Defense Advanced Research Projects Agency (DARPA) Information Innovation Office (I2O), program: Low Resource Languages for Emergent Incidents (LORELEI), issued by DARPA/I2O under Contract No. HR0011-15-C-0114.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgments",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Learning from multiple partially observed views-an application to multilingual text categorization",
"authors": [
{
"first": "Massih",
"middle": [],
"last": "Amini",
"suffix": ""
},
{
"first": "Nicolas",
"middle": [],
"last": "Usunier",
"suffix": ""
},
{
"first": "Cyril",
"middle": [],
"last": "Goutte",
"suffix": ""
}
],
"year": 2009,
"venue": "Advances in Neural Information Processing Systems (NIPS)",
"volume": "",
"issue": "",
"pages": "28--36",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Massih Amini, Nicolas Usunier, and Cyril Goutte. 2009. Learning from multiple partially observed views-an application to multilingual text categorization. In Advances in Neural Information Processing Systems (NIPS), pages 28-36, Vancouver, British Columbia, Canada, December.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Using resource-rich languages to improve morphological analysis of under-resourced languages",
"authors": [
{
"first": "Peter",
"middle": [],
"last": "Baumann",
"suffix": ""
},
{
"first": "Janet",
"middle": [],
"last": "Pierrehumbert",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the Ninth International Conference on Language Resources and Evaluation (LREC)",
"volume": "",
"issue": "",
"pages": "3355--3359",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Peter Baumann and Janet Pierrehumbert. 2014. Using resource-rich languages to improve morphological analysis of under-resourced languages. In Proceedings of the Ninth International Conference on Language Resources and Evaluation (LREC), pages 3355-3359, Reykjavik, Iceland, May.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Cross-lingual text categorization",
"authors": [
{
"first": "Nuria",
"middle": [],
"last": "Bel",
"suffix": ""
},
{
"first": "H A",
"middle": [],
"last": "Cornelis",
"suffix": ""
},
{
"first": "Marta",
"middle": [],
"last": "Koster",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Villegas",
"suffix": ""
}
],
"year": 2003,
"venue": "The 7th European Conference on Research and Advanced Technology for Digital Libraries",
"volume": "2769",
"issue": "",
"pages": "126--139",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nuria Bel, Cornelis H A Koster, and Marta Villegas. 2003. Cross-lingual text categorization. The 7th European Conference on Research and Advanced Technology for Digital Libraries, 2769:126-139.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Adversarial deep averaging networks for cross-lingual sentiment classification",
"authors": [
{
"first": "Xilun",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "Yu",
"middle": [],
"last": "Sun",
"suffix": ""
},
{
"first": "Ben",
"middle": [],
"last": "Athiwaratkun",
"suffix": ""
},
{
"first": "Claire",
"middle": [],
"last": "Cardie",
"suffix": ""
},
{
"first": "Kilian",
"middle": [],
"last": "Weinberger",
"suffix": ""
}
],
"year": 2017,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xilun Chen, Yu Sun, Ben Athiwaratkun, Claire Cardie, and Kilian Weinberger. 2017. Adversarial deep averaging networks for cross-lingual sentiment classification. ArXiv e-prints.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Knowledge transfer across multilingual corpora via latent topics",
"authors": [
{
"first": "Jie",
"middle": [],
"last": "Wim De Smet",
"suffix": ""
},
{
"first": "Marie-Francine",
"middle": [],
"last": "Tang",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Moens",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of the Pacific-Asia Conference on Knowledge Discovery and Data Mining (PAKDD)",
"volume": "",
"issue": "",
"pages": "549--560",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Wim De Smet, Jie Tang, and Marie-Francine Moens. 2011. Knowledge transfer across multilingual corpora via latent topics. In Proceedings of the Pacific-Asia Conference on Knowledge Discovery and Data Mining (PAKDD), pages 549-560, Shenzhen, China, May. Springer.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "Learning crosslingual word embeddings without bilingual corpora",
"authors": [
{
"first": "Long",
"middle": [],
"last": "Duong",
"suffix": ""
},
{
"first": "Hiroshi",
"middle": [],
"last": "Kanayama",
"suffix": ""
},
{
"first": "Tengfei",
"middle": [],
"last": "Ma",
"suffix": ""
},
{
"first": "Steven",
"middle": [],
"last": "Bird",
"suffix": ""
},
{
"first": "Trevor",
"middle": [],
"last": "Cohn",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "1285--1295",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Long Duong, Hiroshi Kanayama, Tengfei Ma, Steven Bird, and Trevor Cohn. 2016. Learning crosslingual word embeddings without bilingual corpora. In Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 1285-1295, Austin, Texas, USA, November. Association for Computa- tional Linguistics (ACL).",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Weakly supervised tweet stance classification by relational bootstrapping",
"authors": [
{
"first": "Javid",
"middle": [],
"last": "Ebrahimi",
"suffix": ""
},
{
"first": "Dejing",
"middle": [],
"last": "Dou",
"suffix": ""
},
{
"first": "Daniel",
"middle": [],
"last": "Lowd",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "1012--1017",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Javid Ebrahimi, Dejing Dou, and Daniel Lowd. 2016. Weakly supervised tweet stance classification by relational bootstrapping. In Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 1012-1017, Texas, USA, November. Association for Computational Linguistics (ACL).",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Improving vector space word representations using multilingual correlation",
"authors": [
{
"first": "Manaal",
"middle": [],
"last": "Faruqui",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Dyer",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the 14th Conference of the European Chapter of the Association for Computational Linguistics (EACL)",
"volume": "",
"issue": "",
"pages": "462--471",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Manaal Faruqui and Chris Dyer. 2014. Improving vector space word representations using multilingual corre- lation. In Proceedings of the 14th Conference of the European Chapter of the Association for Computational Linguistics (EACL), pages 462-471, Gothenburg, Sweden, April. Association for Computational Linguistics (ACL).",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Unsupervised domain adaptation by backpropagation",
"authors": [
{
"first": "Yaroslav",
"middle": [],
"last": "Ganin",
"suffix": ""
},
{
"first": "Victor",
"middle": [],
"last": "Lempitsky",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of the 32nd International Conference on International Conference on Machine Learning (ICML)",
"volume": "",
"issue": "",
"pages": "1180--1189",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yaroslav Ganin and Victor Lempitsky. 2015. Unsupervised domain adaptation by backpropagation. In Proceed- ings of the 32nd International Conference on International Conference on Machine Learning (ICML), pages 1180-1189, Lille, France, July.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Cross language text classification via subspace co-regularized multi-view learning",
"authors": [
{
"first": "Yuhong",
"middle": [],
"last": "Guo",
"suffix": ""
},
{
"first": "Min",
"middle": [],
"last": "Xiao",
"suffix": ""
}
],
"year": 2012,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:1206.6481"
]
},
"num": null,
"urls": [],
"raw_text": "Yuhong Guo and Min Xiao. 2012a. Cross language text classification via subspace co-regularized multi-view learning. arXiv preprint arXiv:1206.6481.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Transductive representation learning for cross-lingual text classification",
"authors": [
{
"first": "Yuhong",
"middle": [],
"last": "Guo",
"suffix": ""
},
{
"first": "Min",
"middle": [],
"last": "Xiao",
"suffix": ""
}
],
"year": 2012,
"venue": "2012 IEEE 12th International Conference on Data Mining (ICDM)",
"volume": "",
"issue": "",
"pages": "888--893",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yuhong Guo and Min Xiao. 2012b. Transductive representation learning for cross-lingual text classification. In 2012 IEEE 12th International Conference on Data Mining (ICDM), pages 888-893. Institute of Electrical and Electronics Engineers (IEEE).",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Improving bilingual projections via sparse covariance matrices",
"authors": [
{
"first": "Jagadeesh",
"middle": [],
"last": "Jagarlamudi",
"suffix": ""
},
{
"first": "Raghavendra",
"middle": [],
"last": "Udupa",
"suffix": ""
},
{
"first": "Hal",
"middle": [],
"last": "Daum\u00e9",
"suffix": ""
},
{
"first": "Iii",
"middle": [],
"last": "",
"suffix": ""
},
{
"first": "Abhijit",
"middle": [],
"last": "Bhole",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of the Conference on Empirical Methods in Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "930--940",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jagadeesh Jagarlamudi, Raghavendra Udupa, Hal Daum\u00e9 III, and Abhijit Bhole. 2011. Improving bilingual projections via sparse covariance matrices. In Proceedings of the Conference on Empirical Methods in Natu- ral Language Processing (EMNLP), pages 930-940, Edinburgh, Scotland, UK. Association for Computational Linguistics (ACL).",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "Semi-supervised convolutional neural networks for text categorization via region embedding",
"authors": [
{
"first": "Rie",
"middle": [],
"last": "Johnson",
"suffix": ""
},
{
"first": "Tong",
"middle": [],
"last": "Zhang",
"suffix": ""
}
],
"year": 2015,
"venue": "Advances in Neural Information Processing Systems (NIPS)",
"volume": "",
"issue": "",
"pages": "919--927",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rie Johnson and Tong Zhang. 2015. Semi-supervised convolutional neural networks for text categorization via region embedding. In Advances in Neural Information Processing Systems (NIPS), pages 919-927, Montr\u00e9al, Canada, December.",
"links": null
},
"BIBREF13": {
"ref_id": "b13",
"title": "Using topic modeling and similarity thresholds to detect events",
"authors": [
{
"first": "Nathan",
"middle": [],
"last": "Keane",
"suffix": ""
},
{
"first": "Connie",
"middle": [],
"last": "Yee",
"suffix": ""
},
{
"first": "Liang",
"middle": [],
"last": "Zhou",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of the The 3rd Workshop on EVENTS: Definition, Detection, Coreference, and Representation",
"volume": "",
"issue": "",
"pages": "34--42",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Nathan Keane, Connie Yee, and Liang Zhou. 2015. Using topic modeling and similarity thresholds to detect events. In Proceedings of the The 3rd Workshop on EVENTS: Definition, Detection, Coreference, and Repre- sentation, pages 34-42, Denver, Colorado, USA, June. Association for Computational Linguistics (ACL).",
"links": null
},
"BIBREF14": {
"ref_id": "b14",
"title": "Convolutional Neural Networks for Sentence Classification",
"authors": [
{
"first": "Yoon",
"middle": [],
"last": "Kim",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "1746--1751",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Yoon Kim. 2014. Convolutional Neural Networks for Sentence Classification. In Proceedings of the 2014 Con- ference on Empirical Methods in Natural Language Processing (EMNLP), pages 1746-1751, Stroudsburg, PA, USA. Association for Computational Linguistics (ACL).",
"links": null
},
"BIBREF15": {
"ref_id": "b15",
"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": {
"arXiv": [
"arXiv:1412.6980"
]
},
"num": null,
"urls": [],
"raw_text": "Diederik P. Kingma and Jimmy Ba. 2014. Adam: A Method for Stochastic Optimization. arXiv preprint arXiv:1412.6980.",
"links": null
},
"BIBREF16": {
"ref_id": "b16",
"title": "Extending a multilingual lexical resource by bootstrapping named entity classification using wikipedia's category system",
"authors": [
{
"first": "Johannes",
"middle": [],
"last": "Knopp",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of the Fifth International Workshop On Cross Lingual Information Access",
"volume": "",
"issue": "",
"pages": "35--43",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Johannes Knopp. 2011. Extending a multilingual lexical resource by bootstrapping named entity classification using wikipedia's category system. In Proceedings of the Fifth International Workshop On Cross Lingual Information Access, pages 35-43. Asian Federation of Natural Language Processing (AFNLP).",
"links": null
},
"BIBREF17": {
"ref_id": "b17",
"title": "Recurrent convolutional neural networks for text classification",
"authors": [
{
"first": "Siwei",
"middle": [],
"last": "Lai",
"suffix": ""
},
{
"first": "Liheng",
"middle": [],
"last": "Xu",
"suffix": ""
},
{
"first": "Kang",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "Jun",
"middle": [],
"last": "Zhao",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of the Twenty-Ninth AAAI Conference on Artificial Intelligence (AAAI)",
"volume": "",
"issue": "",
"pages": "2267--2273",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Siwei Lai, Liheng Xu, Kang Liu, and Jun Zhao. 2015. Recurrent convolutional neural networks for text classifica- tion. In Proceedings of the Twenty-Ninth AAAI Conference on Artificial Intelligence (AAAI), pages 2267-2273, Austin, Texas, USA, January. Association for the Advancement of Artificial Intelligence (AAAI).",
"links": null
},
"BIBREF18": {
"ref_id": "b18",
"title": "Yiming Yang, Teruko Mitamura, and Eduard Hovy. 2017. The ARIEL-CMU situation frame detection pipeline for LoReHLT16: a model translation approach",
"authors": [
{
"first": "Patrick",
"middle": [],
"last": "Littell",
"suffix": ""
},
{
"first": "Tian",
"middle": [],
"last": "Tian",
"suffix": ""
},
{
"first": "Ruochen",
"middle": [],
"last": "Xu",
"suffix": ""
},
{
"first": "Zaid",
"middle": [],
"last": "Sheikh",
"suffix": ""
},
{
"first": "David",
"middle": [],
"last": "Mortensen",
"suffix": ""
},
{
"first": "Lori",
"middle": [],
"last": "Levin",
"suffix": ""
},
{
"first": "Francis",
"middle": [],
"last": "Tyers",
"suffix": ""
},
{
"first": "Hiroaki",
"middle": [],
"last": "Hayashi",
"suffix": ""
},
{
"first": "Graham",
"middle": [],
"last": "Horwood",
"suffix": ""
},
{
"first": "Steve",
"middle": [],
"last": "Sloto",
"suffix": ""
},
{
"first": "Emily",
"middle": [],
"last": "Tagtow",
"suffix": ""
},
{
"first": "Alan",
"middle": [],
"last": "Black",
"suffix": ""
}
],
"year": null,
"venue": "Machine Translation",
"volume": "",
"issue": "",
"pages": "1--22",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Patrick Littell, Tian Tian, Ruochen Xu, Zaid Sheikh, David Mortensen, Lori Levin, Francis Tyers, Hiroaki Hayashi, Graham Horwood, Steve Sloto, Emily Tagtow, Alan Black, Yiming Yang, Teruko Mitamura, and Eduard Hovy. 2017. The ARIEL-CMU situation frame detection pipeline for LoReHLT16: a model translation approach. Machine Translation, pages 1-22, October.",
"links": null
},
"BIBREF19": {
"ref_id": "b19",
"title": "Automatic cross-language information retrieval using latent semantic indexing",
"authors": [
{
"first": "Susan",
"middle": [
"T"
],
"last": "Michael L Littman",
"suffix": ""
},
{
"first": "Thomas",
"middle": [
"K"
],
"last": "Dumais",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Landauer",
"suffix": ""
}
],
"year": 1998,
"venue": "Cross-Language Information Retrieval",
"volume": "",
"issue": "",
"pages": "51--62",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Michael L Littman, Susan T Dumais, and Thomas K Landauer. 1998. Automatic cross-language information retrieval using latent semantic indexing. In Cross-Language Information Retrieval, pages 51-62. Springer.",
"links": null
},
"BIBREF20": {
"ref_id": "b20",
"title": "Bilingual word representations with monolingual quality in mind",
"authors": [
{
"first": "Thang",
"middle": [],
"last": "Luong",
"suffix": ""
},
{
"first": "Hieu",
"middle": [],
"last": "Pham",
"suffix": ""
},
{
"first": "Christopher D",
"middle": [],
"last": "Manning",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of the 1st Workshop on Vector Space Modeling for Natural Language Processing",
"volume": "",
"issue": "",
"pages": "151--159",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Thang Luong, Hieu Pham, and Christopher D Manning. 2015. Bilingual word representations with monolin- gual quality in mind. In Proceedings of the 1st Workshop on Vector Space Modeling for Natural Language Processing, pages 151-159, Berlin, Germany, August. Association of Computational Linguistics (ACL).",
"links": null
},
"BIBREF21": {
"ref_id": "b21",
"title": "Hourly traffic prediction of news stories",
"authors": [
{
"first": "Lu\u00eds",
"middle": [],
"last": "Marujo",
"suffix": ""
},
{
"first": "Miguel",
"middle": [],
"last": "Bugalho",
"suffix": ""
},
{
"first": "Jo\u00e3o",
"middle": [],
"last": "Paulo Da",
"suffix": ""
},
{
"first": "Silva",
"middle": [],
"last": "Neto",
"suffix": ""
},
{
"first": "Anatole",
"middle": [],
"last": "Gershman",
"suffix": ""
},
{
"first": "Jaime",
"middle": [],
"last": "Carbonell",
"suffix": ""
}
],
"year": 2013,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:1306.4608"
]
},
"num": null,
"urls": [],
"raw_text": "Lu\u00eds Marujo, Miguel Bugalho, Jo\u00e3o Paulo da Silva Neto, Anatole Gershman, and Jaime Carbonell. 2013. Hourly traffic prediction of news stories. arXiv preprint arXiv:1306.4608.",
"links": null
},
"BIBREF22": {
"ref_id": "b22",
"title": "Automatic keyword extraction on twitter",
"authors": [
{
"first": "Luis",
"middle": [],
"last": "Marujo",
"suffix": ""
},
{
"first": "Wang",
"middle": [],
"last": "Ling",
"suffix": ""
},
{
"first": "Isabel",
"middle": [],
"last": "Trancoso",
"suffix": ""
},
{
"first": "Chris",
"middle": [],
"last": "Dyer",
"suffix": ""
},
{
"first": "Alan",
"middle": [
"W"
],
"last": "Black",
"suffix": ""
},
{
"first": "Anatole",
"middle": [],
"last": "Gershman",
"suffix": ""
},
{
"first": "David",
"middle": [],
"last": "Martins De Matos",
"suffix": ""
},
{
"first": "Jo\u00e3o",
"middle": [],
"last": "Neto",
"suffix": ""
},
{
"first": "Jaime",
"middle": [],
"last": "Carbonell",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing (ACL-IJCNLP)",
"volume": "",
"issue": "",
"pages": "637--643",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Luis Marujo, Wang Ling, Isabel Trancoso, Chris Dyer, Alan W Black, Anatole Gershman, David Martins de Matos, Jo\u00e3o Neto, and Jaime Carbonell. 2015. Automatic keyword extraction on twitter. In Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing (ACL-IJCNLP), pages 637-643, Beijing, China, July. Association for Computational Linguistics (ACL).",
"links": null
},
"BIBREF23": {
"ref_id": "b23",
"title": "Learning multilingual subjective language via crosslingual projections",
"authors": [
{
"first": "Rada",
"middle": [],
"last": "Mihalcea",
"suffix": ""
},
{
"first": "Carmen",
"middle": [],
"last": "Banea",
"suffix": ""
},
{
"first": "Janyce",
"middle": [],
"last": "Wiebe",
"suffix": ""
}
],
"year": 2007,
"venue": "Proceedings of the 45th Annual Meeting of the Association of Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "976--983",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Rada Mihalcea, Carmen Banea, and Janyce Wiebe. 2007. Learning multilingual subjective language via cross- lingual projections. In Proceedings of the 45th Annual Meeting of the Association of Computational Linguistics (ACL), pages 976-983, Czech Republic, June. Association of Computational Linguistics (ACL).",
"links": null
},
"BIBREF24": {
"ref_id": "b24",
"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": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:1301.3781"
]
},
"num": null,
"urls": [],
"raw_text": "Tomas Mikolov, Kai Chen, Greg Corrado, and Jeffrey Dean. 2013a. Efficient estimation of word representations in vector space. arXiv preprint arXiv:1301.3781.",
"links": null
},
"BIBREF25": {
"ref_id": "b25",
"title": "Distributed representations of words and phrases and their compositionality",
"authors": [
{
"first": "Tomas",
"middle": [],
"last": "Mikolov",
"suffix": ""
},
{
"first": "Ilya",
"middle": [],
"last": "Sutskever",
"suffix": ""
},
{
"first": "Kai",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "Greg",
"middle": [
"S"
],
"last": "Corrado",
"suffix": ""
},
{
"first": "Jeff",
"middle": [],
"last": "Dean",
"suffix": ""
}
],
"year": 2013,
"venue": "Advances in Neural Information Processing Systems (NIPS)",
"volume": "",
"issue": "",
"pages": "3111--3119",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Tomas Mikolov, Ilya Sutskever, Kai Chen, Greg S Corrado, and Jeff Dean. 2013b. Distributed representations of words and phrases and their compositionality. In Advances in Neural Information Processing Systems (NIPS), pages 3111-3119, Lake Tahoe, Nevada, United States, December.",
"links": null
},
"BIBREF26": {
"ref_id": "b26",
"title": "Text categorization with class-based and corpus-based keyword selection",
"authors": [
{
"first": "Levent\u00f6zg\u00fcr",
"middle": [],
"last": "Arzucan\u00f6zg\u00fcr",
"suffix": ""
},
{
"first": "Tunga",
"middle": [],
"last": "G\u00fcng\u00f6r",
"suffix": ""
}
],
"year": 2005,
"venue": "Proceedings of the 20th International Symposium on Computer and Information Sciences (ISCIS)",
"volume": "",
"issue": "",
"pages": "606--615",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Arzucan\u00d6zg\u00fcr, Levent\u00d6zg\u00fcr, and Tunga G\u00fcng\u00f6r. 2005. Text categorization with class-based and corpus-based keyword selection. In Proceedings of the 20th International Symposium on Computer and Information Sciences (ISCIS), pages 606-615, Istanbul, Turke, October. Springer.",
"links": null
},
"BIBREF27": {
"ref_id": "b27",
"title": "Translingual document representations from discriminative projections",
"authors": [
{
"first": "C",
"middle": [],
"last": "John",
"suffix": ""
},
{
"first": "Kristina",
"middle": [],
"last": "Platt",
"suffix": ""
},
{
"first": "Wen-Tau",
"middle": [],
"last": "Toutanova",
"suffix": ""
},
{
"first": "",
"middle": [],
"last": "Yih",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of the 2010 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "251--261",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "John C Platt, Kristina Toutanova, and Wen-tau Yih. 2010. Translingual document representations from discrimina- tive projections. In Proceedings of the 2010 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 251-261, Cambridge, Massachusetts, USA, October. Association for Computational Linguis- tics (ACL).",
"links": null
},
"BIBREF28": {
"ref_id": "b28",
"title": "Cross language text classification by model translation and semi-supervised learning",
"authors": [
{
"first": "Lei",
"middle": [],
"last": "Shi",
"suffix": ""
},
{
"first": "Rada",
"middle": [],
"last": "Mihalcea",
"suffix": ""
},
{
"first": "Mingjun",
"middle": [],
"last": "Tian",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of the 2010 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "1057--1067",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Lei Shi, Rada Mihalcea, and Mingjun Tian. 2010. Cross language text classification by model translation and semi-supervised learning. In Proceedings of the 2010 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 1057-1067, Cambridge, Massachusetts, USA, October. Association for Computa- tional Linguistics (ACL).",
"links": null
},
"BIBREF29": {
"ref_id": "b29",
"title": "Hedge classification in biomedical texts with a weakly supervised selection of keywords",
"authors": [
{
"first": "Gy\u00f6rgy",
"middle": [],
"last": "Szarvas",
"suffix": ""
}
],
"year": 2008,
"venue": "Proceedings of the 46th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies (ACL-HLT)",
"volume": "",
"issue": "",
"pages": "281--289",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Gy\u00f6rgy Szarvas. 2008. Hedge classification in biomedical texts with a weakly supervised selection of keywords. In Proceedings of the 46th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies (ACL-HLT), pages 281-289, Columbus, Ohio, June. Association for Computational Linguistics (ACL).",
"links": null
},
"BIBREF30": {
"ref_id": "b30",
"title": "Learning based approaches for vietnamese question classification using keywords extraction from the web",
"authors": [
{
"first": "Dang",
"middle": [],
"last": "Tran",
"suffix": ""
},
{
"first": "Cuong",
"middle": [],
"last": "Chu",
"suffix": ""
},
{
"first": "Son",
"middle": [],
"last": "Pham",
"suffix": ""
},
{
"first": "Minh",
"middle": [],
"last": "Nguyen",
"suffix": ""
}
],
"year": 2013,
"venue": "Proceedings of the Sixth International Joint Conference on Natural Language Processing (IJCNLP)",
"volume": "",
"issue": "",
"pages": "740--746",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Dang Tran, Cuong Chu, Son Pham, and Minh Nguyen. 2013. Learning based approaches for vietnamese question classification using keywords extraction from the web. In Proceedings of the Sixth International Joint Confer- ence on Natural Language Processing (IJCNLP), pages 740-746, Nagoya, Japan, October. Asian Federation of Natural Language Processing (AFNLP).",
"links": null
},
"BIBREF31": {
"ref_id": "b31",
"title": "Inferring a semantic representation of text via cross-language correlation analysis",
"authors": [
{
"first": "Alexei",
"middle": [],
"last": "Vinokourov",
"suffix": ""
},
{
"first": "Nello",
"middle": [],
"last": "Cristianini",
"suffix": ""
},
{
"first": "John S Shawe-Taylor",
"middle": [],
"last": "",
"suffix": ""
}
],
"year": 2002,
"venue": "Advances in Neural Information Processing Systems (NIPS)",
"volume": "",
"issue": "",
"pages": "1473--1480",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Alexei Vinokourov, Nello Cristianini, and John S Shawe-Taylor. 2002. Inferring a semantic representation of text via cross-language correlation analysis. In Advances in Neural Information Processing Systems (NIPS), pages 1473-1480, Vancouver, British Columbia, Canada, December.",
"links": null
},
"BIBREF32": {
"ref_id": "b32",
"title": "Co-training for cross-lingual sentiment classification",
"authors": [
{
"first": "Xiaojun",
"middle": [],
"last": "Wan",
"suffix": ""
}
],
"year": 2009,
"venue": "Proceedings of the Joint Conference of the 47th Annual Meeting of the ACL and the 4th International Joint Conference on Natural Language Processing of the AFNLP (ACL-IJCNLP)",
"volume": "",
"issue": "",
"pages": "235--243",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xiaojun Wan. 2009. Co-training for cross-lingual sentiment classification. In Proceedings of the Joint Confer- ence of the 47th Annual Meeting of the ACL and the 4th International Joint Conference on Natural Language Processing of the AFNLP (ACL-IJCNLP), pages 235-243, Singapore, August. Association for Computational Linguistics (ACL).",
"links": null
},
"BIBREF33": {
"ref_id": "b33",
"title": "A novel two-step method for cross language representation learning",
"authors": [
{
"first": "Min",
"middle": [],
"last": "Xiao",
"suffix": ""
},
{
"first": "Yuhong",
"middle": [],
"last": "Guo",
"suffix": ""
}
],
"year": 2013,
"venue": "Advances in Neural Information Processing Systems (NIPS)",
"volume": "",
"issue": "",
"pages": "1--9",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Min Xiao and Yuhong Guo. 2013. A novel two-step method for cross language representation learning. In Advances in Neural Information Processing Systems (NIPS), pages 1-9, Lake Tahoe, Nevada, United States, December.",
"links": null
},
"BIBREF34": {
"ref_id": "b34",
"title": "Cross-lingual distillation for text classification",
"authors": [
{
"first": "Ruochen",
"middle": [],
"last": "Xu",
"suffix": ""
},
{
"first": "Yiming",
"middle": [],
"last": "Yang",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "1415--1425",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ruochen Xu and Yiming Yang. 2017. Cross-lingual distillation for text classification. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (ACL), pages 1415-1425, Vancouver, British Columbia, Canada, July. Association for Computational Linguistics (ACL).",
"links": null
},
"BIBREF35": {
"ref_id": "b35",
"title": "Cross-lingual text classification via model translation with limited dictionaries",
"authors": [
{
"first": "Ruochen",
"middle": [],
"last": "Xu",
"suffix": ""
},
{
"first": "Yiming",
"middle": [],
"last": "Yang",
"suffix": ""
},
{
"first": "Hanxiao",
"middle": [],
"last": "Liu",
"suffix": ""
},
{
"first": "Andrew",
"middle": [],
"last": "Hsi",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the 25th ACM International on Conference on Information and Knowledge Management (CIKM)",
"volume": "",
"issue": "",
"pages": "95--104",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Ruochen Xu, Yiming Yang, Hanxiao Liu, and Andrew Hsi. 2016. Cross-lingual text classification via model translation with limited dictionaries. In Proceedings of the 25th ACM International on Conference on Informa- tion and Knowledge Management (CIKM), pages 95-104, Indianapolis, Indiana, USA, October. Association for Computing Machinery (ACM).",
"links": null
},
"BIBREF36": {
"ref_id": "b36",
"title": "Multi-label Learning by Exploiting Label Dependency",
"authors": [
{
"first": "Min-Ling",
"middle": [],
"last": "Zhang",
"suffix": ""
},
{
"first": "Kun",
"middle": [],
"last": "Zhang",
"suffix": ""
}
],
"year": 2010,
"venue": "Proceedings of the 16th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining",
"volume": "",
"issue": "",
"pages": "999--1008",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Min-Ling Zhang and Kun Zhang. 2010. Multi-label Learning by Exploiting Label Dependency. In Proceedings of the 16th ACM SIGKDD International Conference on Knowledge Discovery and Data Mining, pages 999-1008, Washington DC, USA, July. Association for Computing Machinery (ACM).",
"links": null
},
"BIBREF37": {
"ref_id": "b37",
"title": "Learning bilingual sentiment word embeddings for cross-language sentiment classification",
"authors": [
{
"first": "Huiwei",
"middle": [],
"last": "Zhou",
"suffix": ""
},
{
"first": "Long",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "Fulin",
"middle": [],
"last": "Shi",
"suffix": ""
},
{
"first": "Degen",
"middle": [],
"last": "Huang",
"suffix": ""
}
],
"year": 2015,
"venue": "Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing (ACL-IJCNLP)",
"volume": "",
"issue": "",
"pages": "430--440",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Huiwei Zhou, Long Chen, Fulin Shi, and Degen Huang. 2015. Learning bilingual sentiment word embeddings for cross-language sentiment classification. In Proceedings of the 53rd Annual Meeting of the Association for Computational Linguistics and the 7th International Joint Conference on Natural Language Processing (ACL- IJCNLP), pages 430-440, Beijing, China, July. Association for Computational Linguistics (ACL).",
"links": null
},
"BIBREF38": {
"ref_id": "b38",
"title": "Attention-based LSTM network for cross-lingual sentiment classification",
"authors": [
{
"first": "Xinjie",
"middle": [],
"last": "Zhou",
"suffix": ""
},
{
"first": "Xiaojun",
"middle": [],
"last": "Wan",
"suffix": ""
},
{
"first": "Jianguo",
"middle": [],
"last": "Xiao",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing (EMNLP)",
"volume": "",
"issue": "",
"pages": "247--256",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xinjie Zhou, Xiaojun Wan, and Jianguo Xiao. 2016a. Attention-based LSTM network for cross-lingual sentiment classification. In Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing (EMNLP), pages 247-256, Austin, Texas, USA., November. Association for Computational Linguistics (ACL).",
"links": null
},
"BIBREF39": {
"ref_id": "b39",
"title": "Cross-lingual sentiment classification with bilingual document representation learning",
"authors": [
{
"first": "Xinjie",
"middle": [],
"last": "Zhou",
"suffix": ""
},
{
"first": "Xiaojun",
"middle": [],
"last": "Wan",
"suffix": ""
},
{
"first": "Jianguo",
"middle": [],
"last": "Xiao",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the 54th Annual Meeting of the Association for Computational Linguistics (ACL)",
"volume": "",
"issue": "",
"pages": "1403--1412",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Xinjie Zhou, Xiaojun Wan, and Jianguo Xiao. 2016b. Cross-lingual sentiment classification with bilingual doc- ument representation learning. In Proceedings of the 54th Annual Meeting of the Association for Computa- tional Linguistics (ACL), pages 1403-1412, Berlin, Germany, August. Association for Computational Linguis- tics (ACL).",
"links": null
}
},
"ref_entries": {
"FIGREF0": {
"num": null,
"text": "Architecture of the neural classifier with adversarial domain (language) adaptation byGanin and Lempitsky (2015). Arrows show the flow of gradient.",
"type_str": "figure",
"uris": null
},
"FIGREF1": {
"num": null,
"text": "Tigrinya NN( O + E )terror regime crime food water search evac med utils shelter infra n/a",
"type_str": "figure",
"uris": null
},
"TABREF1": {
"text": "Data statistics for Situation Frame (SF) type extraction task in Tigrinya and Oromo dataset. subset of our model's output on a separate dataset, different from the test set. We obtained 653 annotated sentences in Tigrinya this way (and 652 in Oromo",
"content": "<table/>",
"type_str": "table",
"num": null,
"html": null
},
"TABREF4": {
"text": "Tuned on ref. 79.71 46.17 58.48 31.12 51.81 38.88",
"content": "<table><tr><td/><td>terror</td><td>0</td><td>18</td><td>18</td><td>1.7</td><td>0</td><td>1.7</td><td>5.1</td><td>3.4</td><td>0</td><td>4.2</td><td>5.1</td><td>43</td><td/><td>terror</td><td>0</td><td>11</td><td>23</td><td>2.3</td><td>2.3</td><td>6.5</td><td>7.1</td><td>4.2</td><td>0</td><td>4.5</td><td>1.9</td><td>37</td></tr><tr><td/><td>regime</td><td>7.6</td><td>0</td><td>25</td><td>1.4</td><td>1.6</td><td>2.9</td><td>6.5</td><td>5.6</td><td>1.6</td><td>4.7</td><td>2.3</td><td>41</td><td/><td>regime</td><td>6.5</td><td>0</td><td colspan=\"3\">27 0.96 1.5</td><td colspan=\"2\">7.3 0.19</td><td>5</td><td colspan=\"2\">0.96 4.6</td><td>1.7</td><td>45</td></tr><tr><td/><td>crime</td><td>6.9</td><td>22</td><td>0</td><td>1.8</td><td>2.4</td><td>2.1</td><td>6.4</td><td>4.3</td><td>0.8</td><td>4</td><td>4.3</td><td>45</td><td/><td>crime</td><td>11</td><td>22</td><td>0</td><td colspan=\"2\">0.79 2.1</td><td colspan=\"3\">6.8 0.79 3.9</td><td>0</td><td>5.1</td><td>1.4</td><td>46</td></tr><tr><td/><td>food</td><td>4.9</td><td>9.8</td><td>13</td><td>0</td><td>11</td><td>11</td><td>4.9</td><td>4.9</td><td>8.5</td><td>3.7</td><td>2.4</td><td>26</td><td/><td>food</td><td>7.5</td><td>5.4</td><td>5.4</td><td>0</td><td>29</td><td>3.2</td><td>4.3</td><td>5.4</td><td>2.2</td><td>7.5</td><td>0</td><td>30</td></tr><tr><td>class</td><td>water search evac</td><td>0 2.3 4.3</td><td>10 9.2 13</td><td>17 7.5 14</td><td colspan=\"3\">10 5.2 1.4 0.72 18 0 5.6 2.9 0</td><td>2.2 29 0</td><td>9 4.6 5.8</td><td>5.6 1.1 0</td><td>2.2 18 25</td><td>2.2 1.1 2.5</td><td>36 19 14</td><td>class</td><td>water search evac</td><td colspan=\"4\">6.9 5.2 12 0.54 2.7 7.9 13 9.9 11 0.78 27 2.2</td><td>0 1 1.1</td><td>4 0 31</td><td>2 15 0</td><td colspan=\"3\">6.9 0.99 1.6 0.52 8.6 2 0.54 0.54 43</td><td>2 3.1 2.2</td><td>28 43 4.3</td></tr><tr><td/><td>med</td><td>4.1</td><td>16</td><td>14</td><td>2</td><td>4.1</td><td>4.1</td><td>8.1</td><td>0</td><td>1.5</td><td>4.6</td><td>2.5</td><td>40</td><td/><td>med</td><td>7.3</td><td>15</td><td>14</td><td>2.8</td><td>3.9</td><td colspan=\"2\">3.4 0.56</td><td>0</td><td>1.7</td><td colspan=\"2\">4.5 0.56 47</td></tr><tr><td/><td>utils</td><td>0</td><td>13</td><td>7</td><td>9.9</td><td>7</td><td>2.8</td><td>0</td><td>4.2</td><td>0</td><td>2.8</td><td>2.8</td><td>51</td><td/><td>utils</td><td>0</td><td>12</td><td>0</td><td>4.8</td><td>2.4</td><td>4.8</td><td>2.4</td><td>7.1</td><td>0</td><td>2.4</td><td>21</td><td>43</td></tr><tr><td/><td>shelter</td><td>4.9</td><td>13</td><td>12</td><td colspan=\"3\">1.5 0.97 15</td><td>34</td><td colspan=\"2\">4.4 0.97</td><td>0</td><td colspan=\"2\">0.97 13</td><td/><td>shelter</td><td>6.4</td><td>11</td><td>15</td><td colspan=\"3\">3.2 0.91 15</td><td>37</td><td colspan=\"2\">3.7 0.46</td><td>0</td><td>0.91 7.3</td></tr><tr><td/><td>infra</td><td>9.2</td><td>9.9</td><td>21</td><td>1.5</td><td>1.5</td><td>1.5</td><td>5.3</td><td>3.8</td><td>1.5</td><td>1.5</td><td>0</td><td>44</td><td/><td>infra</td><td>4.9</td><td>7.3</td><td>7.3</td><td>0</td><td>1.6</td><td>9.8</td><td colspan=\"3\">3.3 0.81 7.3</td><td>1.6</td><td>0</td><td>56</td></tr><tr><td/><td/><td/><td/><td/><td/><td colspan=\"4\">co-occurrence (%)</td><td/><td/><td/><td/><td/><td/><td colspan=\"11\">terror regime crime food water search evac med utils shelter infra n/a co-occurrence (%)</td></tr><tr><td/><td/><td/><td/><td colspan=\"6\">(c) Tigrinya NN( O + A )</td><td/><td/><td/><td/><td/><td/><td/><td/><td colspan=\"7\">(d) Tigrinya NN( O + E + A )</td><td/></tr><tr><td/><td/><td/><td/><td/><td/><td/><td/><td/><td colspan=\"10\">Figure 3: Co-occurrence of classes</td><td/><td/><td/><td/><td/><td/><td/></tr><tr><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td colspan=\"3\">Tigrinya</td><td/><td/><td/><td/><td colspan=\"3\">Oromo</td><td/><td/></tr><tr><td/><td/><td/><td/><td/><td/><td/><td/><td/><td colspan=\"2\">Method</td><td/><td/><td>P</td><td/><td>R</td><td/><td>F</td><td/><td/><td>P</td><td/><td>R</td><td/><td>F</td><td/></tr><tr><td/><td/><td/><td colspan=\"5\">NN ( O + E + A )</td><td/><td colspan=\"2\">top-1</td><td/><td colspan=\"14\">64.02 41.56 50.40 26.99 12.48 16.99</td></tr><tr><td/><td/><td/><td colspan=\"5\">NN ( O + E + A )</td><td/><td colspan=\"2\">top-2</td><td/><td colspan=\"14\">59.43 50.13 54.38 26.24 16.26 20.05</td></tr><tr><td/><td/><td/><td colspan=\"5\">NN ( O + E + A )</td><td/><td colspan=\"2\">top-3</td><td/><td colspan=\"14\">56.13 52.71 54.36 25.42 17.95 21.04</td></tr><tr><td/><td/><td/><td colspan=\"5\">NN ( O + E + A )</td><td/><td colspan=\"2\">mean</td><td/><td colspan=\"14\">45.57 55.86 50.18 15.41 29.83 20.21</td></tr><tr><td/><td/><td/><td colspan=\"5\">NN ( O + E + A )</td><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/><td/></tr></table>",
"type_str": "table",
"num": null,
"html": null
}
}
}
}