dataset_info:
features:
- name: image
dtype: image
- name: text
dtype: string
- name: data
dtype: string
splits:
- name: train
num_bytes: 5682185371.25
num_examples: 157070
- name: validation
num_bytes: 1215277311.75
num_examples: 33650
- name: test
num_bytes: 1213956734.875
num_examples: 33657
download_size: 7128548769
dataset_size: 8111419417.875
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: validation
path: data/validation-*
- split: test
path: data/test-*
Dataset Info
This dataset is processed from achang/plot_qa
Dataset Card for PlotQA
Dataset Description
- PlotQA from here: PlotQA
Dataset Summary
PlotQA is a VQA dataset with 28.9 million question-answer pairs grounded over 224,377 plots on data from real-world sources and questions based on crowd-sourced question templates.
Dataset Structure
Data Fields
List and describe the fields present in the dataset. Mention their data type, and whether they are used as input or output in any of the tasks the dataset currently supports. If the data has span indices, describe their attributes, such as whether they are at the character level or word level, whether they are contiguous or not, etc. If the datasets contains example IDs, state whether they have an inherent meaning, such as a mapping to other datasets or pointing to relationships between data points.
image
: PIL image of a plottext
: string of json data 'models'. See notes below.
From here:
'models': It is a list of dictionaries. Depending on the type of the plot (single or 2,3,4-multi), the length of the dictionary can vary from 1 to 4. Each dictionary contains the following keys-
name: Label corresponding to the datapoint.
color: Color corresponding to the name
datapoint.
bboxes: Bounding boxes corresponding to the name
datapoints in the plot.
label: label corresponding to the datapoint which will appear as the legend (same as the name
field).
x: x-value of the datapoints.
y: y-value of the datapoints.
json2token function was used to convert json to string.
The new tokens are already loaded in plotQA processor:
from transformers import DonutProcessor
processor = DonutProcessor.from_pretrained("[achang/donut-plotqa-trained](https://huggingface.co/achang/donut-plotqa-trained)")
Data Splits
validation: Dataset({
features: ['image', 'text'],
num_rows: 33650
})
train: Dataset({
features: ['image', 'text'],
num_rows: 157070
})
test: Dataset({
features: ['image', 'text'],
num_rows: 33657
})
Misc
Dataset Creation, Annotations, Considerations for Using the Data, Social Impact of Dataset, Additional Information, Licensing Information look at plotQA
Citation Information
Please cite the following if you use the PlotQA dataset in your work:
@InProceedings{Methani_2020_WACV,
author = {Methani, Nitesh and Ganguly, Pritha and Khapra, Mitesh M. and Kumar, Pratyush},
title = {PlotQA: Reasoning over Scientific Plots},
booktitle = {The IEEE Winter Conference on Applications of Computer Vision (WACV)},
month = {March},
year = {2020}
}