benchmark_test / benchmark_cases.py
Yogeshwarirj's picture
Update benchmark_cases.py
6cc629b verified
TEST_CASES = [
{
"id": 1,
"notes": "65 year old male. Persistent cough for 6 weeks. Night sweats, 8kg weight loss over 2 months. Low grade fever. Recently moved from high TB prevalence region.",
"ground_truth": "Tuberculosis",
"difficulty": "hard", # Easy to miss
"image": None
},
{
"id": 2,
"notes": "45 year old female. Severe headache for 3 days. Fever 39°C, stiff neck, photophobia, confusion. No recent trauma.",
"ground_truth": "Meningitis",
"difficulty": "hard",
"image": None
},
{
"id": 3,
"notes": "30 year old male. Sudden onset crushing chest pain radiating to left arm. Sweating, nausea, shortness of breath. Pain started 2 hours ago.",
"ground_truth": "Myocardial Infarction",
"difficulty": "easy",
"image": None
},
{
"id": 4,
"notes": "55 year old female. Progressive dyspnea over 3 months. Chronic dry cough. Known rheumatoid arthritis on methotrexate. No fever.",
"ground_truth": "Interstitial Lung Disease",
"difficulty": "medium",
"image": None
},
{
"id": 5,
"notes": "70 year old male. Confusion and lethargy for 2 days. Blood sugar 35 mg/dL. History of diabetes on insulin.",
"ground_truth": "Hypoglycemia",
"difficulty": "easy",
"image": None
},
{
"id": 6,
"notes": "22 year old female. Severe lower abdominal pain, right-sided. Fever, nausea, elevated WBC. Last menstrual period 6 weeks ago.",
"ground_truth": "Ectopic Pregnancy",
"difficulty": "hard",
"image": None
},
{
"id": 7,
"notes": "68 year old male. Progressive weakness in legs over 6 months. Difficulty walking, frequent falls. No back pain. History of smoking.",
"ground_truth": "Spinal Cord Compression",
"difficulty": "medium",
"image": None
},
{
"id": 8,
"notes": "35 year old male. High fever 40°C for 5 days. Recent travel to malaria-endemic region. Headache, muscle aches, shaking chills.",
"ground_truth": "Malaria",
"difficulty": "medium",
"image": None
},
{
"id": 9,
"notes": "28 year old female. Sudden severe headache, worst of life. Started 1 hour ago during exercise. Neck pain, nausea, vomiting.",
"ground_truth": "Subarachnoid Hemorrhage",
"difficulty": "hard",
"image": None
},
{
"id": 10,
"notes": "50 year old male. Right upper quadrant pain for 8 hours. Pain radiates to shoulder. Recent fatty meal. Nausea.",
"ground_truth": "Cholecystitis",
"difficulty": "easy",
"image": None
}
]