Multilingual Coreference Resolution via
Cycle-Consistent Machine Translation

Adriana-Valentina Costache\(^{*}\), Eduard Poesina\(^{*}\), Silviu-Florin Gheorghe,
Paul Irofti, Radu Tudor Ionescu\(^{\diamond}\)
Department of Computer Science, University of Bucharest, Romania
\(^{*}\)Equal contribution. \(^{\diamond}\)raducu.ionescu@gmail.com


Abstract

Coreference resolution is a core NLP task, having a broad range of downstream applications, e.g. machine translation, question answering, document summarization, etc. While the task is well-studied in English, comparatively less attention is dedicated to coreference resolution in other languages, especially low-resource ones. To mitigate this gap, we propose a novel coreference resolution pipeline that harnesses machine translation (MT) from English to a target low-resource language, to generate or expand training data. To automatically validate the quality of the translated samples, we back-translate the samples and assess the similarity with the original English samples via cosine similarity in the latent space of a BERT model. The resulting similarity scores are integrated into the loss function to weight training samples according to their MT cycle consistency. Extensive experiments on four low-resource languages show that our pipeline brings significant performance gains in coreference resolution. Moreover, our pipeline enables accurate coreference resolution in languages where no previous corpora were available.

1 Introduction↩︎

Coreference resolution (CR) is a fundamental NLP task, which aims to identify all expressions in a text that refer to the same entity. The first attempts at solving the CR problem were heavily based on human-designed rules for the English language [1][4]. These types of methods are limited by the difficulty of drawing a complete list of non-contradictory rules, and are exposed to problems associated with the statistical nature of language. The foundational work of [5] was set to address CR by creating a fully trainable solution, without human-designed linguistic rules. The authors introduced the first end-to-end neural system, using a bidirectional LSTM to produce contextual span representations for joint mention detection in English. Deep models later benefited from the emergence of better neural encoders [6], such as BERT [7]. While end-to-end models reach competitive results [8], [9], they usually have many task-specific hyperparameters and are hard to tune, as stated by [10].

More recently, researchers introduced a new category of sequence-to-sequence solutions [11][14], aiming to generate text representations of entity clusters. Notably, CorPipe [14] won the CRAC 2023 shared task on multilingual coreference resolution, while CorPipeEnsemble ranked first in the CRAC 2025 (unconstrained) edition. Another direction of study is the use of zero-shot large language models (LLMs) via prompting. [15] found that, although the zero-shot performance of promoted LLMs is respectable, they still remain way below specialized state-of-the-art models, by 10-20% on benchmarks like CoNLL-2012/OntoNotes [16]. The CRAC 2025 results [17] also indicate that zero-shot LLMs lag far behind specialized models, with a clear gap of about 13% in terms of F1.

These empirical observations underline the utility of task-specific datasets used to train and test specialized CR models. However, CR datasets in certain languages are small, outdated, or entirely missing. There are clear efforts to remedy this situation, e.g. the CRAC 2025 shared task [17] describes CorefUD as a harmonized multilingual collection of 22 datasets in 17 languages. By contrast, for low-resource languages, such as Romanian, we did not find any CR datasets that can be used in the evaluation and training of specialized models. To make things worse, it is reasonable to expect that the zero-shot performance in such languages is even lower.

Figure 1: Overview of the proposed pipeline for coreference resolution. An LLM, namely Claude Sonnet 4.6 [18], is prompted to translate annotated samples from English to the target language and back. The cycle consistency of back-translations is estimated via BERTScore [19]. Finally, the CR model, namely Maverick [20], is trained on the target language, weighting the loss of each translated sample with s^p, where s represents the BERTScore of the respective sample, and p is a hyperparameter that controls the importance of cycle consistency. Best viewed in color.

To this end, we propose a novel CR framework that leverages existing English resources via machine translation (MT) to generate new training data in a target low-resource language. As illustrated in Figure 1, we employ back-translation and assess the overlap between original and back-translated English samples, where the overlap is given by the cosine similarity computed in the embedding space of a pre-trained BERT model [7], [19]. We conjecture that the utility of a translated data sample is proportional to its cycle consistency, i.e. the cosine similarity of its back-translation. Therefore, we integrate the cosine similarity between original and back-translated English samples into the loss function, to weight the importance of translated samples according to their cycle consistency.

