Sunday, September 6, 2026
Science
No Result
View All Result
  • Login
  • HOME
  • SCIENCE NEWS
  • CONTACT US
  • HOME
  • SCIENCE NEWS
  • CONTACT US
No Result
View All Result
Scienmag
No Result
View All Result
Home Science News Technology and Engineering

Joint source-target-context modeling improves metaphor sentiment analysis with new dataset

September 6, 2026
in Technology and Engineering
Denise Maddox
By Denise Maddox Scienmag Editorial Profile - Mechanical Engineering
Reading Time: 7 mins read
0
Joint source-target-context modeling improves metaphor sentiment analysis with new dataset

Joint source-target-context modeling improves metaphor sentiment analysis with new dataset

65
SHARES
587
VIEWS
Share on FacebookShare on Twitter
ADVERTISEMENT

Metaphor is everywhere in human language, and it is far more than decorative flourish. When someone describes a bargain as “a steal” or a grief as “a heavy weight,” the figurative framing does not merely dress up literal meaning—it actively amplifies emotion. Decades of psycholinguistic research have shown that metaphorical expressions tend to evoke stronger affective responses than their literal equivalents, yet the machines we build to read human text at scale still struggle to decode the feelings hidden inside figurative language. A new study published in the Journal of Intelligent Information Systems argues that the reason is structural: most computational systems analyze metaphors by looking at only fragments of the picture, when the emotional power of a metaphor actually emerges from the interplay of three elements at once.

The research, conducted by Changyong Niu, Hongde Liu, Senbin Zhu, Xingren Wang, Chenyuan He, and Yuxiang Jia of the School of Computer and Artificial Intelligence at Zhengzhou University in China, introduces a framework that jointly models the three core components of any metaphor: the source-domain word, the target-domain word, and the metaphorical context. In the classic structure of metaphor, the source is the concrete concept borrowed for comparison—say, “lion”—while the target is the abstract entity being described—say, “the general”—and the context is the surrounding text in which the mapping unfolds. Existing sentiment analysis models, the authors contend, typically focus on modeling only part of this triad, ignoring the interactions among the elements that determine whether “He is a lion in battle” conveys admiration or menace.

The team’s second criticism of prior work concerns the diversity of metaphor types themselves. Most computational metaphor research has been built around a single pattern of figurative mapping, which means models trained on one variety of metaphor often fail to generalize to others. A system tuned to noun-based metaphors may falter when the sentiment is carried by a verbal metaphor such as “the crisis swallowed the economy.” Because different metaphor types encode sentiment through different structural routes, a model that captures shared representations across types should, in principle, be more robust. Testing that hypothesis required data, and data was part of the problem: annotated resources that record not only the sentiment polarity of a metaphor but also its source, target, and type have been scarce, particularly for languages other than English.

To close that gap, the researchers constructed two new benchmark datasets. The first, named EMSA, is an English metaphor sentiment corpus; the second, CMSA, is its Chinese counterpart. Both datasets are annotated with the full complement of information the framework demands: the source-domain word, the target-domain word, the sentiment polarity of the expression, and the metaphor type. This rich labeling is what makes joint modeling possible in the first place, because a model cannot learn to weigh the interactions among source, target, and context unless training examples explicitly mark where each element begins and ends. The bilingual design also allows the team to probe whether their approach depends on the idiosyncrasies of one language or reflects something deeper about how figurative sentiment works.

On the modeling side, the researchers propose an architecture called MTCL-IT, which stands for Multi-Task Contrastive Learning combined with Instruction Tuning. The contrastive learning component is designed to sharpen the model’s internal representations by pulling together examples that share the same sentiment or metaphor structure while pushing apart those that differ. In a supervised contrastive setup, the model learns an embedding space in which semantically and emotionally similar metaphorical expressions cluster together, making the eventual classification decision easier and more reliable. Multi-task learning, meanwhile, allows the model to pursue several objectives simultaneously—identifying sentiment polarity, recognizing metaphor type, and grounding the source and target elements—so that the representations serving one task are enriched by the demands of the others.

