매일 아침, 어제의 AI를 한 통으로 정리해 보내드립니다메일로 받아보기

METAL LAB

Dynamic Gated Cross-Modal Fusion with Sarcastic-aware Contrastive Regularization for Multimodal Sarcasm Detection

arXiv:2608.199422026-08-21

텍스트와 이미지가 겉으로는 잘 맞아도 속뜻이 어긋나면 비꼬는 말이다, AI가 그 함정을 잡아낸다

글과 사진을 함께 올리는 SNS 게시물에서 비꼼(풍자)을 감지하는 AI는 표면적으로 말과 그림이 잘 어울려 보여도 실제로는 반대 의미를 담고 있는 경우를 놓치기 쉬웠다. 이 연구는 텍스트와 이미지 중 어느 쪽이 더 결정적인 단서인지 게시물마다 다르게 판단하는 장치와, 겉보기 일치가 오히려 함정임을 학습시키는 대조 학습 기법을 결합한 프레임워크를 제안한다. MMSD와 MMSD2.0이라는 두 벤치마크 실험에서 기존 강력한 비교 모델들보다 꾸준히 높은 성능을 보였다.

무엇을 했나

  1. 게시물마다 텍스트와 이미지 중 어느 것이 비꼼의 핵심 단서인지 다르다는 점에 착안해, 두 모달리티(정보 형태) 정보를 양방향으로 걸러내고 사례별로 비중을 다르게 조절하는 '동적 게이트 융합' 모듈을 만들었다
  2. 비꼬는 게시물은 말과 그림이 표면적으로는 잘 맞아 보이지만 속뜻은 반대인 경우가 많다는 점을 노려, 비꼼이 아닌 경우에는 텍스트-이미지 유사도를 높이고 비꼼인 경우에는 그 유사도를 억누르는 'SaCR'이라는 대조 정규화 기법을 도입했다
  3. CLIP이라는 사전학습 비전-언어 모델로 텍스트와 이미지 특징을 뽑은 뒤, 값(value) 단계에서 게이트를 걸어 불필요하거나 오도하는 신호를 거르는 양방향 교차 주의(attention) 메커니즘을 적용했다
  4. 최종 분류 손실, 텍스트/이미지 단일 모달 보조 분류 손실, SaCR 대조 손실을 한꺼번에 최적화하는 다중 목표 학습으로 전체 모델을 엔드투엔드 학습시켰다
  5. MMSD와 MMSD2.0 두 데이터셋에서 강력한 비교 모델들 대비 F1 점수가 가장 높았고, 구성 요소를 하나씩 제거하는 실험에서 교차 모달 상호작용과 동적 융합 게이트를 제거했을 때 성능 저하가 가장 컸다
Fig. 1: Illustrative examples of surface-level consistency masking underlying incongruity in multimodal sarcasm. (a) The text ”fun” and the hospital setting are semantically compatible but sentimentally contradictory. (b) The text ”no Jesus” and the cup image share a literal subject, yet convey ironic intent. Our method aims to capture such hidden incongruity beyond literal alignment.
Fig. 1: Illustrative examples of surface-level consistency masking underlying incongruity in multimodal sarcasm. (a) The text ”fun” and the hospital setting are semantically compatible but sentimentally contradictory. (b) The text ”no Jesus” and the cup image share a literal subject, yet convey ironic intent. Our method aims to capture such hidden incongruity beyond literal alignment.
TABLE I: Statistics of MMSD and MMSD2.0 datasets
DatasetSplitTotalSarcasticNon-sarcastic
MMSDTrain19,8168,64211,174
Val2,4109591,451
Test2,4099591,450
MMSD2.0Train19,8169,57610,240
Val2,4101,0421,368
Test2,4091,0371,372
Fig. 2: Illustration of the proposed framework for multimodal sarcasm detection
Fig. 2: Illustration of the proposed framework for multimodal sarcasm detection
TABLE II: Performance of selected baselines and our method(%).
ModalityMethodMMSDMMSD2.0
Acc.%P%R%F1%Acc.%P%R%F1%
TextTextCNN80.0374.2976.3975.3271.6164.6275.2269.52
SMSD80.9076.4675.1875.8273.5668.4571.5569.97
BERT83.6078.5082.5180.4576.5274.4873.0973.91
ImageResNet64.7654.4170.8061.5365.5061.1754.3957.58
ViT67.8357.9370.0763.4072.0265.2674.8369.72
MultimodalDIP89.5987.7686.5887.1780.9678.0277.5677.79
Multi-view CLIP88.3382.6688.6585.5585.6480.3388.2484.10
MoBA88.9682.8488.1285.4085.8380.4288.6784.34
G2SAM90.4887.9589.0288.4879.4372.0478.0778.07
TFCD89.5784.8389.4388.1386.5482.4687.9584.31
DGLF89.4385.8189.2787.5186.8281.9089.8585.69
LLaVA+RAG89.9789.2689.5889.4286.4387.0086.3086.34
ESAM90.1186.8789.5488.1985.8783.1286.0584.56
GPT-5.4 (zeroshot)71.0576.5175.5071.0172.8578.7975.7872.55
Ours92.6291.9692.8292.3389.6689.3689.7489.51
Fig. 3: Example of case study and visualization.
Fig. 3: Example of case study and visualization.
TABLE III: Experiment results of ablation study (%).
VariantMMSDMMSD2.0
Acc.%F1%Acc.%F1%
Full92.6292.3389.6689.36
w/o CMI87.9187.4285.1084.97
w/o BiXAtt (only v→t)87.4887.0381.8681.70
w/o BiXAtt (only t→v)81.8481.0780.5380.37
w/o VGate92.0891.7788.7188.59
w/o DFGate90.3589.8088.3488.28
w/o SaCR91.2891.0088.5488.49
w/o UniAux91.3190.9289.1689.03

