每天早上一封邮件,把昨天的 AI 梳理好订阅邮件

METAL LAB

NepOOC-M: Bilingual Nepali-English Benchmark and Comparative Analysis of Multimodal Architectures for OOC Detection

arXiv:2608.192122026-08-21

尼泊尔语假新闻检测:只看文字就能追平图文结合模型

研究团队首次为尼泊尔语构建了一个用于检测断章取义式虚假信息的公开基准数据集,这类虚假信息用真实照片配上误导性文字来编造虚假叙事。团队比较了五种图文结合模型与纯文本、纯图像模型,结果发现只用文字的mBERT模型与表现最好的图文结合模型在统计上完全等效,而只用图像的模型准确率接近随机猜测。这说明在当前数据规模下,文字说明本身已包含足够的判别信息。

他们做了什么

  1. 团队从尼泊尔真实的虚假信息事件中收集了545组独特的图片来源,每组都配有一条真实说明和一条虚假说明,共1090条图文对,并按五种类型标注:捏造事实、说明错误、时间错位、地理错位、身份错位
  2. 两名标注员独立标注后一致性达到kappa 0.84,说明标注质量可靠
  3. 研究者训练了五种不同的图文结合模型(结合ResNet-50、ViT等图像识别模型与mBERT、MuRIL等多语言文本理解模型),并设置了纯文本和纯图像的对照模型进行系统比较
  4. 表现最好的图文结合模型(ResNet-50+mBERT)与纯文本的mBERT模型都达到94.65%的Macro-F1分数,McNemar统计检验进一步证实两者几乎犯同样的错误,而非互补
  5. 纯图像模型的准确率只有33%到50%,接近随机猜测水平;同时扩大训练数据规模带来的性能提升,比让模型结构变得更复杂更加直接有效
