ACL-OCL / Base_JSON /prefixD /json /dash /2021.dash-1.6.json
Benjamin Aw
Add updated pkl file v3
6fa4bc9
{
"paper_id": "2021",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T16:29:33.605724Z"
},
"title": "Human-In-The-Loop Entity Linking for Low Resource Domains",
"authors": [
{
"first": "Jan-Christoph",
"middle": [],
"last": "Klie",
"suffix": "",
"affiliation": {
"laboratory": "Ubiquitous Knowledge Processing Lab (UKP-TUDA",
"institution": "Technical University of Darmstadt",
"location": {
"country": "Germany"
}
},
"email": ""
},
{
"first": "Richard",
"middle": [],
"last": "Eckart De Castilho",
"suffix": "",
"affiliation": {
"laboratory": "Ubiquitous Knowledge Processing Lab (UKP-TUDA",
"institution": "Technical University of Darmstadt",
"location": {
"country": "Germany"
}
},
"email": ""
},
{
"first": "Iryna",
"middle": [],
"last": "Gurevych",
"suffix": "",
"affiliation": {
"laboratory": "Ubiquitous Knowledge Processing Lab (UKP-TUDA",
"institution": "Technical University of Darmstadt",
"location": {
"country": "Germany"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Entity linking (EL) is concerned with disambiguating entity mentions in a text against a knowledge base (KB). To quickly annotate texts with EL in low-resource domains and noisy text, we present a novel Human-In-The-Loop EL approach. We show that it greatly outperforms a strong baseline in simulation. In a user study, annotation time is reduced by 35 % compared to annotating without interactive support; users report that they strongly prefer our new approach. An open-source and readyto-use implementation based on the text annotation platform INCEpTION 1 is made available 2 .",
"pdf_parse": {
"paper_id": "2021",
"_pdf_hash": "",
"abstract": [
{
"text": "Entity linking (EL) is concerned with disambiguating entity mentions in a text against a knowledge base (KB). To quickly annotate texts with EL in low-resource domains and noisy text, we present a novel Human-In-The-Loop EL approach. We show that it greatly outperforms a strong baseline in simulation. In a user study, annotation time is reduced by 35 % compared to annotating without interactive support; users report that they strongly prefer our new approach. An open-source and readyto-use implementation based on the text annotation platform INCEpTION 1 is made available 2 .",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Entity linking (EL) describes the task of disambiguating entity mentions in a text by linking them to a knowledge base (KB), e.g. the text span Earl of Orrery can be linked to the KB entry John Boyle, 5 th Earl of Cork, thereby disambiguating it. EL is highly relevant in many fields like digital humanities, classics, technical writing or biomedical sciences for applications like search (Meij et al., 2014) , semantic enrichment (Schl\u00f6gl and Lejtovicz, 2017) or information extraction (Nooralahzadeh and \u00d8vrelid, 2018) .",
"cite_spans": [
{
"start": 389,
"end": 408,
"text": "(Meij et al., 2014)",
"ref_id": "BIBREF4"
},
{
"start": 431,
"end": 460,
"text": "(Schl\u00f6gl and Lejtovicz, 2017)",
"ref_id": "BIBREF6"
},
{
"start": 487,
"end": 520,
"text": "(Nooralahzadeh and \u00d8vrelid, 2018)",
"ref_id": "BIBREF5"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "In these scenarios, the first crucial step is typically to annotate data. Manual annotation is laborious and often prohibitively expensive. To improve annotation speed and quality, we have developed a novel Human-In-The-Loop (HITL) entity linking approach. It helps annotators finding entity mentions in the text and linking them to the correct knowledge base entries. The more mentions get linked over time, the better the annotation support will be.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "We demonstrate the effectiveness of our approach with extensive simulation as well as a user study on different, challenging datasets. We have implemented our approach based on the opensource annotation platform INCEpTION (Klie et al., 2018) and publish all datasets and code.",
"cite_spans": [
{
"start": 222,
"end": 241,
"text": "(Klie et al., 2018)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1"
},
{
"text": "Entity linking describes the task of disambiguating mentions in a text against a knowledge base. Manual annotation of EL consists of three steps (Shen et al., 2015) . First, the annotator selects a span that contains an entity. Then, they search for the correct entity in a KB. These search results are reranked to rank more suitable candidates higher. Each candidate from the knowledge base is assumed to have a label and a description.",
"cite_spans": [
{
"start": 145,
"end": 164,
"text": "(Shen et al., 2015)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Implementation",
"sec_num": "2"
},
{
"text": "To speed up this annotation process, we support users twofold: To find suitable spans, we provide recommenders that suggest potential entity spans. They can also classify these entity spans (e.g. as person, location, etc.). These recommenders learn from new annotations and are retrained in the background. For candidate ranking, we follow Zheng et al. (2010) and model it as a learning-to-rank problem: given a marked span, search query and a list of candidates, sort the candidates so that the most relevant candidate is at the top. By selecting an entity label from the candidate list, users express that the selected one was preferred over all other candidates. These preferences are used to train state-of-the-art pairwise learning-to-rank models from the literature: the gradient boosted trees variant LightGBM (Ke et al., 2017) and RankSVM (Joachims, 2002) . The continuously updated models improve over time with an increasing number of annotations. As input features, we use different similarity measures between the marked span and the candidate label, between the spans' context and the candidate description as well as dense word and sentence embeddings of the descriptions. Figure 1 : Human-in-the-loop simulation results for our three datasets and models. One can see that the model achieves good Accuracy@5 with only a few annotations, especially for the RankSVM.",
"cite_spans": [
{
"start": 340,
"end": 359,
"text": "Zheng et al. (2010)",
"ref_id": "BIBREF8"
},
{
"start": 817,
"end": 834,
"text": "(Ke et al., 2017)",
"ref_id": "BIBREF2"
},
{
"start": 847,
"end": 863,
"text": "(Joachims, 2002)",
"ref_id": "BIBREF1"
}
],
"ref_spans": [
{
"start": 1187,
"end": 1195,
"text": "Figure 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Implementation",
"sec_num": "2"
},
{
"text": "Datasets We use the following three datasets for validating our approach: 1) the AIDA-YAGO stateof-the art dataset introduced by Hoffart et al. (2011) . 2) Women Writers Online 3 is a collection of texts by pre-Victorian women writers. It includes texts on a wide range of topics and from various genres including poems, plays, and novels.",
"cite_spans": [
{
"start": 129,
"end": 150,
"text": "Hoffart et al. (2011)",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Implementation",
"sec_num": "2"
},
{
"text": "3) The 1641 Depositions 4 contain legal texts in form of court witness statements recorded after the Irish Rebellion of 1641.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Implementation",
"sec_num": "2"
},
{
"text": "To validate our approach, we simulate a user annotating with our HITL ranker. Then, we conduct a user study to test it in a real-life setting. Similar to other work on EL, our main metric for ranking is accuracy. We also measure Accuracy@5, as our experiments showed that users can quickly scan and select the right entity from a list of five elements.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "3"
},
{
"text": "Simulation Fig. 1 depicts the simulation results. All models outperform a majority baseline over most of the annotation process. It can be seen that both of our used models achieve high performance even if trained on very few annotations. The RankSVM handles low data better than LightGBM, but quickly reaches its peak performance due to it being a linear model. This potentially allows to first use a RankSVM for the cold start and when enough annotations are made, LightGBM, thereby combining the best of both.",
"cite_spans": [],
"ref_spans": [
{
"start": 11,
"end": 17,
"text": "Fig. 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Experiments",
"sec_num": "3"
},
{
"text": "User Study In order to validate the viability of our approach in a realistic scenario, we conduct a user study. For that, we augmented the already existing annotation tool INCEpTION (Klie et al., 2018) with our Human-In-The-Loop entity ranking and automatic suggestions. We let five users re-annotate parts of the 1641 corpus. We compare two configurations: one uses our reranking, one uses the default ranking. We randomly selected eight documents which we split in two sets of four documents. We measure annotation time, number of suggestions used and search queries performed. The evaluation of the user study shows that using our approach, users on average annotated 35% faster and needed 15% fewer search queries.",
"cite_spans": [
{
"start": 182,
"end": 201,
"text": "(Klie et al., 2018)",
"ref_id": "BIBREF3"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Experiments",
"sec_num": "3"
},
{
"text": "We presented a domain-agnostic annotation approach for annotating entity linking for lowresource domains. It consists of two main components: recommenders that are algorithms that suggest potential annotations to users and a ranker that, given a mention span, ranks potential entity candidates so that they show up higher in the candidate list, making it easier to find for users. Both systems are retrained whenever new annotations are made, forming the Human-In-The-Loop. In a user study, results show that users prefer our approach compared to the typical annotation process; annotation speed improves by around 35% when using our system relative to using no reranking support.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "4"
},
{
"text": "https://inception-project.github.io 2 https://github.com/UKPLab/ acl2020-interactive-entity-linking",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "https://www.wwp.northeastern.edu/wwo 4 http://1641.tcd.ie/",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Robust Disambiguation of Named Entities in Text",
"authors": [
{
"first": "Johannes",
"middle": [],
"last": "Hoffart",
"suffix": ""
},
{
"first": "Mohamed",
"middle": [
"Amir"
],
"last": "Yosef",
"suffix": ""
},
{
"first": "Ilaria",
"middle": [],
"last": "Bordino",
"suffix": ""
},
{
"first": "Hagen",
"middle": [],
"last": "F\u00fcrstenau",
"suffix": ""
},
{
"first": "Manfred",
"middle": [],
"last": "Pinkal",
"suffix": ""
},
{
"first": "Marc",
"middle": [],
"last": "Spaniol",
"suffix": ""
},
{
"first": "Bilyana",
"middle": [],
"last": "Taneva",
"suffix": ""
},
{
"first": "Stefan",
"middle": [],
"last": "Thater",
"suffix": ""
},
{
"first": "Gerhard",
"middle": [],
"last": "Weikum",
"suffix": ""
}
],
"year": 2011,
"venue": "Proceedings of EMNLP'11",
"volume": "",
"issue": "",
"pages": "782--792",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Johannes Hoffart, Mohamed Amir Yosef, Ilaria Bor- dino, Hagen F\u00fcrstenau, Manfred Pinkal, Marc Span- iol, Bilyana Taneva, Stefan Thater, and Gerhard Weikum. 2011. Robust Disambiguation of Named Entities in Text. In Proceedings of EMNLP'11, pages 782-792.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "Optimizing search engines using clickthrough data",
"authors": [
{
"first": "Thorsten",
"middle": [],
"last": "Joachims",
"suffix": ""
}
],
"year": 2002,
"venue": "Proceedings of the eighth ACM SIGKDD international conference on Knowledge discovery and data mining -KDD '02",
"volume": "",
"issue": "",
"pages": "133--142",
"other_ids": {
"DOI": [
"10.1145/775047.775067"
]
},
"num": null,
"urls": [],
"raw_text": "Thorsten Joachims. 2002. Optimizing search engines using clickthrough data. In Proceedings of the eighth ACM SIGKDD international conference on Knowledge discovery and data mining -KDD '02, pages 133-142.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "LightGBM: A Highly Efficient Gradient Boosting Decision Tree",
"authors": [
{
"first": "Guolin",
"middle": [],
"last": "Ke",
"suffix": ""
},
{
"first": "Qi",
"middle": [],
"last": "Meng",
"suffix": ""
},
{
"first": "Thomas",
"middle": [],
"last": "Finley",
"suffix": ""
},
{
"first": "Taifeng",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "Wei",
"middle": [],
"last": "Chen",
"suffix": ""
},
{
"first": "Weidong",
"middle": [],
"last": "Ma",
"suffix": ""
},
{
"first": "Qiwei",
"middle": [],
"last": "Ye",
"suffix": ""
},
{
"first": "Tie-Yan",
"middle": [],
"last": "Liu",
"suffix": ""
}
],
"year": 2017,
"venue": "Advances in Neural Information Processing Systems",
"volume": "30",
"issue": "",
"pages": "3146--3154",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Guolin Ke, Qi Meng, Thomas Finley, Taifeng Wang, Wei Chen, Weidong Ma, Qiwei Ye, and Tie-Yan Liu. 2017. LightGBM: A Highly Efficient Gradient Boosting Decision Tree. In I. Guyon, U. V. Luxburg, S. Bengio, H. Wallach, R. Fergus, S. Vishwanathan, and R. Garnett, editors, Advances in Neural Informa- tion Processing Systems 30, pages 3146-3154.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "The INCEpTION Platform: Machine-Assisted and Knowledge-Oriented Interactive Annotation",
"authors": [
{
"first": "Jan-Christoph",
"middle": [],
"last": "Klie",
"suffix": ""
},
{
"first": "Michael",
"middle": [],
"last": "Bugert",
"suffix": ""
},
{
"first": "Beto",
"middle": [],
"last": "Boullosa",
"suffix": ""
},
{
"first": "Richard",
"middle": [],
"last": "Eckart De Castilho",
"suffix": ""
},
{
"first": "Iryna",
"middle": [],
"last": "Gurevych",
"suffix": ""
}
],
"year": 2018,
"venue": "Proceedings of the 27th International Conference on Computational Linguistics: System Demonstrations",
"volume": "",
"issue": "",
"pages": "5--9",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Jan-Christoph Klie, Michael Bugert, Beto Boullosa, Richard Eckart de Castilho, and Iryna Gurevych. 2018. The INCEpTION Platform: Machine- Assisted and Knowledge-Oriented Interactive Anno- tation. In Proceedings of the 27th International Conference on Computational Linguistics: System Demonstrations, pages 5-9.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Entity linking and retrieval for semantic search",
"authors": [
{
"first": "Edgar",
"middle": [],
"last": "Meij",
"suffix": ""
},
{
"first": "Krisztian",
"middle": [],
"last": "Balog",
"suffix": ""
},
{
"first": "Daan",
"middle": [],
"last": "Odijk",
"suffix": ""
}
],
"year": 2014,
"venue": "Proceedings of the 7th ACM international conference on Web search and data mining -WSDM '14",
"volume": "",
"issue": "",
"pages": "683--684",
"other_ids": {
"DOI": [
"10.1145/2556195.2556201"
]
},
"num": null,
"urls": [],
"raw_text": "Edgar Meij, Krisztian Balog, and Daan Odijk. 2014. Entity linking and retrieval for semantic search. In Proceedings of the 7th ACM international confer- ence on Web search and data mining -WSDM '14, pages 683-684.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "SIRIUS-LTG: An Entity Linking Approach to Fact Extraction and Verification",
"authors": [
{
"first": "Farhad",
"middle": [],
"last": "Nooralahzadeh",
"suffix": ""
},
{
"first": "Lilja",
"middle": [],
"last": "\u00d8vrelid",
"suffix": ""
}
],
"year": 2018,
"venue": "Proceedings of the First Workshop on Fact Extraction and VERification (FEVER)",
"volume": "",
"issue": "",
"pages": "119--123",
"other_ids": {
"DOI": [
"10.18653/v1/w18-5519"
]
},
"num": null,
"urls": [],
"raw_text": "Farhad Nooralahzadeh and Lilja \u00d8vrelid. 2018. SIRIUS-LTG: An Entity Linking Approach to Fact Extraction and Verification. In Proceedings of the First Workshop on Fact Extraction and VERification (FEVER), pages 119-123.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "APIS -Austrian Prosopographical Information System",
"authors": [
{
"first": "Matthias",
"middle": [],
"last": "Schl\u00f6gl",
"suffix": ""
},
{
"first": "Katalin",
"middle": [],
"last": "Lejtovicz",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of the Second Conference on Biographical Data in a Digital World",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"DOI": [
"10.5281/zenodo.846571"
]
},
"num": null,
"urls": [],
"raw_text": "Matthias Schl\u00f6gl and Katalin Lejtovicz. 2017. APIS - Austrian Prosopographical Information System. In Proceedings of the Second Conference on Biograph- ical Data in a Digital World 2017.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Entity Linking with a Knowledge Base: Issues, Techniques, and Solutions",
"authors": [
{
"first": "Wei",
"middle": [],
"last": "Shen",
"suffix": ""
},
{
"first": "Jianyong",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "Jiawei",
"middle": [],
"last": "Han",
"suffix": ""
}
],
"year": 2015,
"venue": "IEEE Transactions on Knowledge and Data Engineering",
"volume": "27",
"issue": "2",
"pages": "443--460",
"other_ids": {
"DOI": [
"10.1109/tkde.2014.2327028"
]
},
"num": null,
"urls": [],
"raw_text": "Wei Shen, Jianyong Wang, and Jiawei Han. 2015. En- tity Linking with a Knowledge Base: Issues, Tech- niques, and Solutions. IEEE Transactions on Knowl- edge and Data Engineering, 27(2):443-460.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Learning to Link Entities with Knowledge Base",
"authors": [
{
"first": "Zhicheng",
"middle": [],
"last": "Zheng",
"suffix": ""
},
{
"first": "Fangtao",
"middle": [],
"last": "Li",
"suffix": ""
},
{
"first": "Minlie",
"middle": [],
"last": "Huang",
"suffix": ""
},
{
"first": "Xiaoyan",
"middle": [],
"last": "Zhu",
"suffix": ""
}
],
"year": 2010,
"venue": "Prooceedings of NAACL-HLT'10",
"volume": "",
"issue": "",
"pages": "483--491",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zhicheng Zheng, Fangtao Li, Minlie Huang, and Xi- aoyan Zhu. 2010. Learning to Link Entities with Knowledge Base. In Prooceedings of NAACL- HLT'10, pages 483-491.",
"links": null
}
},
"ref_entries": {}
}
}