Spaces:
Sleeping
Sleeping
Update benchmark_cases.py
Browse files- benchmark_cases.py +35 -1
benchmark_cases.py
CHANGED
|
@@ -1,5 +1,39 @@
|
|
| 1 |
TEST_CASES = [
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
{
|
| 4 |
"id": 6,
|
| 5 |
"notes": "22 year old female. Severe lower abdominal pain, right-sided. Fever, nausea, elevated WBC. Last menstrual period 6 weeks ago.",
|
|
|
|
| 1 |
TEST_CASES = [
|
| 2 |
+
{
|
| 3 |
+
"id": 1,
|
| 4 |
+
"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.",
|
| 5 |
+
"ground_truth": "Tuberculosis",
|
| 6 |
+
"difficulty": "hard", # Easy to miss
|
| 7 |
+
"image": None
|
| 8 |
+
},
|
| 9 |
+
{
|
| 10 |
+
"id": 2,
|
| 11 |
+
"notes": "45 year old female. Severe headache for 3 days. Fever 39°C, stiff neck, photophobia, confusion. No recent trauma.",
|
| 12 |
+
"ground_truth": "Meningitis",
|
| 13 |
+
"difficulty": "hard",
|
| 14 |
+
"image": None
|
| 15 |
+
},
|
| 16 |
+
{
|
| 17 |
+
"id": 3,
|
| 18 |
+
"notes": "30 year old male. Sudden onset crushing chest pain radiating to left arm. Sweating, nausea, shortness of breath. Pain started 2 hours ago.",
|
| 19 |
+
"ground_truth": "Myocardial Infarction",
|
| 20 |
+
"difficulty": "easy",
|
| 21 |
+
"image": None
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
"id": 4,
|
| 25 |
+
"notes": "55 year old female. Progressive dyspnea over 3 months. Chronic dry cough. Known rheumatoid arthritis on methotrexate. No fever.",
|
| 26 |
+
"ground_truth": "Interstitial Lung Disease",
|
| 27 |
+
"difficulty": "medium",
|
| 28 |
+
"image": None
|
| 29 |
+
},
|
| 30 |
+
{
|
| 31 |
+
"id": 5,
|
| 32 |
+
"notes": "70 year old male. Confusion and lethargy for 2 days. Blood sugar 35 mg/dL. History of diabetes on insulin.",
|
| 33 |
+
"ground_truth": "Hypoglycemia",
|
| 34 |
+
"difficulty": "easy",
|
| 35 |
+
"image": None
|
| 36 |
+
},
|
| 37 |
{
|
| 38 |
"id": 6,
|
| 39 |
"notes": "22 year old female. Severe lower abdominal pain, right-sided. Fever, nausea, elevated WBC. Last menstrual period 6 weeks ago.",
|