To validate the proposed framework, we perform experiments across four low-resource languages: French, Hungarian, Romanian and Russian. While three of these languages have small-scale publicly available CR datasets, there are no CR resources for Romanian. The results confirm that our cycle-consistent MT augmentation framework can significantly boost performance in CR across all four languages, in both training dataset expansion and training dataset generation scenarios.

In summary, our contribution is threefold:

  • We propose a novel CR framework based on MT to generate new training samples for low-resource languages, and modulate sample importance according to MT cycle consistency.

  • We conduct comprehensive experiments across four low-resource languages, showing that the proposed framework can significantly boost CR performance.

  • We manually curate a coreference resolution test set for Romanian, thus enabling the evaluation of CR systems for this low-resource language.

2 Method↩︎

Our model extends Maverick [20] with three modifications, to make it suitable for CR in low-resource languages. First, we replace the English-only encoder DeBERTa-v3-large [21] with mmBERT-base [22], a multilingual encoder pre-trained on 200+ languages. In this way, a single model can be employed across multiple languages. Second, we separate training into two phases: (i) train the mention detector with the frozen encoder, and (ii) fine-tune the encoder and the coreference heads using gold mentions as input, isolating the linking signal from mention-detection noise. Third, we augment the bilinear coreference scorer [5] with MT cycle consistency, providing a discriminative signal, independent of encoder representations.

Generating data via MT. The lack of large-scale CR resources in many languages motivates our MT-based augmentation strategy. We employ a highly capable LLM to perform MT, namely Claude Sonnet 4.6 [18]. As illustrated in Figure  1, each source (English) document is translated using Claude Sonnet [18] via zero-shot prompting (the exact prompt is specified in Table 3). The prompt instructs the model to produce a fluent target-language translation, while preserving every \(\llbracket k \rrbracket \ldots \langle/k\rangle\) span around the target-language equivalent of each English mention, thus maintaining all cluster identifiers \(k \in \{1,2,...,K\}\), where \(K\) is the number of entities.

Back-translation quality scoring. Translation errors introduce noise into the projected annotations. To quantify this noise per document, we employ back-translation to complete the translation cycle: each target language translation is itself submitted to Claude Sonnet 4.6 with a symmetric prompt requesting translation back to English, while preserving all cluster markers. The back-translated English text is then compared with the original English source via BERTScore [19], yielding a per-document quality score \(s \in [0, 1]\). Our intuition is that a high-fidelity translation followed by a faithful back-translation recovers text semantically close to the source, whereas a translation that drops or misaligns mentions produces a divergent back-translation.

Per-document loss weighting. Rather than applying a hard threshold to discard low-quality documents, which would lose potentially useful training data, we incorporate BERTScore directly into the training objective. Each document \(D\) contributes with the following weight: \[\label{eq95weight} w_D = s_D^{\,p},\tag{1}\] where \(s_D\) is the BERTScore between source and back-translated versions of document \(D\), and \(p \geq 0\) controls the strength of the penalty. Then, the weighted training objective becomes: \[\label{eq95loss} \mathcal{L}(\theta) = \frac{1}{|\mathcal{D}|} \sum_{D \in \mathcal{D}} w_D \cdot \mathcal{L}_D(\theta),\tag{2}\] where \(\mathcal{D}\) is the collection of translated documents (originally available in English), \(\theta\) represents the parameters of the CR model, and \(\mathcal{L}_D\) is the per-document loss for the current training phase. For training phase (i), \(\mathcal{L}_D\) is the standard binary cross-entropy on mention start/end logits, while for phase (ii), it is the marginal log-likelihood over gold antecedents [5].