The instruction tuning component brings the framework into the era of large language models. Rather than treating sentiment classification as a bare labeling problem, the approach reformulates the task as natural-language instructions, a strategy that has proven effective in related areas such as aspect-based sentiment analysis. The published work draws on a family of openly available language models in its experiments, including Llama-3.1-8B-Instruct, Qwen2.5, GLM-4, DeepSeek-V3, InternLM2.5, Flan-T5, and the BERT family of encoders, suggesting that the framework is designed to be backbone-agnostic: the three-element joint modeling philosophy can be layered onto different underlying architectures. Low-rank adaptation, a parameter-efficient fine-tuning technique known as LoRA, features among the tools used to adapt large models without retraining them from scratch.

The experimental results, the authors report, validate the framework from multiple perspectives. Across the English EMSA and Chinese CMSA datasets, the MTCL-IT model outperformed baselines in identifying the sentiment of metaphorical texts, and—perhaps more interestingly—the joint modeling approach revealed something about the pathway by which sentiment travels through a metaphor. By explicitly representing the source and target domains and their interaction with context, the model can trace how affective charge moves from the borrowed concept to the thing being described. When “steel” appears as a source domain, the model can register the connotations of hardness and resolve that the word carries, and observe how those connotations transfer to whatever target it modifies. This ability to expose the mechanism of sentiment transfer is a step beyond simple polarity prediction, moving toward genuine understanding of figurative language.

The dataset construction itself is methodologically noteworthy. The authors built the corpora using established procedures for linguistic metaphor identification, drawing on the widely cited MIP-style methodology developed by Gerard Steen and colleagues, and employed inter-annotator agreement measures rooted in Cohen’s kappa to verify that human labelers judged sentiment and metaphor structure consistently. Some of the annotation pipeline reflects the current moment in natural language processing: the study references human-LLM collaborative annotation, in which large language models propose labels that human annotators then verify, a hybrid strategy that has gained traction for reducing cost without sacrificing quality. The team’s broader research program also includes work on metaphor component identification using feedback-enhanced in-context learning, indicating that the new datasets and model are part of a sustained effort to make machines fluent in figurative language.

One of the more striking findings appears in an appendix analyzing sociological and cultural patterns in the Chinese CMSA dataset. The metaphors in that corpus predominantly involve mappings to the concept of “HUMAN,” and the choice of source-domain imagery differs sharply by gender. The male pronoun “He” is frequently associated with animal concepts—mouse, pig, eagle, snake, and lion—yielding both negative comparisons, such as calling someone as stupid as a pig, and positive ones, such as praising eyes as sharp as an eagle’s. The female pronoun “She,” by contrast, is overwhelmingly mapped to aesthetically charged imagery: angel, fairy, doll, sunshine, and flower. The distribution, the authors note, mirrors traditional cultural expectations in which male figures are associated with strength and competence while female figures are praised for beauty and kindness. That a sentiment analysis dataset can surface such patterns illustrates a broader point: computational models of figurative language are also instruments for studying culture, because the metaphors a community favors encode its values and biases.

The implications stretch well beyond linguistics departments. Sentiment analysis underpins real-world systems that monitor brand reputation, gauge public opinion during elections and public health crises, and detect distress in online communications. Metaphors saturate precisely the texts these systems read—social media posts, product reviews, political speeches—and research in marketing has already shown that metaphor-enabled sentiment analysis can change how consumer attitudes are measured. A model that misreads “this phone is a brick” as neutral commentary about construction materials will miscalculate customer satisfaction; one that understands the source-target mapping will correctly register frustration. The bilingual nature of the new resources matters too, since most figurative-language datasets have been English-only, and metaphor conventions vary across cultures in ways that a system trained solely on English data cannot capture.

