VisArgs
收藏视觉论证理解基准数据集
数据集概述
该数据集名为“视觉论证理解基准”,旨在评估机器在视觉论证理解方面的能力。数据集包括图像、视觉前提、结论、边界框、常识前提和推理步骤。
数据加载
数据集可通过Hugging Face的datasets库加载:
python from datasets import load_dataset
加载主数据
dset = load_dataset("jiwan-chung/visargs", "annotations")
加载预定义的负例集,用于“前提识别”任务
dset = load_dataset("jiwan-chung/visargs", "negatives")
数据示例
以下是一个数据实例的示例:
json { "url": "https://i.pinimg.com/originals/5e/7f/10/5e7f108728fb848eb8e3cccfdd62ef8f.jpg", "visual_premises": [ "A small plant is growing inside a plastic bag.", "The bag contains a bit of soil.", "The bag is tied at the top, enclosing the plant." ], "conclusion": "The image represents the struggle of nature to survive in a human-made, constraining environment, highlighting the need for environmental awareness and protection.", "b_box": [ {"h": 41, "startX": 302, "startY": 554, "w": 72}, {"h": 51, "startX": 223, "startY": 589, "w": 229}, {"h": 421, "startX": 46, "startY": 219, "w": 407} ], "commonsense_premises": [ "Plants require soil, water, light, and air to grow.", "Plastic bags are not a natural environment for plant growth and can restrict access to necessary resources.", "The act of enclosing the plant in a bag could symbolize suffocation or limitation of growth." ], "reasoning_steps": [ "(VP1, VP2, CP1 -> IC1): The small plant is growing, showing its resilience and need for natural resources.", "(VP3, CP2, CP3 -> IC2): The plastic bag enclosing the plant symbolizes human-imposed constraints on natures growth and survival.", "(IC1, IC2 -> C): The image represents natures struggle to survive in a constrained environment, emphasizing the importance of environmental protection." ] }
使用方法
数据集可用于以下三个任务:
- 前提定位
- 前提识别
- 结论推导
具体使用方法请参考README文件中的详细说明。




