Datasets:
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,.... Otherwisenull.
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