Table 1: Coreference resolution results on four target languages (French, Hungarian, Romanian, Russian), measured with the official CoNLL-2012 scorer. Best score per language is highlighted in bold. Legend: base – Maverick trained on original target language data; ZS – zero-shot LLM (when no original training data is available); +MT – Maverick trained with translated examples; +\(\mathbf{s}^\mathbf{p}\) – Maverick trained with translated examples and cycle-consistent loss weighting. For reference, we report results on English with the base model.
Language\(\rightarrow\) English French Hungarian Romanian Russian
Method\(\rightarrow\) Base Base +MT +\(s^p\) Base +MT +\(s^p\) ZS +MT +\(s^p\) Base +MT +\(s^p\)
MUC P 95.0 85.2 85.5 89.3 87.3 87.5 88.9 70.1 86.2 87.8 95.5 95.6 95.9
R 95.7 82.3 83.4 88.0 88.9 89.5 90.8 66.0 84.8 86.5 95.8 96.2 96.5
F1 95.4 83.7 84.4 88.6 88.1 88.5 89.8 68.0 85.5 87.1 91.7 92.0 92.4
B\(^{3}\) P 88.1 80.8 80.2 85.6 84.2 84.2 85.4 65.8 81.5 83.2 92.1 92.0 92.3
R 91.7 79.0 80.6 85.4 89.3 90.2 91.2 62.4 80.9 82.4 93.5 94.0 94.3
F1 89.9 79.9 80.7 85.5 86.7 87.1 88.2 64.1 81.2 82.8 92.8 92.9 93.3
CEAF-E P 92.7 78.1 78.6 83.7 87.8 88.2 89.1 62.8 80.1 81.9 92.6 92.8 93.1
R 86.2 73.2 73.5 79.0 80.1 80.7 82.0 57.9 75.4 71.1 90.8 91.1 91.6
F1 89.4 75.6 76.0 81.3 83.8 84.2 85.4 60.2 77.7 79.4 91.7 92.0 92.4
CoNLL F1 91.6 79.7 80.4 85.1 86.2 86.5 87.8 64.1 81.5 83.1 93.4 93.6 94.0

3 Experiments↩︎

Datasets. For French, we use the ANCOR corpus [23], which contains 530 transcripts of spontaneous spoken French drawn from interviews, conversations, and oral surveys. For Hungarian, we use SzegedKoref [24], a dataset comprising 320 short editorial and news documents annotated for nominal coreference. For Russian, we use RuCor [25], a corpus formed of 180 texts covering news, scientific articles, blog posts and fiction. For French, Hungarian and Russian, where the native gold data is small or domain-restricted, we supplement the within-language training data with LLM-translated OntoNotes 5.0 documents to expand both volume and domain diversity. For data augmentation via MT, we choose OntoNotes 5.0 [16], [26] as the source English corpus, as it spans a broad range of genres: newswire, broadcast news, broadcast conversation, magazine, web text, telephone speech, and biblical text. For Romanian, no publicly available coreference dataset exists. We therefore construct a Romanian dataset entirely from English documents drawn from OntoNotes 5.0 [16], [26]. The documents are translated with Claude Sonnet 4.6, which is instructed to preserve annotations. Further, the corresponding Romanian test set is manually verified and corrected by a native Romanian speaker to ensure that translation, mention boundaries, and coreference links are correct.

Evaluation measures. Following [20], we employ three evaluation metrics, namely MUC [27], B\(^3\) [28], and CEAF-E (\(\phi_4\)-CEAF) [29]. For each of them, we report the precision (P), recall (R), and F1 scores. We also report the CoNLL F1 score, which is defined as the average F1 score of the MUC, B\(^3\) and CEAF-E metrics.

Hyperparameter setup. We train Maverick [20] using AdamW, with a learning rate of \(10^{-4}\) and a mini-batch size of \(16\). We use a gradient clipping of \(1.0\). We train using early stopping with a patience of \(20\) epochs, and select the best model via CoNLL F1 on validation data. All other hyperparameters are left to their default values. Our pipeline introduces a single extra hyperparameter into Maverick [20], namely the power \(p\) in Eq. 1 . We tune \(p\) on validation data for one language (French), considering values for \(p \in \{0.5, 1, 2, 3\}\). The optimal value \(p=3\) is kept across all languages to avoid overfitting in hyperparameter space.

Figure 2: Ablation of hyperparameter p, which controls the impact of loss weighting in Eq. 2 . Best viewed in color.