Figure 1: Representative pristine and OOC pairs across five typologies. Red boxes highlight manipulated phrases.
Figure 1: Representative pristine and OOC pairs across five typologies. Red boxes highlight manipulated phrases.
TABLE I: Benchmark comparison. Y=Yes, N=No. Typol.=typology labels; Multi.=multilingual; Low-Res.=low-resource.
BenchmarkOOCTypol.Multi.Low-Res.Size
NewsCLIPpings [2]YNNN71k
COSMOS [3]YNNN200k
VERITE [4]YNPartialN1k
MuMiN [6]NNYPartial22k
NepOOC (ours)YYYY1,090
Figure 2: Data collection and annotation pipeline: acquisition, verification, annotation, and benchmark output.
Figure 2: Data collection and annotation pipeline: acquisition, verification, annotation, and benchmark output.
TABLE II: Source distribution (n=545 unique images).
Source TypeCount%
Fact-checking organisations46986.1%
Social media archives499.0%
Online news portals275.0%
Total545100.0%
Figure 3: Five multimodal architectures organised by visual encoder, text encoder, and fusion mechanism. Double border indicates the best-performing multimodal model (ResNet-50+mBERT; 94.65% Macro-F1).
Figure 3: Five multimodal architectures organised by visual encoder, text encoder, and fusion mechanism. Double border indicates the best-performing multimodal model (ResNet-50+mBERT; 94.65% Macro-F1).
TABLE III: Typology distribution (n=545 OOC samples).
TypologyCount% of OOC
Fabricated29954.9%
Miscaptioned13625.0%
Temporal mismatch5610.3%
Geographic mismatch448.1%
Identity mismatch101.8%
Total OOC545100.0%
Figure 4: Macro-F1 vs. training fraction with standard deviation bands over 5 seeds.
Figure 4: Macro-F1 vs. training fraction with standard deviation bands over 5 seeds.
TABLE IV: Dataset statistics.
AttributeCategoryCount (%)
LabelPristine545 (50.0%)
OOC545 (50.0%)
LanguageNepali856 (78.5%)
English158 (14.5%)
Code-switched76 0(7.0%)
SplitTrain754 (69.2%)
Validation108 0(9.9%)
Test228 (20.9%)
Typology IAA (Cohen’s κ)0.84
Binary IAA, non-FC (Cohen’s κ)0.81
Figure 5: Precision–Recall and ROC curves for all five models on test split (n=228), best seed per model.
Figure 5: Precision–Recall and ROC curves for all five models on test split (n=228), best seed per model.
TABLE V: Leakage validation: Δ=Accrandom−Acccluster (mean over 5 seeds). All |Δ|<1% indicates no leakage.
ModelTypeΔ (%)Status
mBERTText-only+0.66Clean
CNN+LSTMMultimodal−0.39Clean
ViT+TCNMultimodal+0.70Clean
ResNet-50+mBERTMultimodal−0.66Clean
ViT+MuRILMultimodal+0.48Clean
TABLE VI: Architecture specifications. VE=visual encoder, TE=text encoder, Params=trainable parameters.
ModelVETEFusionTE VocabParams
CNN+LSTM5-layer CNN (512)LSTM (256/dir)Late concat119k∼16M
ViT+TCNViT-B/16 (frozen)TCN (3 blocks)Cross-attention119k∼90M
ResNet-50+mBERTResNet-50 (2048→768)mBERT (768)Late concat119k134M
CLIPViT-B/32 (frozen)CLIP BPE (frozen)Similarity head49k∼10M (head)
ViT+MuRILViT-B/16 (frozen)MuRIL+LoRA (r=8)Cross-attention197k∼2.5M (LoRA)
TABLE VII: Training configuration. LR=learning rate, WD=weight decay, BS=batch size, EP=epochs, Pat.=early-stopping patience. †Adaptive LR: 1​e−4 at ≤50%, 5​e−5 at >50%. ‡StepLR: step 10, γ=0.5.
ModelOpt.LRWDBSEPPat.Sched.
CNN+LSTMAdam1​e−41​e−5328010StepLR‡
ViT+TCNAdamW5​e−51​e−43210010Cos+WU
ResNet +mBERTAdamWvis: 1​e−4 txt: 2​e−51​e−4325010Cos+WU
CLIPAdamW0.05810012
ViT+MuRILAdamW0.05810012Cos+WU
TABLE VIII: Main results on test split (n=228, mean±std over 5 seeds).
ModelTypeAcc. (%)Macro-F1 (%)AUC
mBERTText-only94.65±0.2094.65±0.200.9697±0.0126
MuRILText-only94.38±0.3594.38±0.350.9567±0.0158
ResNet-50+mBERTMultimodal94.65±0.2094.65±0.200.9662±0.0142
ViT+MuRILMultimodal93.33±0.3793.33±0.370.9505±0.0057
ViT+TCNMultimodal92.11±1.3592.10±1.360.9616±0.0064
CNN+LSTMMultimodal78.16±10.9778.15±10.970.8548±0.1203
CLIPMultimodal69.39±0.7269.00±0.720.7127±0.0028
TABLE IX: McNemar’s test with Yates correction (α=0.05). See text (§5.1) for comparison pairs and discordant counts.
Model AModel BSeedDisc.bcχ2pSig.
text-only mBERTResNet-50+mBERT0421010.0001.000×
1230000.0001.000×
4560000.0001.000×
7892200.5000.480×
20240000.0001.000×
Summary0.6 meanmedian p=1.000; 0/5 sig.
ViT+MuRILResNet-50+mBERT0421010.0001.000×
1230000.0001.000×
4563120.0001.000×
7891010.0001.000×
20245053.2000.074×
Summary2.0 meanmedian p=1.000; 0/5 sig.
text-only MuRILtext-only mBERT0422110.5000.480×
1233120.0001.000×
4560000.0001.000×
7895053.2000.074×
20241010.0001.000×
Summary2.2 meanmedian p=1.000; 0/5 sig.
TABLE X: OOC-class metrics at 100% training data (mean±std over 5 seeds).
ModelMacro-F1 (%)OOC Prec. (%)OOC Rec. (%)OOC F1 (%)
CNN+LSTM78.15±10.9779.23±11.2776.32±11.4277.72±11.19
ViT+TCN92.10±1.3692.20±2.8192.11±1.9692.11±1.24
CLIP69.00±0.7274.97±1.3458.25±1.3365.54±0.87
ResNet-50+mBERT94.65±0.2095.37±0.3893.86±0.00†94.61±0.19
ViT+MuRIL93.33±0.3794.14±1.2292.46±1.7193.27±0.43
TABLE XI: Scaling results: Macro-F1 (mean±std over 5 seeds per fraction).
Model25%50%75%100%
CNN+LSTM55.22±4.8061.65±4.9967.67±9.5178.15±10.97
ViT+TCN69.25±11.3189.12±1.0590.87±2.5792.10±1.36
CLIP62.01±1.2563.45±2.2766.14±1.4269.00±0.72
ResNet-50+mBERT93.15±0.9193.77±1.1094.38±0.7994.65±0.20
ViT+MuRIL90.61±0.6792.72±0.6793.33±0.7293.33±0.37
TABLE XII: Modality ablation: Macro-F1 at 100% training data (mean±std over 5 seeds).
ModelText-only (%)Image-only (%)Multimodal (%)
CNN+LSTM74.91±16.8049.80±0.2778.15±10.97
ViT+TCN90.87±1.8033.33±0.0092.10±1.36
CLIP67.48±1.0649.20±0.4869.00±0.72
ResNet+mBERT94.65±0.2049.00±0.9694.65±0.20
ViT+MuRIL93.95±0.8449.83±0.1893.33±0.37
TABLE XIII: Per-seed mean confusion matrices on test split (n=228; 114 Pristine, 114 OOC).
ModelActualPred: PristinePred: OOC
CNN+LSTMPristine91.222.8
OOC27.087.0
ViT+TCNPristine105.09.0
OOC9.0105.0
CLIPPristine91.822.2
OOC47.666.4
ResNet-50+mBERTPristine108.85.2
OOC7.0107.0
ViT+MuRILPristine107.46.6
OOC8.6105.4
TABLE XIV: Per-typology OOC Macro-F1 at 100% training data (mean±std over 5 seeds). n=OOC test instances per typology.
TypologynCNN+LSTMViT+TCNCLIPResNet-50+mBERTViT+MuRIL
Fabricated6283.93±7.5796.14±0.9974.49±1.0695.80±1.0095.97±0.39
Miscaptioned2887.92±8.9295.09±2.2368.53±1.7098.18±0.00†95.89±1.37
Other Mismatches‡2489.01±9.5091.43±4.2174.81±4.4297.79±0.00†96.38±3.16

