You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

NEET PG 2012 Questions Dataset

Evaluation dataset of NEET PG 2012 multiple choice questions. Some questions include an image (e.g. diagrams).

Dataset structure

Each row has:

  • question: Question statement
  • options: List of options (e.g. ["(A) ...", "(B) ...", ...])
  • correct_answer: Correct option letter (A–D)
  • image: Optional. When the question has an image, a data URL string data:image/<type>;base64,.... Otherwise null.

Loading

from datasets import load_dataset
ds = load_dataset("prapaa/neet-pg-2012", data_files="{"train": "train.jsonl"}, split="train")
# Decode image when present: row["image"] is None or "data:image/jpeg;base64,..."
Downloads last month
8