CoolFace
Datasetpublic

MTSAIR/MWS-Antifraud-Bench

MWS Antifraud Bench (Validation) Experimental document-authenticity task for general-purpose multimodal language models. This is the public validation part of MWS Vision Bench anti-fraud v0.1. The dataset is released for research and model comparison. It is not a certification tool, a production fraud-detection system, or a universal leaderboard that is expected to be resistant to deliberate optimization. Data The validation split contains 209 items: 44 ai_gen;… See the full description on the dataset page: https://huggingface.co/datasets/MTSAIR/MWS-Antifraud-Bench.

sourceHugging Faceotherupdated 2mo agoView on Hugging Face
0likes300downloads
Dataset Card

MWS Antifraud Bench (Validation)

Experimental document-authenticity task for general-purpose multimodal language models. This is the public validation part of MWS Vision Bench anti-fraud v0.1.

The dataset is released for research and model comparison. It is not a certification tool, a production fraud-detection system, or a universal leaderboard that is expected to be resistant to deliberate optimization.

Data

The validation split contains 209 items:

  • 44 ai_gen;
  • 65 edited;
  • 100 original.

original means an unmodified source image in this experiment. It must not be interpreted as a legal authenticity judgment.

Each item contains:

  • id;
  • type;
  • dataset_name — one of original, edited, ai_gen;
  • question;
  • answers — annotated edited fields when available;
  • image.

Language configs

The same images are available with three question-language configs:

  • default — Russian;
  • en — English;
  • zh — Chinese.
python
from datasets import load_dataset

antifraud_ru = load_dataset("MTSAIR/MWS-Antifraud-Bench")
antifraud_en = load_dataset("MTSAIR/MWS-Antifraud-Bench", "en")
antifraud_zh = load_dataset("MTSAIR/MWS-Antifraud-Bench", "zh")

Expected answer

The model must return one JSON object:

json
{"label": "original|edited|ai_gen", "arguments": "short explanation"}

Metric

The metric combines balanced three-class accuracy and the quality of the explanation for manually edited documents:

text
AF = 0.75 × max(0, balanced_accuracy − 1/3)
     + 0.5 × edited_reason_score

AF is aggregated over the complete split. Balanced accuracy requires the full three-class confusion matrix; unlike the five original MWS Vision Bench metrics, it is not a plain mean of independent per-item scores.

Anti-fraud is reported as a separate leaderboard category and is excluded from the primary MWS Vision Bench Overall score.

Leaderboard (Validation)

The table mirrors the Anti-fraud column in the canonical MWS Vision Bench leaderboard and is sorted by the anti-fraud score. This score is reported separately and is not included in Overall.

ModelAnti-fraud
Claude Fable 50.521
GPT-5.50.477
GPT-5.6 Sol0.467
GPT-5.40.432
GPT-5.20.413
GPT-5.6 Terra0.404
Kimi K30.400
Claude Sonnet 50.391
Claude-4.6-Opus0.385
Kimi K2 Instruct0.331
Cotype Light 30.318
Claude-4.5-Opus0.308
GPT-5.6 Luna0.302
Qwen3-VL-32B-Instruct0.298
Claude-4.5-Sonnet0.280
Kimi K2.60.279
Qwen3.5-2B0.277
Qwen 3.7 Plus0.250
Claude Sonnet 4.60.235
Cotype Pro 30.233
GPT-5-mini0.233
Qwen3.6-35B-A3B0.232
Gemini-3.1-flash-lite-preview0.217
Gemini 3.5 Flash0.216
Mistral Large 3 25120.215
Qwen3-VL-8B-Instruct0.196
Qwen3.6-27B0.195
Qwen3.5-27B0.190
Qwen3.5-0.8B0.185
GLM-5V Turbo0.183
Qwen3.5-9B0.178
GPT-4.1-mini0.173
Qwen3-VL-235B-A22B-Instruct0.171
Gemini-3-flash-preview0.153
Qwen3.5-35B-A3B0.142
Gemini-2.5-flash0.137
GPT-4.10.131
Mistral Small 3.2 24B Instruct0.122
Gemma 4 31B IT0.119
Gemini 3.6 Flash0.115
Qwen3.5-4B0.100
GPT-5.10.096
Qwen2.5-VL-72B-Instruct0.091
Gemini-2.5-pro0.088
Cotype VL (32B 8 bit)0.078
Alice AI VLM dev0.046

Limitations

This is an experimental research dataset. Its class balance and document-type distribution differ from a production stream and can provide shortcuts to a system tuned specifically for this collection. A motivated participant can optimize against the benchmark. Use the score to explore and compare models for your own scenario, not as a universal measure of document authenticity.

License and allowed use

This dataset is distributed under the MWS Antifraud Research-Only License 1.0. The dataset is intended for research and model comparison and is not a certification or production fraud-detection system.

The paragraph above is a summary. If it conflicts with LICENSE.md, the license text controls.