为什么重要

此前的虚假信息检测研究几乎都集中在英语场景,尼泊尔语这样的资源匮乏语言此前没有公开的评测基准,这项工作填补了这一空白并开源了数据和代码。它还挑战了图文结合模型一定优于纯文本模型的普遍假设,提醒研究者在资源有限的语言场景中评测多模态模型时,必须把纯文本基线作为重要对照。

本文术语

  • 断章取义式虚假信息(OOC) · 不篡改图片本身,而是给真实图片配上误导性文字说明来制造虚假叙事的一种造假方式
  • mBERT · 在104种语言的文本上预训练的多语言语言模型,这里用来理解图片说明文字
  • ResNet-50 · 一种广泛用于提取图像特征的卷积神经网络结构
  • Macro-F1 · 对真实和虚假两个类别的精确率与召回率进行平均计算得到的综合性能指标
  • McNemar检验 · 一种统计方法,用来判断两个分类模型的正确与错误预测模式是否存在显著差异
  • 科恩卡帕系数(Cohen's kappa) · 衡量多名标注者标注结果一致程度、并排除偶然因素影响的统计指标

论文原文摘要(英文)

Out-of-context (OOC) misinformation pairs authentic images with misleading captions to construct false narratives without image manipulation, making detection a problem of multimodal alignment rather than image forensics. Despite the prevalence and consequences of OOC misinformation in Nepal, no public benchmark exists for Nepali. We introduce NepOOC, the first publicly available Nepali-dominant multilingual OOC benchmark, comprising 1,090 image-caption pairs (545 pristine, 545 OOC) annotated across five typologies (fabricated, miscaptioned, temporal mismatch, geographic mismatch, identity mismatch) with inter-annotator agreement kappa = 0.84. Systematic evaluation of five multimodal architectures alongside text-only and image-only baselines reveals that caption semantics appear sufficient for strong performance at the current dataset scale. A text-only mBERT model achieves 94.65+/-0.20% Macro-F1, statistically equivalent to the best multimodal system (ResNet-50+mBERT, 94.65+/-0.20%; McNemar median p = 1.000, 0/5 seeds significant at alpha = 0.05). Image-only models perform near chance (33-50%), while training-size scaling suggests that dataset expansion is a more direct path to progress than architectural sophistication or regional specialisation.

作者 · Sanjeev Khatiwada

在 arXiv 阅读

最新论文

全部论文 →

METAL LAB 最新报道

图片来源: Sanjeev Khatiwada et al., arXiv:2608.19212, CC BY 4.0