Results. For French, Hungarian and Russian, we compare three alternatives: a base Maverick model (trained on original within-language data), a Maverick model that benefits from MT data (trained on both original and translated data), and a Maverick model that benefits from MT data, but penalizes MT samples according to their cycle consistency (back-translation quality). For Romanian, there is no within-language data available, so we replace the base Maverick model with a zero-shot LLM (we use the same LLM as for MT, namely Claude Sonnet 4.6). In Table 1, we present comparative results across four low-resource languages. The results indicate that MT-based data augmentation is beneficial, especially for Romanian, where there are no available coreference resolution corpora. Furthermore, we observe additional performance gains when introducing cycle-consistent loss weighting. Here, the improvements stem primarily from higher precision on MUC and B\(^3\), suggesting that loss weighting based on \(s^p\) helps suppress spurious mentions introduced by translation artifacts.

Ablation of loss weighting hyperparameter. In Figure 2, we vary the hyperparameter \(p\) in Eq. 1 , considering values in the set \(\{0, 0.5, 1, 2, 3\}\). Note that \(p=0\) turns off the BERTScore weighting in Eq. 2 . The ablation of \(p\) is performed on the French dataset. The results show that higher values of \(p\) lead to better results, confirming that our cycle-consistent loss weighting is very useful. However, going from \(p=2\) to \(p=3\), we observe that the performance gains begin to saturate.

Table 2: BLEU vs. BERTScore comparison (in terms of CoNLL F1), as alternatives for the semantic similarity score \(s\) used in our cycle-consistent loss weighting, across all four target languages.
Method French Hungarian Romanian Russian
Base 79.7 86.2 64.1 93.4
+\(s^p\) (BLEU) 83.7 86.8 81.5 93.7
+\(s^p\) (BERTScore) 85.1 87.8 83.1 94.0

BERTScore vs. BLEU. In Table 2, we compare two alternatives to measure MT cycle consistency, namely BLEU [30] and BERTScore [19]. While both BLEU and BERTScore bring visible performance boosts across all four languages, BERTScore consistently outperforms BLEU. This is likely due to the fact that BLEU does not always capture semantic relations, such as synonymity.

4 Conclusion↩︎

We proposed a novel pipeline for coreference resolution in low-resource languages, which harnesses MT to augment existing datasets or generate new training data (for languages where CR resources were not previously available). We assessed MT cycle consistency and introduced it in the loss function of the CR model to modulate the importance of translated data samples accordingly. To validate our approach, we conducted CR experiments across five low-resource languages. Our results demonstrated that our pipeline leads to significant performance gains, and even enables CR in languages without existing resources. In future work, we aim to expand the list of low-resource languages.

Acknowledgments↩︎

This research is supported by the project “Romanian Hub for Artificial Intelligence - HRIA”, Smart Growth, Digitization and Financial Instruments Program, 2021-2027, MySMIS no. 351416. This work is also supported by a grant of the Ministry of Research, Innovation and Digitization, CCCDI - UEFISCDI, project number PN-IV-P6-6.3-SOL-2024-0090, within PNCDI IV.

5 Limitations↩︎

Our framework leverages the use of a highly capable LLM in the translation phase. While translated data is central to our framework, as it brings significant performance gains, LLM usage can also represent a downside of our framework, introducing some limitations, as detailed below.

First, LLMs are typically power-hungry models, having potentially negative effects on the environment due to their high energy consumption. As humanity will gradually move towards green energy production alternatives, the importance of the energy consumption problem of LLMs will diminish in the future. Moreover, we highlight that the translated data is meant to be reused multiple times to train and validate lighter models for coreference resolution. Hence, we limit LLM usage to the MT step, and refrain from fine-tuning LLMs for coreference resolution.

Second, potential biases of the LLM may eventually be transferred into the translated data, and later be inherited by the smaller coreference resolution model. We have manually inspected the translated examples and did not observe any age, gender, racial, or other kinds of biases. Nevertheless, our careful inspection does not completely exclude this possibility, especially for document genres and languages that are not included in our study.

6 Appendix↩︎

6.1 Translation Prompt↩︎

