Closing the Gap: Robust Multilingual Coreference Resolution with DAgger

· Source: Paper Index on ACL Anthology · Field: Technology & Digital — Artificial Intelligence & Machine Learning, Natural Language Processing · Depth: Expert, quick

Summary

DAggerCoref, a system submitted to the CRAC 2026 Shared Task on Multilingual Coreference Resolution, achieves a macro CoNLL F1 of 67.56 across 27 datasets and 19 languages. This three-stage cascade system is built on XLM-RoBERTa-large, incorporating a gap classifier for zero pronoun detection, a mention head classifier, and a coarse-to-fine antecedent scorer. A central contribution is the application of DAgger (Ross et al., 2011) to coreference resolution, fine-tuning the antecedent scorer on a 50/50 mix of gold and pipeline-predicted mentions. This approach closes the train/test distribution mismatch, improving development set macro CoNLL F1 by 1.10 points. The system also introduces Otsu adaptive thresholding for zero pronoun detection, which matches gold-tuned per-dataset thresholds without requiring gold supervision.

Key takeaway

For NLP Engineers developing robust multilingual coreference systems, you should consider integrating DAgger into your training pipeline. Applying DAgger to fine-tune antecedent scorers on a mix of gold and pipeline-predicted mentions can significantly improve macro CoNLL F1 scores by addressing train/test distribution shifts. Additionally, explore Otsu adaptive thresholding for zero pronoun detection to match gold-tuned performance without requiring explicit gold supervision.

Key insights

Applying DAgger to coreference resolution effectively mitigates train/test distribution mismatch, boosting performance.

Principles

Method

DAggerCoref uses a three-stage cascade: a gap classifier, a mention head classifier, and an antecedent scorer. The antecedent scorer is fine-tuned with DAgger on a 50/50 mix of gold and pipeline-predicted mentions.

In practice

Topics

Best for: Research Scientist, AI Scientist, NLP Engineer, Machine Learning Engineer

Related on AIssential

Open in AIssential →

Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.