MedQA: Medical exam Q&A benchmark

A Q&A benchmark with questions collected from professional medical board exams. Only includes the English subset of the dataset (which also contains Mandarin Chinese and Taiwanese questions).

Overview

MedQA is an evaluation dataset of medical knowledge questions collected from medical board exams. The full dataset has questions in English, Mandarin Chinese, and Taiwanese, but this evaluation only includes the English subset.

This evaluation is likely close to saturation. According to a result from 2023, GPT-4 was already scoring 86.1% at that time. GPT-4.1 does not currently score much better. A quick examination of its incorrect answers revealed some possibly incorrect or arguable questions, so it is not clear how much higher a realistic score might be.

Usage

Installation

This eval requires extra dependencies.

pip install inspect-evals[medqa]

From a checkout of this repository:

uv sync --extra medqa

Running evaluations

uv run inspect eval inspect_evals/medqa --model openai/gpt-5-nano

You can also import tasks as normal Python objects and run them from python:

from inspect_ai import eval
from inspect_evals.medqa import medqa
eval(medqa)

Drop uv run if you manage dependencies yourself. Log viewing (inspect view) and default-model setup are documented in the Inspect Evals README.

Options

You can control a variety of options from the command line. For example:

uv run inspect eval inspect_evals/medqa --limit 10 --sample-shuffle
uv run inspect eval inspect_evals/medqa --max-connections 10
uv run inspect eval inspect_evals/medqa --temperature 0.5

See uv run inspect eval --help for all available options.

Parameters

medqa

No task parameters.

Dataset

All questions are multiple choice, with 5 options and 1 correct answer. For humans, a passing score is 60%, and the 95th percentile score is 87%.

Example question:

  • Question: A scientist is studying the properties of myosin-actin interactions in a sample of human muscle tissue. She has identified a drug that selectively inhibits phosphate release by the myosin head. If she gives this drug to a sample of human muscle tissue under physiologic conditions, which of the following steps in cross-bridge cycling will most likely be blocked?
  • Choices:
      1. Myosin head release from actin
      1. Myosin head cocking
      1. Exposure of myosin-binding sites on actin
      1. Myosin head binding to actin
      1. Power stroke
  • Answer: E

Scoring

Simple accuracy over multiple choice answers.

Evaluation Report

Results from July 3, 2025, running on all 1,273 samples:

Model Accuracy
gpt-4o-mini 68.5%
gpt-4.1 87.4%

Changelog

[2-A] - 2026-02-16

  • Migrate version to new scheme. See #907.