To translate English documents annotated with entity clusters for coreference resolution, we employ Claude Sonnet 4.6 [18]. The generic prompt used during translation from English to a target language <lang> is given in Table 3. In the prompt template, <lang> is replaced with one of target languages, namely French, Hungarian, Romanian and Russian. To translate documents back to English, we use a symmetric prompt. The employed prompt comprises precise rules, especially regarding the preservation of annotations, which are particularly important for the underlying CR task. We also exemplify the rules via an example, to further explain to the LLM how the translation should be performed.

Table 3: Prompt used for Claude Sonnet 4.6 [18] to translatedocuments annotated with coreference resolution clusters from English to alow-resource language <lang>, where <lang> is one of thefollowing four languages: French, Hungarian, Romanian, Russian. The output example is shown for Romanian.
[[N]]word[/N] marks a mention belonging to cluster N (an integer)
All mentions of the SAME entity share the SAME cluster ID
Markers can be nested: [[1]]the CEO of [[2]]Acme[/2][/1] YOUR TASK:
1.Translate the entire text to fluent, natural <lang>.
2.CRITICAL: every English mention [[N]]...[/N] MUST appear in the <lang> translation with the SAME cluster ID N, wrapping the <lang> equivalent of that mention.
3.Pronouns count as mentions. If “he” appears with ID 5 in English, the <lang> equivalent pronoun (or whichever inflected form fits) MUST also be marked [[5]]...[/5].
4.If a mention is dropped because <lang> doesn’t express it overtly (e.g.pro-drop subject), still emit empty markers [[N]][/N] at the dropped position to preserve the cluster.
5.Keep brackets balanced and properly nested. Every [[N]] MUST have a matching [/N].
6.Do NOT introduce new cluster IDs. Use only the IDs present in the English text.
7.Output ONLY the <lang> text with annotations. No explanations, no preamble, no markdown fences, just the annotated translation. EXAMPLE INPUT:
]John[/1] went to [[2]]the store[/2]. [[1]]He[/1] bought [[3]]milk[/3], and
]John[/1] told [[4]]his wife[/4] about [[3]]it[/3]. EXAMPLE OUTPUT:
]Ion[/1] s-a dus [[2]]la magazin[/2]. [[1]]El[/1] a cumpărat [[3]]lapte[/3],
iar [[1]]Ion[/1] i-a spus [[4]]soţiei sale[/4] despre [[3]]asta[/3]. NOW TRANSLATE THIS TEXT (output the <lang> translation with annotations only):
{english_text}

6.2 Compute Environment↩︎

We perform all our experiments on an academic compute environment, namely a workstation with a single Nvidia GeForce GTX 3090 GPU with 24 GB of VRAM. The reported results represent averages over three runs.

6.3 Romanian Data Annotation↩︎

The annotator employed to verify and correct the English\(\rightarrow\)Romanian translations is an adult who holds a master degree at a university located in Romania. The recruited annotator willingly agreed to engage in the annotation process, after agreeing to our terms and conditions. The authors provided accurate and complete instructions regarding the annotation task. The annotator was also given the LLM prompt. A fair compensation (25 EUR per hour) was paid to the annotator, upon completing the annotations. This is almost double the average wage in Romania (13.6 EUR per hour)1. The authors verified the manual annotations to confirm that the annotation task was carefully completed by the recruited annotator, according to the provided instructions.

6.4 Romanian Data License Agreement↩︎

The Romanian version of OntoNotes 5.0 will be released under the LDC User Agreement for Non-Members.

References↩︎

