-
Notifications
You must be signed in to change notification settings - Fork 119
Topic 03: Named Entity Recognition, Entity Extraction and Entity Typing
Sherry Lin edited this page Oct 18, 2020
·
6 revisions
Surveys
- Named Entity extraction for Knowledge Graphs: A Literature Overview (IEEE Access 2019)
- A survey of named entity recognition and classification [Paper]
- A Survey on Deep Learning for Named Entity Recognition (TKDE 2018) [Paper] ๐
General NER
- Knowledge Vault: A Web-Scale Approach to Probabilistic Knowledge Fusion [Knowledge Vault, KDD 2014] ๐
- ClusType: Effective Entity Recognition and Typing by Relation Phrase-Based Clustering [ClusType, KDD2015] (Also Relation Clustering) coarse grained entity typing ๐
- Named entity recognition with document-specific KB tag gazetteers (EMNLP 2015)
- No Noun Phrase Left Behind: Detecting and Typing Unlinkable Entities [EMNLP-CoNLL 2012][Paper]
- TextCube: Automated Construction and Multidimensional Exploration (VLDB 2019) ๐
- Human-in-the-loop ML Systems for Entity Extraction (KDD 2019), regex+DL, weak label+active learning ๐
- Automated phrase mining from massive text corpora (TKDE 2018) ๐
- Predicting Named Entity Location Using Twitter (ICDE 2018) [PDF] prediction of the entity city-level location ๐
- How to Invest my Time: Lessons from HITL Entity Extraction [Presentation, applied science track] (KDD 2019) ๐
- BOND: Bert-Assisted Open-Domain Named Entity Recognition with Distant Supervision (KDD 2020) ๐
- Adversarial Transfer for Named Entity Boundary Detection with Pointer Networks (IJCAI 2019) [PDF]
Fine-grained NER or Entity Typing
- Label Noise Reduction in Entity Typing by Heterogeneous Partial-Label Embedding (PLE, KDD 2016) fine-grained entity typing
- AFET: Automatic Fine-Grained Entity Typing byHierarchical Partial-Label Embedding (AFET, EMNLP 2016) fine-grained entity typing
- Neural Joint Learning for Classifying Wikipedia Articles into Fine-Grained Named Entity Types (PACLIC, 2016)
- Fine-Grained Named Entity Recognition using ELMo and Wikidata (2019) [Paper]
Domain Specific NER
- A Hybrid Generative/Discriminative Model for Rapid Prototyping of Domain-Specific Named Entity Recognition (2019)
- Learning Named Entity Tagger using Domain-Specific Dictionary (EMNLP 2018) [Paper] [Notes] [Code]
Nested NER
- Nested Named Entity Recognition Revisited (NAACL-HLT 2018)
- A Neural Layered Model for Nested Named Entity Recognition (NAACL-HLT 2018) [Code]
- Nested Named Entity Recognition (Stanford)
- NNE: A Dataset for Nested Named Entity Recognition in English Newswire (ACL 2019)
- Nested Named Entity Recognition via Second-best Sequence Learning and Decoding [Paper]
Projects
- https://github.com/kamalkraj/BERT-NER, coarse-grained
- https://github.com/conv1d/bert-fine-grained-ner, fine-grained
- https://github.com/CLUEbenchmark/CLUENER2020, fine-grained
- https://github.com/sigamani/ner, fine-grained, Chinese
- https://github.com/xiaoling/figer, fine-grained
- https://github.com/elenanereiss/Legal-Entity-Recognition, fine-grained
Tutorials