Token Titans at BEA 2026 Shared Task 1: Multilingual Lexical Complexity Prediction via Fine-Tuned XLM-RoBERTa with Ensemble Decoding

· Source: Paper Index on ACL Anthology · Field: Technology & Digital — Artificial Intelligence & Machine Learning, Data Science & Analytics · Depth: Expert, quick

Summary

The "Token Titans" team presented a system for the BEA 2026 Shared Task on Multilingual Lexical Complexity Prediction, leveraging fine-tuned XLM-RoBERTa Large models. Their methodology involved training separate models for Spanish, German, and Chinese. For each prediction, the system processes an input formed by a flat concatenation of the source word, its surrounding sentential context, an English clue, and the English target word. The training regimen applied z-score label normalization and employed two independent runs, each configured with different learning rates, schedulers, and random seeds. A weighted ensemble of these two runs' predictions, using a 0.6/0.4 ratio, consistently reduced variance on the validation set. This ensemble approach ultimately yielded strong performance on the official test set, scoring an RMSE of 1.170 and a Pearson correlation of 0.812.

Key takeaway

For NLP Engineers developing multilingual text simplification or readability tools, consider adopting a fine-tuned XLM-RoBERTa Large architecture. Your models should be trained separately for each target language to optimize performance. Implementing a weighted ensemble decoding strategy, like the 0.6/0.4 split used here, can significantly reduce prediction variance and improve robustness, leading to more reliable lexical complexity assessments in your applications.

Key insights

Fine-tuning XLM-RoBERTa with ensemble decoding improves multilingual lexical complexity prediction.

Principles

Method

The system fine-tunes XLM-RoBERTa Large per language, concatenating word, context, and English clues. It uses z-score normalization and a 0.6/0.4 weighted ensemble of two runs.

In practice

Topics

Best for: Research Scientist, AI Scientist, NLP Engineer

Related on AIssential

Open in AIssential →

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