mugezhang/medical-temporal-reasoning-sft
Medical Temporal Reasoning — SFT Dataset SFT training data for a medical temporal reasoning model that, given a current and prior chest X-ray, produces step-by-step reasoning about disease progression. Built from MIMIC-CXR image pairs. Images are not included; image_path contains relative paths into the MIMIC-CXR-JPG dataset. Splits Split Records Description train_answer_only 158,439 Training records, answer only (process=null) train_reasoning 10,559… See the full description on the dataset page: https://huggingface.co/datasets/mugezhang/medical-temporal-reasoning-sft.
Medical Temporal Reasoning — SFT Dataset
SFT training data for a medical temporal reasoning model that, given a current and prior chest X-ray, produces step-by-step reasoning about disease progression.
Built from MIMIC-CXR image pairs. Images are not included; image_path contains relative paths into the MIMIC-CXR-JPG dataset.
Splits
The four splits are fully disjoint (no shared item_id). Train/val split is by patient (subject_id) — no patient appears in both.
Sources
Format
Each record:
{
"item_id": "mmxu_12345",
"image_path": ["p17/.../current.jpg", "p17/.../prior.jpg"],
"question": "How has the left lung changed? A) Worsened B) Improved ...",
"answer": "<answer>A</answer>",
"process": "<think>Comparing the two images...</think>",
"dataset_name": "mmxu_answer_only"
}process is null in answer_only splits and a <think>...</think> string in reasoning splits.