왜 중요한가

온라인 게시물의 감정과 의도를 정확히 파악하려는 서비스(콘텐츠 조정, 여론 분석, 챗봇 응답 등)에서 비꼼을 놓치면 정반대로 해석하는 오류가 생길 수 있어, 이런 함정을 구조적으로 다루는 방법론은 실무 적용 가치가 크다. 또한 텍스트와 이미지가 겉보기엔 어울려도 실제 의미는 어긋날 수 있다는 통찰은 비꼼 탐지를 넘어 다른 멀티모달 이해 문제에도 참고가 될 수 있다.

이 논문의 용어

  • 멀티모달 풍자 탐지(MSD) · 텍스트와 이미지처럼 서로 다른 형태의 정보를 함께 보고 비꼬는 의도를 찾아내는 작업
  • CLIP · 텍스트와 이미지를 같은 공간에서 비교할 수 있게 사전학습된 비전-언어 모델
  • 게이트(gate) · 신호를 얼마나 통과시킬지 0~1 사이 값으로 조절하는 학습 가능한 장치
  • 대조 학습(contrastive regularization) · 비슷한 것끼리는 가깝게, 다른 것끼리는 멀게 표현을 학습시키는 보조 학습 방식
  • Grad-CAM · 모델이 이미지의 어느 부분을 근거로 판단했는지 시각적으로 보여주는 기법

논문 원문 초록 (영문)

Multimodal sarcasm detection aims to identify sarcastic intent from multimodal content, where inconsistencies between literal meaning and contextual cues often signal irony. This task has attracted increasing research attention. However, accurate detection remains challenging due to instance-dependent modality contributions and misleading semantic consistency, where surface-level alignment masks underlying contradictory intent. Existing methods often rely on fixed fusion strategies and treat sarcasm as generic cross-modal mismatch, limiting their ability to capture subtle sarcasm cues and instance-specific modality interactions. To address these challenges, we propose a novel MSD framework that integrates Dynamic Gated Cross-Modal Fusion with Sarcastic-aware Contrastive Regularization (SaCR). Specifically, a bidirectional gated interaction module performs cross-modal feature filtering and adaptively calibrates textual and visual contributions at the instance level. A dynamic fusion gate further balances modality importance to generate more robust multimodal representations. Furthermore, SaCR is introduced as a label-aware contrastive regularization objective that encourages semantic consistency for non-sarcastic samples while suppressing misleading consistency in sarcastic cases. The proposed framework is trained end-to-end with a multi-objective learning strategy that jointly optimizes multimodal classification and auxiliary unimodal supervision. Extensive experiments on MMSD and MMSD2.0 demonstrate that the proposed method consistently outperforms strong baselines.

저자 · Hao Guo, Subin Huang, Junjie Chen, Zhifa Geng, Sanmin Liu, Chao Kong

arXiv에서 원문 보기

최신 논문

논문 전체 보기 →

METAL LAB 최신 기사

그림 출처: Hao Guo et al., arXiv:2608.19942, arxiv-nonexclusive