File size: 2,768 Bytes
d22ea8d
6cc629b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
ce55fa6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
d22ea8d
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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
    }
]