The work also contributes to an ongoing debate about how large language models handle figurative meaning. Despite their fluency, LLMs remain brittle with metaphors, idiom, sarcasm, and other non-literal constructions, and a line of recent research has sought to scaffold metaphor reasoning with theory-guided prompts and chain-of-cognition prompting. The Zhengzhou team’s approach differs by insisting on structural completeness: rather than prompting a model to guess at the feeling of a sentence, they argue the model should first be given, or should learn to extract, the source, the target, and the context, and should be trained to weigh their interactions explicitly. The contrastive learning objective provides a complementary pressure, encouraging the model to organize metaphors in its embedding space according to the features that actually drive sentiment rather than surface similarity.

The paper passed through peer review quickly by the standards of the field—received in late March 2026, revised by mid-July, and accepted days later—before appearing in the journal in August 2026. The authors have released their data and code publicly through a GitHub repository, lowering the barrier for other groups to build on the datasets and to test the joint modeling framework against their own architectures. The work was supported by the Henan Provincial Science and Technology Research Project, a key program of the National Natural Science Foundation of China, and an open project of the Sichuan Provincial Key Laboratory of Philosophy and Social Science for Language Intelligence in Special Education.

Whether the three-element framework becomes a standard ingredient in sentiment systems remains to be seen, but the study makes a clear and testable claim: metaphorical sentiment is not a property of any single word or even of the sentence as an unanalyzed whole, but an emergent product of structured cross-domain mapping unfolding in context. Machines that ignore that structure will keep misreading the emotional temperature of human language—and as more of the world’s reading is done by algorithms, the cost of that misreading only grows.

Subject of Research: Joint computational modeling of source-domain, target-domain, and contextual elements for sentiment analysis of metaphorical language, including the MTCL-IT model and the new bilingual EMSA and CMSA datasets.

Subject of Research: Technology and Engineering

Article Title: Joint modeling of source, target, and context for metaphor sentiment analysis: Dataset and method

Article References: Niu, C., Liu, H., Zhu, S., Wang, X., He, C., & Jia, Y. (2026). Joint modeling of source, target, and context for metaphor sentiment analysis: Dataset and method. Journal of Intelligent Information Systems. https://doi.org/10.1007/s10844-026-01079-y

Image Credits: AI Generated

DOI: 10.1007/s10844-026-01079-y

Keywords: metaphor sentiment analysis, conceptual metaphor, multi-task contrastive learning, instruction tuning, source-target-context modeling, EMSA dataset, CMSA dataset, sentiment transfer, natural language processing, bilingual metaphor corpus, large language models, LoRA fine-tuning

Cite Scienmag News

Denise Maddox. (September 6, 2026). Joint source-target-context modeling improves metaphor sentiment analysis with new dataset. Scienmag. https://scienmag.com/joint-source-target-context-modeling-improves-metaphor-sentiment-analysis-with-new-dataset/

Denise Maddox. "Joint source-target-context modeling improves metaphor sentiment analysis with new dataset." Scienmag, 6 September 2026, https://scienmag.com/joint-source-target-context-modeling-improves-metaphor-sentiment-analysis-with-new-dataset/. Accessed 6 September 2026.

Denise Maddox. "Joint source-target-context modeling improves metaphor sentiment analysis with new dataset." Scienmag. September 6, 2026. https://scienmag.com/joint-source-target-context-modeling-improves-metaphor-sentiment-analysis-with-new-dataset/

Tags: affective response to figurative languageartificial intelligence in metaphor comprehensioncomputational metaphor understandingcontext-aware metaphor sentiment analysisemotion amplification in metaphorsemotion recognition in figurative expressionsfigurative language emotion detectionimproving metaphor comprehension in AIjoint source-target-context modelingMetaphor sentiment analysismetaphorical expression analysismetaphorical expression emotion amplificationmulti-component metaphor modelingmulti-element metaphor modelingnatural language processing of metaphorsnew dataset for metaphor analysisnew dataset for metaphor sentimentpsycholinguistic insights in AIpsycholinguistic insights into metaphors
Share26Tweet16
Previous Post

