CoolFace
Datasetpublic

Krishna5T/trial_dataset

Trial Dataset (VQA) This dataset contains various configurations for Visual Question Answering (VQA) tasks involving tables, figures, and multiple-choice options. Dataset Structure The dataset is split into multiple configurations based on the complexity of the input (number of tables/figures) and the response type (MCQ or Constructed Response). How to Load You can load any specific configuration using the datasets library: from datasets import… See the full description on the dataset page: https://huggingface.co/datasets/Krishna5T/trial_dataset.

sourceHugging Facemitupdated 6mo agoView on Hugging Face
0likes541downloads
Dataset Card

Trial Dataset (VQA)

This dataset contains various configurations for Visual Question Answering (VQA) tasks involving tables, figures, and multiple-choice options.

Dataset Structure

The dataset is split into multiple configurations based on the complexity of the input (number of tables/figures) and the response type (MCQ or Constructed Response).

How to Load

You can load any specific configuration using the datasets library:

python
from datasets import load_dataset

# Example: Load the 4-option MCQ configuration
dataset = load_dataset("Krishna5T/trial_dataset", "mcq_4options")

print(dataset["train"][0])