MME-RealWorld
收藏资源简介:
MME-RealWorld是一个精心设计的基准,旨在解决现实世界应用中的实际问题。该数据集包含13,366张高分辨率图像,平均分辨率为2,000 × 1,500像素,涵盖29,429个由25名众包工作者和7名MLLM专家精心制作的注释,涉及43个任务。数据集的主要优势包括:1) 数据规模:由32名志愿者手动注释的29,429个QA对,是目前已知的最大全人工注释基准。2) 数据质量:高分辨率图像和人工完成的注释,确保了数据质量。3) 任务难度和实际应用价值:即使是最高级的模型,准确率也未超过60%,许多现实世界的任务比传统基准更难。4) 中文版本MME-RealWord-CN:针对中文场景收集的图像和注释,解决了英文版本翻译可能存在的问题。
MME-RealWorld is a meticulously curated benchmark designed to address practical challenges in real-world applications. This dataset comprises 13,366 high-resolution images with an average resolution of 2,000 × 1,500 pixels, and covers 29,429 annotations crafted carefully by 25 crowdworkers and 7 MLLM experts across 43 distinct tasks. The key strengths of this dataset are outlined below: 1) Scale: Featuring 29,429 manually annotated QA pairs completed by 32 volunteers, it represents the largest fully manually annotated benchmark currently documented in the research field. 2) Data Quality: High-resolution images and human-generated annotations guarantee the reliability and high quality of the dataset. 3) Task Difficulty and Practical Value: Even state-of-the-art models have not achieved an accuracy exceeding 60%, and many real-world tasks are more demanding than those included in traditional benchmarks. 4) Chinese Version (MME-RealWord-CN): This version collects images and annotations tailored for Chinese scenarios, resolving potential issues that may arise from translating the original English version.
MME-RealWorld 数据集概述
数据集详情
MME-RealWorld 是一个精心设计的基准数据集,旨在解决现实世界应用中的实际问题。该数据集具有以下特点:
-
数据规模:
- 由32名志愿者手动标注,包含29,429个针对现实场景的问答对,是目前已知最大的完全人工标注的基准数据集。
-
数据质量:
- 分辨率:包含13,366张平均分辨率为2,000 × 1,500像素的高分辨率图像,有助于提供有意义的人类辅助。
- 标注:所有标注均由专业团队手动完成,并进行交叉检查以确保数据质量。
-
任务难度和现实世界实用性:
- 即使是目前最先进的模型,准确率也未超过60%。
- 许多现实世界任务的难度远超传统基准数据集中的任务,例如视频监控中需要计数133辆车辆,或在遥感中识别和计数地图上平均分辨率超过5000×5000的小物体。
-
MME-RealWord-CN:
- 针对现有中文基准数据集通常从英文版本翻译而来的局限性,收集了聚焦于中国场景的额外图像,并由中国志愿者进行标注,共包含5,917个问答对。
使用方法
由于图像文件较大且已被分割成多个压缩部分,请首先将相同名称的压缩文件合并,然后一起提取。
bash #!/bin/bash
导航到包含分割文件的目录
cd TARFILES
循环处理每个分割文件集
for part in *.tar.gz.part_aa; do # 提取文件的基本名称 base_name=$(basename "$part" .tar.gz.part_aa)
# 将分割文件合并为一个存档
cat "${base_name}".tar.gz.part_* > "${base_name}.tar.gz"
# 提取合并后的存档
tar -xzf "${base_name}.tar.gz"
# 可选:删除临时的合并存档
rm "${base_name}.tar.gz"
done




