OmniBench
收藏资源简介:
OmniBench数据集是一个多模态基准测试数据集,用于评估模型在视觉、声学和文本输入上的综合处理能力。数据集包含以下特征:任务类型(字符串,表示7种任务类型之一)、音频类型(字符串,表示3种音频类型之一)、问题(字符串,表示问题内容)、选项(字符串列表,表示多选题的四个选项)、答案(字符串,表示正确答案,必须在选项中)、音频路径(字符串,音频文件的基本名称,使用时需前置'mm_data/audio')、图像路径(字符串,图像文件的基本名称,使用时需前置'mm_data/image')、音频内容(字符串,用于文本替代实验的人工注释音频转录)、图像内容(字符串,用于文本替代实验的VLM生成的图像描述)。此外,数据集还包含音频和图像的实际内容,分别以numpy数组和PIL.Image对象的形式存储。数据集分为训练集,包含1142个样本。
The OmniBench dataset is a multimodal benchmark dataset developed to evaluate the comprehensive processing capabilities of models across visual, acoustic, and textual inputs. It includes the following features: task type (string, one of seven predefined task types), audio type (string, one of three predefined audio types), question (string, the content of the query), options (list of strings, four options for multiple-choice questions), answer (string, the correct answer that must be included in the provided options), audio path (string, the base filename of the audio file, with the prefix 'mm_data/audio' required for access), image path (string, the base filename of the image file, with the prefix 'mm_data/image' required for access), audio content (string, manually annotated audio transcripts used for text substitution experiments), and image content (string, image descriptions generated by VLM for text substitution experiments). Additionally, the dataset contains the actual audio and image data, which are stored as numpy arrays and PIL.Image objects respectively. The dataset is divided into a training set comprising 1142 samples.
OmniBench 数据集概述
数据集信息
特征
- task type: 字符串,表示任务类型。
- audio type: 字符串,表示音频类型(语音、声音事件、音乐)。
- question: 字符串,表示问题。
- audio content: 字符串,表示音频内容的转录文本。
- image content: 字符串,表示图像内容的描述文本。
- audio_path: 字符串,表示音频文件路径的基名。
- image_path: 字符串,表示图像文件路径的基名。
- index: 整数,表示问题ID。
- answer: 字符串,表示正确答案,必须在
options中出现。 - options: 字符串序列,表示多选题的四个选项。
- audio: 音频数据,包含wav文件的numpy数组(仅适用于HF版本)。
- image: 图像数据,包含
PIL.Image()对象(仅适用于HF版本)。
数据分割
- train: 训练集,包含1142个样本,大小为1228472891.864字节。
数据集大小
- 下载大小: 1263570029字节
- 数据集大小: 1228472891.864字节
数据集配置
- config_name: default
- data_files:
- split: train
- path: data/train-*
- data_files:
数据集下载
python from datasets import load_dataset
dataset = load_dataset("m-a-p/OmniBench")
检查数据样本
print(dataset) print(dataset[train][0])




