View on GitHub

NLPprogress.github.io

Demo for github pages for Sebastian Ruder's NLP Progress Repo

Coreference resolution

Coreference resolution is the task of clustering mentions in text that refer to the same underlying real world entities.

Example:

               +-----------+
               |           |
I voted for Obama because he was most aligned with my values", she said.
 |                                                 |            |
 +-------------------------------------------------+------------+

“I”, “my”, and “she” belong to the same cluster and “Obama” and “he” belong to the same cluster.

CoNLL 2012

Experiments are conducted on the data of the CoNLL-2012 shared task, which uses OntoNotes coreference annotations. Papers report the precision, recall, and F1 of the MUC, B3, and CEAFφ4 metrics using the official CoNLL-2012 evaluation scripts. The main evaluation metric is the average F1 of the three metrics.

Model Avg F1 Paper / Source
(Lee et al., 2017)+ELMo (Peters et al., 2018)+coarse-to-fine & second-order inference (Lee et al., 2018) 73.0 Higher-order Coreference Resolution with Coarse-to-fine Inference
(Lee et al., 2017)+ELMo (Peters et al., 2018) 70.4 Deep contextualized word representatIions
Lee et al. (2017) 67.2 End-to-end Neural Coreference Resolution

Go back to the README