Relation Extraction.md

November 4, 2025 ยท View on GitHub

Relation Extraction

๐Ÿ“ Tutorial

  1. A SURVEY ON RELATION EXTRACTION (CMU) [Slides]
  2. Relation Extraction: CSE 517: Natural Language Processing [Slides]
  3. Relation Extraction II: CSE 517: Natural Language Processing [Slides]

๐Ÿ“ Research Papers

General topics

  1. CoType: Joint Extraction of Typed Entities and Relations with Knowledge Bases (CoType, WWW2017)[Notes]
  2. Knowledge-Based Weak Supervision for Information Extraction of Overlapping Relations [Code][Slides]
  • Recently, researchers have developed multi- instance learning algorithms to combat the noisy training data that can come from heuristic labeling, but their models assume relations are disjoint . for example they cannot extract the pair Founded(Jobs, Apple) and CEO-of(Jobs, Apple). This paper presents a novel approach for multi-instance learning with overlapping relations that combines a sentence-level extraction model with a simple, corpus-level component for aggregating the individual facts.
  1. Modeling missing data in distant supervision for information extraction (ACL2013) missing data problem(?)
  2. Neural Relation Extraction with Selective Attention over Instances (ACL 2016) [Paper][Code][Blog]
  • Fix the problem of distant supervised relation extraction
  • Employs CNN to embed the semantics of sentences, then builds sentence-level attention over multi- ple instances, which is expected to dynamically reduce the weights of those noisy instances (major contribution). Notes in group meeting.
  1. Multi-instance Multi-label Learning for Relation Extraction (EMMLP-CoNLL 2012)[Paper]
  2. Snuba: Automating Weak Supervision to Label Training Data (VLDB 2019) ๐ŸŒŸ
  3. Improving Neural Relation Extraction with Implicit Mutual Relations [Video][Slides][Paper] (ICDE 2020) ๐ŸŒŸ
  4. Snorkel: rapid training data creation with weak supervision (VLDBJ 2020) ๐ŸŒŸ
  5. Snorkel: Fast Training Set Generation for Information Extraction (SIGMOD 2017) ๐ŸŒŸ
  6. NERO: A Neural Rule Grounding Framework for Label-Efficient Relation Extraction (WWW 2020) [Paper]
  • Explicitly exploit labeling rules over unmatched sentences as supervision for training better RE models
  • The Nero framework has two major modules: (1) The sentence-level relation classifier aims to learn the neural representations of sentences and classify which relation it talks about, which serves as the outcome of Nero. (2) The soft rule matcher: The key intuition behind our soft rule matcher is that the distances between rules and sentences can be modeled by simple cosine computations in a new space transformed from their neural representations (e.g. word embeddings), which can be learned by a contrastive loss.
  1. MCVAE: Margin-based Conditional Variational Autoencoder for Relation Classification and Pattern Generation (WWW 2019)
  2. Semi-structured relation extraction (a series of woks conducted by the same author)
  • ZeroShotCeres: Zero-shot relation extraction from semi-structured webpages (ACL 2020)
  • OpenCeres: When open information extraction meets the semi-structured web (NAACL 2019)
  • Ceres: Distantly supervised relation extraction from the semi-structured web (VLDB 2018)
  1. RECON: Relation Extraction using Knowledge Graph Context in a Graph Neural Network (WWW 2021)
  2. Discovering Correlations between Sparse Features in Distant Supervision for Relation Extraction (WSDM 2019)
  3. KnowPrompt: Knowledge-aware Prompt-tuning with Synergestic Optimization for Relation Extraction (WWW 2022) [Paper] [Code]
  1. Document-Level Relation Extraction Based on Heterogeneous Graph Reasoning (CIKM 2024) [Paper]
  2. Topic-Oriented Open Relation Extraction with A Priori Seed Generation (EMNLP 2024) [Paper]
  3. Improving Data Annotation for Low-Resource Relation Extraction with Logical Rule-Augmented Collaborative Language Models (NAACL 2025) [Paper]
  4. Analyzing the Influence of Knowledge Graph Information on Relation Extraction (ESWC 2025) [Paper]
  5. Task-Oriented Dynamic Knowledge Distillation for Continuous Few-Shot Relation Extraction (Knowledge Base System 2025) [Paper]
  6. End-to-end Learning of Logical Rules for Enhancing Document-level Relation Extraction (ACL 2024) [Paper]
  7. Document Level Relationship Extraction based on context feature enhancement (Pattern Recognition Letters 2025) [Paper]
  8. Document-Level Relation Extraction with Global Relations and Entity Pair Reasoning (ACL 2025 Findings) [Paper]
  9. An Adaptive Multi-Threshold Loss and a General Framework for Collaborating Losses in Document-Level Relation Extraction (ACL 2025 Findings) [Paper]
  10. ARPDL: Adaptive Relational Prior Distribution Loss as an Adapter for Document-Level Relation Extraction (IJCAI 2025) [Paper]
  11. U-MERE: Unconstrained Multimodal Entity and Relation Extraction with Collaborative Modeling and Order-Sensitive Optimization (MM 2025) [Paper]

LLM for RE ๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅ

  1. Revisiting Relation Extraction in the era of Large Language Models (ACL 2023) [Paper]
  2. Learn or Recall? Revisiting Incremental Learning with Pre-trained Language Models (Arxiv, Dec 2023) [Paper]
  3. Taiyi: A Bilingual Fine-Tuned Large Language Model for Diverse Biomedical Tasks (Arxiv, Nov 2023) [Paper]
  • Datasets: a comprehensive collection of 140 existing biomedical text mining datasets (38 Chinese datasets and 102 English datasets)
  • Tasks: named entity recognition, relation extraction, text classification, question answering tasks
  1. Unleashing the Power of Large Language Models in Zero-shot Relation Extraction via Self-Prompting (EMNLP 2024) [Paper]

Datasets, Benchmarks, and Platform for Evaluation

  1. (Dataset) CoNLL: A Linear Programming Formulation for Global Inference in Natural Language Tasks (ACL 2004)
  2. (Dataset) NYT: Modeling relations and their mentions without labeled text (ECML/PKDD 2010)
  3. (Platform): Benchmarks for RE [Link]
  4. (Benchmark): NCRE: A Benchmark for Document-level Nominal Compound Relation Extraction (COLING 2025) [Paper]

๐Ÿ’ฌ Interesting Blogs and Discussions

  1. ๅŸบไบŽ็ฅž็ป็ฝ‘็ปœ็š„ๅฎžไฝ“่ฏ†ๅˆซๅ’Œๅ…ณ็ณปๆŠฝๅ–่”ๅˆๅญฆไน  (in Chinese)[Link]