[1]
J. R. Hobbs, “Resolving pronoun references,” Lingua, vol. 44, no. 4, pp. 311–338, 1978, doi: https://doi.org/10.1016/0024-3841(78)90006-2.
[2]
V. Ng, “Supervised ranking for pronoun resolution: Some recent improvements,” in Proceedings of the AAAI conference on artificial intelligence (AAAI), 2005, pp. 1081–1086, [Online]. Available: https://cdn.aaai.org/AAAI/2005/AAAI05-171.pdf.
[3]
S. P. Ponzetto and M. Strube, “Exploiting semantic role labeling, WordNet and Wikipedia for coreference resolution,” in Proceedings of the human language technology conference of the NAACL (NAACL-HLT), 2006, pp. 192–199, [Online]. Available: https://aclanthology.org/N06-1025/.
[4]
K. Raghunathan et al., “A multi-pass sieve for coreference resolution,” in Proceedings of the 2010 conference on empirical methods in natural language processing (EMNLP), 2010, pp. 492–501, [Online]. Available: https://aclanthology.org/D10-1048/.
[5]
K. Lee, L. He, M. Lewis, and L. Zettlemoyer, “End-to-end neural coreference resolution,” in Proceedings of the 2017 conference on empirical methods in natural language processing (EMNLP), 2017, pp. 188–197, doi: 10.18653/v1/D17-1018.
[6]
M. Joshi, O. Levy, L. Zettlemoyer, and D. S. Weld, BERT for coreference resolution: Baselines and analysis,” in Proceedings of the 2019 conference on empirical methods in natural language processing and the 9th international joint conference on natural language processing (EMNLP-IJCNLP), 2019, pp. 5802–5807, [Online]. Available: https://aclanthology.org/D19-1588/.
[7]
J. Devlin, M.-W. Chang, K. Lee, and K. Toutanova, BERT: Pre-training of deep bidirectional transformers for language understanding,” in Proceedings of the 2019 conference of the north American chapter of the association for computational linguistics: Human language technologies (NAACL-HLT), 2019, pp. 4171–4186, doi: 10.18653/v1/N19-1423.
[8]
Y. Kirstain, O. Ram, and O. Levy, “Coreference resolution without span representations,” in Proceedings of the 59th annual meeting of the association for computational linguistics (ACL), 2021, pp. 14–19, doi: 10.18653/v1/2021.acl-short.3.
[9]
L. Xu and J. D. Choi, “Revealing the myth of higher-order inference in coreference resolution,” in Proceedings of the 2020 conference on empirical methods in natural language processing (EMNLP), Nov. 2020, pp. 8527–8533, doi: 10.18653/v1/2020.emnlp-main.686.
[10]
W. Zhang, S. Wiseman, and K. Stratos, “Seq2seq is all you need for coreference resolution,” in Proceedings of the 2023 conference on empirical methods in natural language processing (EMNLP), 2023, pp. 11493–11504, doi: 10.18653/v1/2023.emnlp-main.704.
[11]
G. Urbizu, A. Soraluze, and O. Arregi, “Sequence to sequence coreference resolution,” in Proceedings of the third workshop on computational models of reference, anaphora and coreference (CRAC), 2020, pp. 39–46, [Online]. Available: https://aclanthology.org/2020.crac-1.5.
[12]
T. Liu, Y. E. Jiang, N. Monath, R. Cotterell, and M. Sachan, “Autoregressive structured prediction with language models,” in Findings of the association for computational linguistics: EMNLP, Dec. 2022, pp. 993–1005, doi: 10.18653/v1/2022.findings-emnlp.70.
[13]
B. Bohnet, C. Alberti, and M. Collins, “Coreference resolution through a seq2seq transition-based system,” Transactions of the Association for Computational Linguistics, vol. 11, pp. 212–226, 2023, doi: 10.1162/tacl_a_00543.
[14]
M. Straka, ÚFAL CorPipe at CRAC 2023: Larger context improves multilingual coreference resolution,” in Proceedings of the CRAC 2023 shared task on multilingual coreference resolution (CRAC), 2023, pp. 41–51, doi: 10.18653/v1/2023.crac-sharedtask.4.
[15]
N. T. Le and A. Ritter, “Are large language models robust coreference resolvers?” in Proceedings of conference on language modeling (COLM), 2024, [Online]. Available: https://openreview.net/pdf?id=MmBQSNHKUl.
[16]
S. Pradhan, A. Moschitti, N. Xue, O. Uryupina, and Y. Zhang, CoNLL-2012 Shared Task: Modeling Multilingual Unrestricted Coreference in OntoNotes,” in Proceedings of joint conference on EMNLP and CoNLL - shared task, 2012, pp. 1–40, [Online]. Available: https://aclanthology.org/W12-4501/.
[17]
M. Novák et al., “Findings of the fourth shared task on multilingual coreference resolution: Can LLMs dethrone traditional approaches?” in Proceedings of the eighth workshop on computational models of reference, anaphora and coreference (CRAC), 2025, pp. 95–118, doi: 10.18653/v1/2025.crac-1.9.
[18]
Anthropic, “Claude sonnet 4.6 model card,” Anthropic, Technical Report, 2026. [Online]. Available: https://www-cdn.anthropic.com/bbd8ef16d70b7a1665f14f306ee88b53f686aa75.pdf.
[19]
T. Zhang, V. Kishore, F. Wu, K. Q. Weinberger, and Y. Artzi, BERTScore: Evaluating text generation with BERT,” in Proceedings of international conference on learning representations (ICLR), 2020, [Online]. Available: https://openreview.net/pdf?id=SkeHuCVFDr.
[20]
G. Martinelli, E. Barba, and R. Navigli, “Maverick: Efficient and accurate coreference resolution defying recent trends,” in Proceedings of the 62nd annual meeting of the association for computational linguistics (ACL), 2024, pp. 13380–13394, doi: 10.18653/v1/2024.acl-long.722.
[21]
P. He, J. Gao, and W. Chen, DeBERTaV3: Improving DeBERTa using ELECTRA-Style pre-training with gradient-disentangled embedding sharing,” in Proceedings of international conference on learning representations (ICLR), 2023, [Online]. Available: https://openreview.net/forum?id=sE7-XhLxHA.
[22]
M. Marone, O. Weller, W. Fleshman, E. Yang, D. Lawrie, and B. Van Durme, mmBERT: A modern multilingual encoder with annealed language learning,” arXiv preprint arXiv:2509.06888, 2025, [Online]. Available: https://arxiv.org/abs/2509.06888.
[23]
J. Muzerelle et al., ANCOR_Centre, a large free spoken French coreference corpus: Description of the resource and reliability measures,” in Proceedings of the 9th international conference on language resources and evaluation (LREC), 2014, pp. 843–847, [Online]. Available: https://aclanthology.org/L14-1169/.
[24]
V. Vincze, K. Hegedűs, A. Sliz-Nagy, and R. Farkas, SzegedKoref: A Hungarian coreference corpus,” in Proceedings of the 11th international conference on language resources and evaluation (LREC), 2018, pp. 401–405, [Online]. Available: http://www.lrec-conf.org/proceedings/lrec2018/pdf/325.pdf.
[25]
S. Toldova et al., RU-EVAL-2014: Evaluating anaphora and coreference resolution for Russian,” in Proceedings of the annual international conference on computational linguistics and intellectual technologies (dialogue), 2014, vol. 13, pp. 681–694, [Online]. Available: https://dialogue-conf.org/digests/dialog2014/materials/pdf/ToldovaSJu.pdf.
[26]
R. Weischedel, M. Palmer, M. Marcus, E. Hovy, S. Pradhan, et al., OntoNotes Release 5.0,” Linguistic Data Consortium, 2013. [Online]. Available: https://catalog.ldc.upenn.edu/LDC2013T19.
[27]
M. Vilain, J. Burger, J. Aberdeen, D. Connolly, and L. Hirschman, “A model-theoretic coreference scoring scheme,” in Sixth message understanding conference (MUC-6): Proceedings of a conference held in Columbia, 1995, pp. 45–52, [Online]. Available: https://aclanthology.org/M95-1005/.
[28]
A. Bagga and B. Baldwin, “Entity-based cross-document coreferencing using the vector space model,” in Proceedings of the 36th annual meeting of the association for computational linguistics and 17th international conference on computational linguistics (ACL-COLING), 1998, pp. 79–85, doi: 10.3115/980845.980859.
[29]
X. Luo, “On coreference resolution performance metrics,” in Proceedings of human language technology conference and conference on empirical methods in natural language processing (HLT-EMNLP), 2005, pp. 25–32, [Online]. Available: https://aclanthology.org/H05-1004/.
[30]
K. Papineni, S. Roukos, T. Ward, and W.-J. Zhu, Bleu: A method for automatic evaluation of machine translation,” in Proceedings of the 40th annual meeting of the association for computational linguistics (ACL), Jul. 2002, pp. 311–318, doi: 10.3115/1073083.1073135.

  1. https://www.romania-insider.com/eurostat-romanians-working-hours-salaries-april-2026↩︎