Coreference Resolution
Also known as: coreference, anaphora resolution, Eşgönderim Çözümleme (Coreference Resolution)
Coreference resolution is a natural-language-processing task that detects when different expressions in a text refer to the same entity — for example a name, a later pronoun, and a descriptive phrase all pointing at one person. Rooted in early linguistic work by Hobbs (1978) and advanced by the end-to-end neural model of Lee et al. (2017), it improves the quality of information extraction and text understanding.
Read the full method
Sign in with a free account to read this section.
Method map
The neighbourhood of related methods — select a node to explore.
When to use it
Coreference resolution fits when you have text in English or another supported language and want to track entities across a document — typically as a building block for information extraction or deeper text understanding. A NER pass beforehand helps. It is descriptive and explanatory in purpose and needs at least a modest amount of text (around 20 units) to be meaningful; without text data it cannot run.
Strengths & limitations
- Links scattered mentions — names, pronouns, and descriptive phrases — back to a single entity, which sharpens information extraction.
- Improves the quality of downstream text-understanding tasks by resolving who or what each expression refers to.
- Supports both rule-based linguistic approaches and modern end-to-end neural models.
- Works only for English or other supported languages; coverage outside those is limited.
- Accuracy depends on reliable upstream steps — weak mention detection or missing NER degrades the clusters.
- Ambiguous or long-distance references remain hard, so some links will be wrong.
Frequently asked
What is the difference between coreference resolution and named-entity recognition?
NER finds and labels entity mentions (such as people or organisations) in text. Coreference resolution goes a step further by deciding which of those mentions — plus pronouns and descriptive phrases — refer to the same real-world entity, grouping them into clusters. NER is often a useful precursor to coreference.
Do I need a NER step first?
It is not strictly required, but a NER pass is a helpful precursor: knowing where entities sit makes mention detection and the resulting clusters more reliable.
Does it work in languages other than English?
It works for English or other supported languages. Coverage outside the languages your model supports is limited, so the chosen model must match the language of your text.
Rule-based or neural — which approach should I use?
Rule-based methods, in the tradition of Hobbs (1978), apply linguistic rules over syntax and recency and are transparent. End-to-end neural models, such as Lee et al. (2017), learn to score mentions and their links directly and generally handle harder cases better at higher computational cost.
Sources
- Lee, K. et al. (2017). End-to-end Neural Coreference Resolution. EMNLP. link ↗
- Hobbs, J.R. (1978). Resolving Pronoun References. Lingua, 44(4), 311-338. DOI: 10.1016/0024-3841(78)90006-2 ↗
How to cite this page
ScholarGate. (2026, June 1). Coreference Resolution. ScholarGate. https://scholargate.app/en/text-mining/coreference-resolution
Which method?
Set this method beside its closest kin and read them side by side — the library lays the books on the table; the choice is yours.
- Named Entity RecognitionText mining↔ compare
- Question AnsweringText mining↔ compare
- Semantic Role LabelingText mining↔ compare
- Sentiment AnalysisText mining↔ compare