|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
""" VASR Loading Script """ |
|
|
|
import json |
|
import os |
|
import pandas as pd |
|
import datasets |
|
from huggingface_hub import hf_hub_url |
|
|
|
|
|
_CITATION = """ |
|
""" |
|
|
|
_DESCRIPTION = """\ |
|
VASR is a challenging dataset for evaluating computer vision commonsense reasoning abilities. Given a triplet of images, the task is to select an image candidate B' that completes the analogy (A to A' is like B to what?). Unlike previous work on visual analogy that focused on simple image transformations, we tackle complex analogies requiring understanding of scenes. Our experiments demonstrate that state-of-the-art models struggle with carefully chosen distractors (±53%, compared to 90% human accuracy). |
|
""" |
|
|
|
_HOMEPAGE = "https://vasr-dataset.github.io/" |
|
|
|
_LICENSE = "https://creativecommons.org/licenses/by/4.0/" |
|
|
|
_URL = "https://huggingface.co/datasets/nlphuji/vasr/blob/main" |
|
|
|
class Winogavil(datasets.GeneratorBasedBuilder): |
|
VERSION = datasets.Version("1.1.0") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BUILDER_CONFIGS = [ |
|
datasets.BuilderConfig(name="TEST", version=VERSION, description="vasr dataset"), |
|
] |
|
IMAGE_EXTENSION = "jpg" |
|
|
|
def _info(self): |
|
features = datasets.Features( |
|
{ |
|
"A_img": datasets.Value("string"), |
|
"B_img": datasets.Value("string"), |
|
"C_img": datasets.Value("string"), |
|
"candidates": [datasets.Value("string")], |
|
"candidates_images": [datasets.Value("string")], |
|
"label": datasets.Value("int64"), |
|
"D_img": datasets.Value("string"), |
|
"A_verb": datasets.Value("string"), |
|
"B_verb": datasets.Value("string"), |
|
"C_verb": datasets.Value("string"), |
|
"D_verb": datasets.Value("string"), |
|
"diff_item_A": datasets.Value("string"), |
|
"diff_item_A_str_first": datasets.Value("string"), |
|
"diff_item_B": datasets.Value("string"), |
|
"diff_item_B_str_first": datasets.Value("string"), |
|
} |
|
) |
|
return datasets.DatasetInfo( |
|
|
|
description=_DESCRIPTION, |
|
|
|
features=features, |
|
|
|
|
|
|
|
|
|
homepage=_HOMEPAGE, |
|
|
|
license=_LICENSE, |
|
|
|
citation=_CITATION, |
|
) |
|
|
|
def _split_generators(self, dl_manager): |
|
|
|
|
|
|
|
|
|
|
|
data_dir = dl_manager.download_and_extract({ |
|
"examples_csv": hf_hub_url(repo_id="nlphuji/vasr", repo_type='dataset', filename="test_gold.csv"), |
|
"images_dir": hf_hub_url(repo_id="nlphuji/vasr", repo_type='dataset',filename="vasr_images.zip") |
|
}) |
|
|
|
return [datasets.SplitGenerator(name=datasets.Split.TEST, gen_kwargs=data_dir)] |
|
|
|
|
|
def _generate_examples(self, examples_csv, images_dir): |
|
|
|
|
|
df = pd.read_csv(examples_csv) |
|
|
|
d_keys = ['A_img', 'B_img', 'C_img', 'candidates', 'label', 'D_img', 'A_verb', 'B_verb', 'C_verb', 'D_verb', 'diff_item_A', 'diff_item_A_str_first', 'diff_item_B', 'diff_item_B_str_first'] |
|
|
|
for r_idx, r in df.iterrows(): |
|
r_dict = r.to_dict() |
|
r_dict['candidates'] = json.loads(r_dict['candidates']) |
|
candidates_images = [os.path.join(images_dir, "vasr_images", x) for x in |
|
r_dict['candidates']] |
|
r_dict['candidates_images'] = candidates_images |
|
relevant_r_dict = {k:v for k,v in r_dict.items() if k in d_keys or k == 'candidates_images'} |
|
yield r_idx, relevant_r_dict |