forked from open-mmlab/mmpretrain
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support IconQA dataset. (open-mmlab#1670)
- Loading branch information
Showing
2 changed files
with
65 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
# Copyright (c) OpenMMLab. All rights reserved. | ||
from typing import List | ||
|
||
import mmengine | ||
from mmengine.dataset import BaseDataset | ||
from mmengine.fileio import list_dir_or_file | ||
from mmengine.utils import check_file_exist | ||
|
||
from mmpretrain.registry import DATASETS | ||
|
||
|
||
@DATASETS.register_module() | ||
class IconQA(BaseDataset): | ||
"""IconQA: A benchmark for abstract diagram understanding | ||
and visual language reasoning. | ||
Args: | ||
data_root (str): The root directory for ``data_prefix``, ``ann_file`` | ||
and ``question_file``. | ||
data_prefix (str): The directory of the specific task and split. | ||
eg. ``iconqa/val/choose_text/``. | ||
**kwargs: Other keyword arguments in :class:`BaseDataset`. | ||
""" | ||
|
||
def __init__(self, data_root: str, data_prefix: str, **kwarg): | ||
super().__init__( | ||
data_root=data_root, | ||
data_prefix=dict(img_path=data_prefix), | ||
**kwarg, | ||
) | ||
|
||
def load_data_list(self) -> List[dict]: | ||
"""Load data list.""" | ||
sample_list = list( | ||
list_dir_or_file(self.data_prefix['img_path'], list_file=False)) | ||
|
||
data_list = list() | ||
for sample_id in sample_list: | ||
# data json | ||
# { | ||
# "question": "How likely is it that you will pick a black one?", | ||
# "choices": [ | ||
# "certain", | ||
# "unlikely", | ||
# "impossible", | ||
# "probable" | ||
# ], | ||
# "answer": 2, | ||
# "ques_type": "choose_txt", | ||
# "grade": "grade1", | ||
# "label": "S2" | ||
# } | ||
data_info = mmengine.load( | ||
mmengine.join_path(self.data_prefix['img_path'], sample_id, | ||
'data.json')) | ||
data_info['gt_answer'] = data_info['choices'][int( | ||
data_info['answer'])] | ||
data_info['img_path'] = mmengine.join_path( | ||
self.data_prefix['img_path'], sample_id, 'image.png') | ||
check_file_exist(data_info['img_path']) | ||
data_list.append(data_info) | ||
|
||
return data_list |