New q-Fractional Fuzzy Operators Improve Watershed Group Decision-Making

Next Post

Residual-enhanced contrastive learning improves knowledge-aware recommendation model

Related Posts

Residual-enhanced contrastive learning improves knowledge-aware recommendation model
Technology and Engineering

Residual-enhanced contrastive learning improves knowledge-aware recommendation model

September 6, 2026
New q-Fractional Fuzzy Operators Improve Watershed Group Decision-Making
Technology and Engineering

New q-Fractional Fuzzy Operators Improve Watershed Group Decision-Making

September 6, 2026
Multimodal Dynamic Adaptive Graph Network Improves Automatic Sleep Staging
Technology and Engineering

Multimodal Dynamic Adaptive Graph Network Improves Automatic Sleep Staging

September 6, 2026
What limits visual acuity in retinal implants despite electrode design
Technology and Engineering

What limits visual acuity in retinal implants despite electrode design

September 6, 2026
Fin-Ray-inspired soft gripper enables multi-robot manipulation of diverse objects
Technology and Engineering

Fin-Ray-inspired soft gripper enables multi-robot manipulation of diverse objects

September 5, 2026
Discrete element study of self-compacting concrete with lead-zinc tailings sand
Technology and Engineering

Discrete element study of self-compacting concrete with lead-zinc tailings sand

September 5, 2026
Next Post
Residual-enhanced contrastive learning improves knowledge-aware recommendation model

Residual-enhanced contrastive learning improves knowledge-aware recommendation model

  • Mothers who receive childcare support from maternal grandparents show more optimized

    Mothers who receive childcare support from maternal grandparents show more parental warmth, finds NTU Singapore study

    27656 shares
    Share 11059 Tweet 6912
  • University of Seville Breaks 120-Year-Old Mystery, Revises a Key Einstein Concept

    1061 shares
    Share 424 Tweet 265
  • Bee body mass, pathogens and local climate influence heat tolerance

    682 shares
    Share 273 Tweet 171
  • Researchers record first-ever images and data of a shark experiencing a boat strike

    546 shares
    Share 218 Tweet 137
  • Groundbreaking Clinical Trial Reveals Lubiprostone Enhances Kidney Function

    531 shares
    Share 212 Tweet 133
Science

Embark on a thrilling journey of discovery with Scienmag.com—your ultimate source for cutting-edge breakthroughs. Immerse yourself in a world where curiosity knows no limits and tomorrow’s possibilities become today’s reality!

RECENT NEWS

  • Residual-enhanced contrastive learning improves knowledge-aware recommendation model
  • Joint source-target-context modeling improves metaphor sentiment analysis with new dataset
  • New q-Fractional Fuzzy Operators Improve Watershed Group Decision-Making
  • Multimodal Dynamic Adaptive Graph Network Improves Automatic Sleep Staging

Categories

  • Agriculture
  • Anthropology
  • Archaeology
  • Athmospheric
  • Biology
  • Biotechnology
  • Blog
  • Bussines
  • Cancer
  • Chemistry
  • Climate
  • Earth Science
  • Editorial Policy
  • Marine
  • Mathematics
  • Medicine
  • Pediatry
  • Policy
  • Psychology & Psychiatry
  • Science Education
  • Social Science
  • Space
  • Technology and Engineering

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 5,151 other subscribers

© 2025 Scienmag - Science Magazine

Welcome Back!

Login to your account below

Forgotten Password?

Retrieve your password

Please enter your username or email address to reset your password.

Log In
No Result
View All Result
  • HOME
  • SCIENCE NEWS
  • CONTACT US

© 2025 Scienmag - Science Magazine

Discover more from Science

Subscribe now to keep reading and get access to the full archive.

Continue reading