A new artificial intelligence framework is redefining what machines can understand about opinion, promising to detect whether a statement written in any language supports or opposes any given target—even when the model has never seen that language or that target before. The system, called the Dual-Expert Collaborative Model, or DECM, was developed by researchers at Kunming University of Science and Technology in Yunnan, China, and is described in a study published in the International Journal of Machine Learning and Cybernetics. In benchmarks spanning multiple languages and controversial topics, DECM reached 77.05 percent accuracy in the hardest cross-lingual, cross-target setting, an absolute improvement of 11.33 percentage points over the previous best method, a gap large enough to signal a genuine shift in how stance detection might be built for the multilingual web.
Stance detection is the task of determining whether a piece of text, typically a social media post or news comment, expresses support for, opposition to, or neutrality toward a specific target such as a political figure, policy, or technology. It is deceptively difficult. Unlike sentiment analysis, which simply asks whether a statement is positive or negative, stance detection demands that the model reason about the relationship between the text and the target. A post reading “finally someone is talking about the climate crisis” is positive in tone but expresses support for climate activism and implicit criticism of prior inaction. Human readers resolve this instantly; machines have struggled for a decade, and the problem compounds when the text is written in a language the model was not trained on, or when the target is one the model never encountered during training.
The research team, led by Yan Xiang, Haoquan Luo, Yuxin Huang, Hongbin Wang, and Kai Zhang, identified two entangled bottlenecks that have constrained earlier systems. The first is cross-lingual feature misalignment: the same stance, expressed in English and in German, say, occupies different regions of a language model’s internal representation space, because word order, idioms, and cultural framing differ. The second is target representation inconsistency: targets vary wildly in distribution across training data, so a model trained heavily on debates about feminism and Hillary Clinton may fail when asked about nuclear energy. Crucially, the researchers observed, most existing methods model the text and the target independently, as separate streams of information that are combined only at the end. But stance is not a property of the text alone or the target alone; it emerges from their interaction. A sentence praising “change” is meaningless as a stance until one knows whether the target is a reform candidate or the status quo.
DECM tackles both problems with an architecture built around three cooperating components. The first is a Cross-Lingual Expert Module, which fine-tunes multilingual BERT—mBERT, a transformer model pretrained on text from more than one hundred languages—using prompt-enhanced training. Rather than simply feeding raw text into the encoder, the module wraps the input in carefully designed prompt templates that reframe stance detection as a form the pretrained model already understands, a technique known to transfer knowledge efficiently when labeled data is scarce. During fine-tuning, the module applies cross-lingual consistency constraints: it forces the model to produce the same stance prediction for semantically equivalent inputs in different languages, effectively pulling the stance semantics of, say, a Spanish post and its English counterpart into alignment within the representation space. This consistency pressure acts as a regularizer, preventing the model from learning language-specific shortcuts that would fail on unseen tongues.
The second component, a Cross-Target Expert Module, confronts target heterogeneity head-on. Instead of encoding the text and the target separately, it performs joint text-target encoding, letting each shape the other’s representation from the earliest layers. It then applies contrastive representation clustering, a learning strategy in which examples that share the same stance toward comparable targets are drawn together in the embedding space while dissimilar pairs are pushed apart. The effect is to disentangle the stance-relevant characteristics of a target—the features that genuinely determine whether support or opposition is expressed—from superficial attributes such as how frequently a target appears in the training set. Feature space optimization further reshapes these embeddings so that the boundaries between stances generalize across targets the model has never seen, which is the essence of the cross-target problem.
The third component, the Collaborative Adaptation Module, is where the two experts pool their knowledge. Working on unlabeled data in the target language, the module uses pseudolabel propagation: high-confidence predictions are treated as soft labels and spread across neighboring examples in the representation space, allowing the model to bootstrap supervision from data no human has annotated. Predictions from the two expert modules are then combined through confidence-weighted aggregation, so that when the cross-lingual expert is more certain about a given example its vote counts more heavily, and vice versa. A final stage of unsupervised contrastive representation refinement continues to sharpen the shared embedding space on unlabeled target-language data. The overall design resembles a council of two specialists—a linguist and a domain analyst—whose judgments are weighted by expertise and refined through discussion, rather than a single monolithic model forced to master both problems at once.
The empirical results are striking. Across multiple cross-lingual and cross-target stance detection benchmarks, DECM outperformed a battery of baseline methods, including prior state-of-the-art systems built on knowledge distillation and target-oriented relation alignment. In the most demanding scenario, where both the language and the target differ between training and testing, the model achieved 77.05 percent accuracy—an 11.33 percent absolute gain over the previous best system, CCSD. Ablation studies, in which individual components were removed one at a time, confirmed that each of the three modules contributes measurably: stripping out the cross-lingual consistency constraints, the joint encoding, or the pseudolabel propagation each produced significant drops. The ablations also revealed that DECM is particularly effective in low-resource scenarios, where labeled examples in the target language are scarce or nonexistent, and that it generalizes to languages and targets never encountered during training.
To appreciate why this matters, one has to look at the trajectory of the field. Stance detection research accelerated after the 2016 SemEval competitions, which established standard datasets built around five targets, and subsequent work explored bidirectional conditional encoding, target-specific attention networks, and commonsense knowledge graphs. Cross-lingual approaches borrowed techniques from machine translation and cross-lingual distillation, while cross-target approaches imported transfer learning methods from sentiment analysis. But these two research threads mostly evolved in parallel. Methods that aligned languages assumed targets were fixed; methods that transferred across targets assumed a shared language. The compound problem—new language and new target simultaneously—was long treated as a second-order challenge, and models that performed well on one axis collapsed on both. DECM is among the first frameworks to treat the two adaptations as a single, unified optimization, with an architecture designed from the ground up for their interaction.
The timing is significant. Public opinion now flows across borders at the speed of the platforms that host it. A misinformation campaign seeded in one language can migrate into a dozen others within hours; an emergent political movement, a vaccine controversy, or a new technology debate will generate passionate commentary in languages that no stance detection system has labeled training data for, about targets that did not exist when the system was built. Multimodal and multilingual social media analysis, election monitoring, public health surveillance, and content moderation all depend on the ability to read stance at scale and in the wild. A model that can only operate on English posts about well-known targets is, for these purposes, a model that works on a shrinking fraction of the world’s discourse. The DECM results suggest that carefully engineered transfer—combining prompt-based fine-tuning, contrastive alignment, and self-training on unlabeled data—can close much of that gap without requiring expensive annotation in every language and on every topic.
The researchers were forthcoming about the foundations of the work. The system builds on multilingual BERT and related pretrained language models, and the team credits earlier advances in contrastive learning and knowledge transfer for the conceptual tools that made the dual-expert design possible. The work was supported by the National Natural Science Foundation of China, the Key Basic Research Projects of Yunnan Province, and several other regional and national programs, and the authors note that no new datasets were generated or analyzed in the study, with experiments conducted on existing public benchmarks. The corresponding author is Hongbin Wang of the School of Information Engineering and Automation at Kunming University of Science and Technology.
What comes next is likely to be contested terrain. Large language models, including systems like Qwen2.5, have begun to demonstrate impressive zero-shot reasoning about stance, and some recent frameworks elicit knowledge from them rather than training specialized detectors. Yet specialized architectures like DECM retain advantages in efficiency, controllability, and verifiable behavior—properties that matter when such systems are deployed for monitoring and moderation. The Chinese team’s results suggest a hybrid future in which the representational power of pretrained multilingual encoders is harnessed by task-specific structures that enforce exactly the consistencies a deployment demands: consistency across languages, consistency across targets, and consistency in how text and target are understood together. If stance is indeed a joint property of what is said and what it is about, then the machines that read public opinion may finally be learning to listen the way people do—simultaneously to the words and to their object, in any language, on any subject, whether or not they have heard it before.
Cite Scienmag News
Blake Davidson. (September 9, 2026). New dual-expert model detects stance across languages and targets. Scienmag. https://scienmag.com/new-dual-expert-model-detects-stance-across-languages-and-targets/
Blake Davidson. "New dual-expert model detects stance across languages and targets." Scienmag, 9 September 2026, https://scienmag.com/new-dual-expert-model-detects-stance-across-languages-and-targets/. Accessed 9 September 2026.
Blake Davidson. "New dual-expert model detects stance across languages and targets." Scienmag. September 9, 2026. https://scienmag.com/new-dual-expert-model-detects-stance-across-languages-and-targets/

