Information Extraction & Entity Recognition
Error-Aware Entity Linking Evaluation and Propagation-Bounded Pipelines for Downstream NLP Tasks
Generated automatically from the limitations stated in 19 papers (EMNLP, ICML, SIGIR), listed under Evidence. It is not a paper, and it does not come from papers submitted to CSPaper.
The problem
Virtually every system that touches entities — relation extraction, KBQA, semantic parsing, coreference, retrieval-augmented generation — treats entity linking as a solved preprocessing step and evaluates against gold links, so the systems' true field performance is unknown and unlinkable to their stated failure modes. When linking is wrong, downstream modules cannot detect, recover from, or bound the damage; reported failure analyses put linking errors at 15–35% of end-to-end errors. Today nobody can quantify how much of a downstream system's headroom is actually upstream, because no benchmark couples controlled link corruption with propagation measurement.
Why it matters
Honest end-to-end evaluation of entity-dependent systems, and pipelines that degrade gracefully instead of silently failing on the 15–35% of inputs where linking goes wrong.
Ways to approach it
Prior-work checks are free with an account. Results someone already ran are shown to everyone.
- 1
Build a propagation benchmark: take 4–6 public systems (relation extraction, KBQA, RAG) and inject calibrated entity-linking corruptions (wrong-entity, nil, ambiguous-rare) at controlled rates, measuring downstream metric degradation curves and per-error-type sensitivity. Deliverable: propagation coefficients per task, showing where a 5% link error rate does 5% vs. 30% damage.
- 2
Add link-confidence propagation: equip linkers with calibrated uncertainty scores, then test whether downstream systems conditioned on those scores (defer, re-link, abstain) recover degraded performance versus ignoring them. Measure recovery ratio per task.
- 3
Joint re-ranking at the boundary: train a lightweight verifier that re-scores top-m link candidates using downstream-model feedback signals, measuring end-to-end accuracy on WebQSP-style and RE benchmarks against fixed-link baselines.
Have a different approach?
Describe how you would tackle this problem and we'll look for papers that already do it. Free; your text stays private.
Why it might fail
The corruption benchmark may find propagation is roughly linear and boring everywhere, yielding no useful signal for error-aware conditioning — and real linker errors may be so correlated with hard inputs that synthetic corruption understates the problem.
Sub-problems
Error-Tolerant and Backtracking Semantic Parsing for Knowledge Base Question Answering Under Noisy Entity Linking
Current knowledge base question answering (KBQA) and semantic parsing systems treat entity linking as an immutable prerequisite or assume gold topic entities as given. When initial entity linking produces incorrect nodes, the entire downstream reasoning and graph traversal phase fails catastrophically, accounting for 15% to 35% of total benchmark errors. Because reasoning engines cannot backtrack, revise, or jointly re-rank candidate entity anchors during execution, existing methods are unusable in realistic, end-to-end uncurated settings.
Robust Knowledge Graph Retrieval-Augmented Generation Under Entity Linking Uncertainty and Failure
Current graph-augmented RAG frameworks strictly require upstream entity linking and named entity recognition to identify seed nodes before traversing knowledge graphs. When queries involve rare entities, ambiguous surface forms, or concepts outside the knowledge base, this hard preprocessing pipeline either drops retrieval entirely or cascades incorrect seed entities into generation. Consequently, hybrid text-graph RAG systems cannot reliably operate on long-tail domain queries or informal text where standard entity linkers produce noisy or null outputs.
Evidence
Each paper's own statement of the limitation, verbatim.
- S-Path-RAG: Semantic-Aware Shortest-Path Retrieval Augmented Generation for Multi-Hop Knowledge Graph Question AnsweringTheWebConference 2026
Relies on an entity linker for seed quality; wrong entity links degrade results, mitigated only by top-m candidate retention and LLM disambiguation requests
- Named Entity-Driven Graph Smoothing to Enhance Pretrained Document Embeddings in Clustering TasksSIGIR 2026
Requires corpus-appropriate NER pipelines (e.g., CamemBERT, DeBERTa, or GPT-5) and entity embedding training, introducing upstream dependency on entity extraction quality.
- KBQA-R1: Reinforcing Large Language Models for Knowledge Base Question AnsweringICML 2026
Assumes gold topic entities are given (entity linking is assumed solved), so failures from incorrect entity linking are excluded
- Exploration-and-Thinking: Agentic Reasoning over Knowledge Graphs via an LLM-RL Synergized FrameworkSIGIR 2026
Depends on entity linking as a prerequisite; linking errors propagate to downstream reasoning
- Backjump-on-Graph: Empowering Large Language Models with Reinforced Retrospective Exploration for Agentic Knowledge Graph ReasoningICML 2026
Assumes correct initial entity linking; linking errors propagate through the whole reasoning phase
- RAED: Retrieval-Augmented Entity Description Generation for Emerging Entity Linking and DisambiguationEMNLP 2025
Relies solely on Wikipedia as knowledge source, so entities poorly covered or emerging outside mainstream documentation cannot be described; index passage filtering also requires entities to be present in the training datasets
- HydraRAG: Structured Cross-Source Enhanced Large Language Model ReasoningEMNLP 2025
Requires high-precision entity alignment between text and Knowledge Graphs, which may degrade with ambiguous or rare entities
- Graph-constrained Reasoning: Faithful Reasoning on Knowledge Graphs with Large Language ModelsICML 2025
Dependent on the accuracy of initial entity linking to map question entities to the Knowledge Graph.
Show all 19 papers
- D-RAG: Differentiable Retrieval-Augmented Generation for Knowledge Graph Question AnsweringEMNLP 2025
Relies on entity linking results and does not account for errors in that preprocessing step
- Topic-Oriented Open Relation Extraction with A Priori Seed GenerationEMNLP 2024
Relies on entity types being covered in external knowledge bases (e.g., Wikipedia); fine-grained or specialized types may be missing
- Major Entity Identification: A Generalizable Alternative to Coreference ResolutionEMNLP 2024
Major-entity selection relies on frequency thresholds (top-5 for LitBank/FantasyCoref, up to 9 for AFT, minimum 5 mentions) chosen heuristically; performance may vary with these choices
- LogicST: A Logical Self-Training Framework for Document-Level Relation Extraction with Incomplete AnnotationsEMNLP 2024
Assumes entities and their mentions are identified beforehand, which does not match real-world end-to-end settings
- Interactive-KBQA: Multi-Turn Interactions for Knowledge Base Question Answering with Large Language ModelsACL 2024
Entity linking errors are the largest failure mode (18% of errors on WebQSP+CWQ): the LLM often extracts wrong entity mentions, and Freebase entities returned without descriptions cause spurious re-searches; predicate search also fails on semantic-to-predicate mismatches (e.g., 'locate in' fails to match 'organization.organization.headquarters')
- GenRES: Rethinking Evaluation for Generative Relation Extraction in the Era of Large Language ModelsNAACL 2024
Completeness relies on human-annotated gold triples, which the authors themselves show can be inaccurate (e.g., mislabeled entity types in NYT10m)
- Fusion Makes Perfection: An Efficient Multi-Grained Matching Approach for Zero-Shot Relation ExtractionNAACL 2024
The method requires relation descriptions for all candidate relations and its virtual entity matching assumes descriptions can stand in for annotated entity hypernyms, which may fail for relation types whose descriptions do not mention entity-like elements
- Coarse-to-Fine Highlighting: Reducing Knowledge Hallucination in Large Language ModelsICML 2024
Relies on Wikidata entity linking and NER, so it may fail for queries/contexts with entities outside the KG or without named entities
- Fine-tuned LLMs Know More, Hallucinate Less with Few-Shot Sequence-to-Sequence Semantic Parsing over WikidataEMNLP 2023
Cannot recover from incorrect (as opposed to missing) entity links — entity linking errors account for 35.1% of failed dev examples
- CORE: A Few-Shot Company Relation Classification Dataset for Robust Domain Adaptation.EMNLP 2023
Only 30% of the 14,000 annotated candidates contain a predefined relation, and the 'undefined' category does not reflect the true distribution of invalid candidates (missing or non-business entities), limiting NOTA realism
- Question Answering on Freebase via Relation Extraction and Textual EvidenceACL 2016
Highly sensitive to the initial entity linking step, which accounts for roughly 15% of prediction errors.
Nearest existing work
- Entity Linking for Spoken LanguageNAACL 2015
- A Fair and In-Depth Evaluation of Existing End-to-End Entity Linking SystemsEMNLP 2023
- Robustness Evaluation of Entity Disambiguation Using Prior Probes: the Case of Entity OvershadowingEMNLP 2021
- CleanCoNLL: A Nearly Noise-Free Named Entity Recognition DatasetEMNLP 2023
- LinkNER: Linking Local Named Entity Recognition Models to Large Language Models using UncertaintyTheWebConference 2024
- Lambda: Learning Matchable Prior For Entity Alignment with Unlabeled Dangling CasesNeurIPS 2024
- Separating Retention from Extraction in the Evaluation of End-to-end Relation ExtractionEMNLP 2021
- Improving Neural Entity Disambiguation with Graph EmbeddingsACL 2019
- Improving Entity Disambiguation by Reasoning over a Knowledge BaseNAACL 2022
- EDIN: An End-to-end Benchmark and Pipeline for Unknown Entity Discovery and IndexingEMNLP 2022
- Comparative evaluation of boundary-relaxed annotation for Entity Linking performanceACL 2023
- Joint Entity Recognition and DisambiguationEMNLP 2015
- BioFEG: Generate Latent Features for Biomedical Entity LinkingEMNLP 2023
- A Comprehensive Evaluation of Biomedical Entity Linking ModelsEMNLP 2023
- Aligning Knowledge and Text Embeddings by Entity DescriptionsEMNLP 2015
Related open problems
Information Extraction & Entity Recognition
Semantic Typing and Grounding of Pronominal and Nominal Mentions Across Divergent Coreference Schemas
Current entity recognition and extraction pipelines exhibit sharp performance drops when evaluated on schemas that include pronominal and nominal mentions, dropping to as low as 42% recall on datasets like ACE 2005. Because most taggers assume proper named entities, models fail to type clusters composed entirely of pronouns or misclassify ambiguous pronouns (such as mistaking collective 'we' as person rather than organization) in the absence of cross-sentence antecedent context. Consequently, roughly 10% or more of coreference mentions remain completely ungrounded or unassigned, preventing reliable document-level entity extraction.
Information Extraction & Entity Recognition
Quantifying and Mitigating Upstream Parser Brittleness in Syntactic Information Extraction
Syntactic-semantic information extraction pipelines depend strictly on upstream dependency parsers and part-of-speech taggers, leaving downstream relation and entity extraction vulnerable to cascading errors. When applied to domain-specific jargon or subjected to minor parser version updates, upstream accuracy drops and alters the extracted syntactic structures. This leaves practitioners unable to guarantee extraction stability across domains or library releases without manual parser fine-tuning.