GenText-Forensics_third_place_additional_materials
收藏资源简介:
本数据集是ACM MM 2026 GenText-Forensics挑战赛第三名团队(MSU团队)解决方案的附加材料,包含模型权重、代码和复现产物。该解决方案旨在对多语言文档文本图像中的伪造内容进行检测、定位、分类和解释,采用了一个分解式思维链管道,包括文档篡改检测器(DTD)、Qwen过滤器和Qwen语义侦探三个主要组件。数据集内容主要包括:训练好的DTD检查点(`dtd.pth`)、DTD模型代码及骨干网络初始权重、用于DTD频率流的JPEG量化表pickle文件、两个阶段的LoRA适配器(过滤器和语义侦探)。此外,还提供了约6.5k张测试图像的中间产物,包括带有DTD区域红色标注框的图像、每张图像的DTD区域与OCR重叠的JSON文件、两个阶段的渲染提示,以及约4.3k条用于训练的精炼思维链数据。数据集适用于文档取证、伪造检测、篡改文本检测等研究任务,支持英语、中文、泰语、马来语、印尼语和阿拉伯语等多语言文档图像。数据集遵循CC-BY-NC-4.0许可证,仅限研究和非商业用途。
This dataset is the supplementary material for the third-place team (MSU team) solution in the ACM MM 2026 GenText-Forensics challenge, containing model weights, code, and reproduction outputs. The solution aims to detect, localize, classify, and explain forged content in multilingual document text images using a decomposed chain-of-thought pipeline, which includes three main components: 1) Document Tampering Detector (DTD), an external pixel-level visual tampering detector for generating tampering probability maps and converting them into numbered candidate regions; 2) Qwen Filter, a LoRA fine-tuned Qwen3-VL-32B model for verifying each DTD region (keep/discard) and assigning preliminary forgery types; 3) Qwen Semantic Detective, another LoRA fine-tuned Qwen3-VL-32B model for merging and relocating retained regions, discovering pure semantic anomalies, and generating final forensic reports. Both Qwen models are trained using chain-of-thought trajectories distilled from the privileged teacher model Qwen3-VL-235B. The dataset content mainly includes: trained DTD checkpoints (`dtd.pth`), DTD model code and backbone network initial weights, JPEG quantization table pickle files for DTD frequency flow, LoRA adapters for two stages (filter and semantic detective). Additionally, it provides intermediate outputs for approximately 6.5k test images, including images with red bounding boxes for DTD regions, JSON files of DTD region overlaps with OCR for each image, rendered prompts for two stages, and about 4.3k refined chain-of-thought data for training. The dataset is suitable for research tasks such as document forensics, forgery detection, and tampered text detection, supporting multilingual document images in English, Chinese, Thai, Malay, Indonesian, and Arabic. The dataset follows the CC-BY-NC-4.0 license, restricted to research and non-commercial use.
数据集概述
- 数据集名称: GenText-Forensics 2026 — Team MSU Third-Place Additional Materials
- 许可证: CC-BY-NC-4.0(非商业研究用途)
- 语言: 英语、中文、泰语、马来语、印度尼西亚语、阿拉伯语
- 任务类别: 图像分割、图像到文本
- 数据量: 1K < n < 10K
数据集内容
该数据集包含了Team MSU在ACM MM 2026 GenText-Forensics挑战赛中获得第三名的解决方案所需的人工制品,包括模型权重、代码和复现材料。
方法概述
采用分解式思维链(Chain-of-Thought)流水线,用于对多语言文档文本图像中的伪造进行检测、定位、分类和解释,具体分为三个步骤:
- DTD(文档篡改检测器):外部的像素级视觉篡改检测器,生成篡改概率图,并转换为编号候选区域。
- Qwen Filterer(筛选器):使用LoRA适配后的Qwen3-VL-32B模型,对每个DTD区域进行验证(保留/丢弃),并分配初步伪造类型。
- Qwen Semantic Detective(语义侦探):使用LoRA适配后的Qwen3-VL-32B模型,合并并重新定位保留区域,发现纯语义异常,并撰写最终的法医报告。
两个Qwen模型均在从特权教师模型Qwen3-VL-235B蒸馏得到的思维链轨迹上进行训练。
仓库内容
| 路径/文件夹 | 说明 |
|---|---|
dtd.pth |
训练好的DTD模型检查点 |
dtd_backbones/ |
DTD模型代码及骨干网络初始权重 |
dtd_qt_table_ori.pk |
DTD频率流使用的JPEG量化表pickle文件 |
qwen_filterer/ |
阶段1(筛选器)的LoRA适配器 |
qwen_semantic_detective/ |
阶段2(语义侦探)的LoRA适配器 |
test_annotated/ |
约6.5k张测试图像,标注了DTD区域框 |
test_dtd_ocr/ |
约6.5k个JSON文件,包含DTD区域、区域与OCR的重叠信息及完整OCR输出 |
test_prompts_stage1/ |
约6.5k个渲染的阶段1提示 |
test_prompts_stage2/ |
约6.5k个渲染的阶段2提示 |
train_cot/ |
约4.3k条训练图像的蒸馏思维链(教师模型输出,用于LoRA SFT) |
使用方式
可直接通过huggingface_hub的snapshot_download下载所有资源:
python from huggingface_hub import snapshot_download
local = snapshot_download( repo_id="cmcshnik/GenText-Forensics_third_place_additional_materials", repo_type="dataset", )
预期用途与限制
- 这些材料发布用于研究和可复现性目的,针对RealText-V2/GenText-Forensics基准上的文档伪造检测。
- 模型专为法医分析调整,应在人类监督下使用;对于身份、金融或医疗文件的自动判决可能带来严重后果。
- DTD检测器是一个外部组件(来源:Qu et al., CVPR 2023)。
- 基础VLM为
Qwen/Qwen3-VL-32B-Instruct,受其自身许可证约束。
许可证
数据集以CC-BY-NC-4.0许可证发布(研究、非商业用途),与RealText-V2数据集卡一致。附带的解决方案代码采用MIT许可证。基础模型和DTD检测器受各自上游许可证约束。





