forked from simplescaling/s1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresults.json
3622 lines (3622 loc) · 123 KB
/
results.json
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"experiments": {
"huatuo-25k": {
"description": "Current configuration with existing hyperparameters",
"config": {
"model_key": "llama3.1:8b",
"curation": {
"method": "all",
"huatuo_format": true,
"n_samples": 25371
},
"training_params": {
"learning_rate": 5e-06,
"batch_size": 2,
"num_epochs": 3,
"weight_decay": 0.1,
"warmup_ratio": 0.05,
"optimizer": {
"no_decay_params": [
"bias",
"LayerNorm.weight"
],
"adam_beta1": 0.9,
"adam_beta2": 0.95,
"adam_epsilon": 1e-08
},
"gradient_accumulation_steps": 16
}
},
"results": {
"curation": {
"dataset_path": "/share/pi/nigam/users/calebwin/hf_cache/med-s1k/huatuo-25k_20250304_173206/med_s1k_formatted",
"timestamp": "2025-03-04T17:32:13.385452",
"stats": {
"total_examples": 25371,
"selected_examples": 25371,
"filtered_examples": 24371,
"filter_reasons": {
"not_selected_in_sampling": 17407,
"base_model_correct": 6964
},
"specialty_distribution": {
"General Knowledge": 750,
"Infectious Disease": 731,
"Neurology": 712,
"Gastroenterology": 688,
"Math": 600,
"Psychiatry": 597,
"Obstetrics and Gynecology": 551,
"Endocrinology, Diabetes and Metabolism": 542,
"Dentistry": 501,
"Pulmonary Disease": 474,
"Physics": 444,
"Public Health and General Preventive Medicine": 426,
"Cardiovascular Disease": 422,
"Nephrology": 415,
"Maternal-Fetal Medicine": 406,
"Ophthalmology": 391,
"Hematology": 374,
"Otolaryngology - Head and Neck Surgery": 369,
"Health Care Administration, Leadership, and Management": 356,
"Pediatrics": 293,
"General Surgery": 289,
"Dermatology": 271,
"Rheumatology": 264,
"Orthopaedic Surgery": 256,
"Clinical Genetics and Genomics (MD)": 249,
"Internal Medicine": 239,
"Urology": 209,
"Medical Toxicology": 204,
"Anesthesiology": 202,
"Economics": 196,
"Pediatric Infectious Diseases": 183,
"Allergy and Immunology": 178,
"Pediatric Hematology-Oncology": 177,
"Law": 176,
"Medical Oncology": 175,
"Emergency Medicine": 175,
"Vascular Surgery": 162,
"Neonatal-Perinatal Medicine": 160,
"Pathology - Anatomic": 150,
"Clinical Informatics": 147,
"Medical Physics (Diagnostic, Nuclear, Therapeutic)": 145,
"Computer Science": 143,
"Clinical Biochemical Genetics": 133,
"Pediatric Endocrinology": 133,
"Chemistry": 131,
"Pediatric Cardiology": 122,
"Pathology - Forensic": 121,
"Reproductive Endocrinology and Infertility": 114,
"Pediatric Nephrology": 111,
"Gynecologic Oncology": 109,
"Pediatric Gastroenterology": 109,
"Pathology - Chemical": 109,
"Critical Care Medicine": 106,
"Education": 102,
"Neurology with Special Qualification in Child Neurology": 100,
"Pediatric Surgery": 99,
"Neurological Surgery": 94,
"Pediatric Dermatology": 86,
"Statistics": 79,
"Clinical Cardiac Electrophysiology": 79,
"Family Medicine": 74,
"Forensic Psychiatry": 74,
"Pediatric Pulmonology": 70,
"Addiction Medicine": 68,
"Developmental-Behavioral Pediatrics": 66,
"Surgery of the Hand": 64,
"Child and Adolescent Psychiatry": 58,
"Occupational and Environmental Medicine": 58,
"Colon and Rectal Surgery": 54,
"Advanced Heart Failure and Transplant Cardiology": 54,
"Pathology - Medical Microbiology": 52,
"Thoracic and Cardiac Surgery": 51,
"Sports Medicine": 51,
"Vascular Neurology": 50,
"Neurotology": 50,
"Complex Pediatric Otolaryngology": 45,
"History": 45,
"Orthopaedic Sports Medicine": 42,
"Diagnostic Radiology": 42,
"Physical Medicine and Rehabilitation": 41,
"Complex General Surgical Oncology": 39,
"Sleep Medicine": 39,
"Pediatric Emergency Medicine": 38,
"Pediatric Urology": 36,
"Surgical Critical Care": 33,
"Neurocritical Care": 33,
"Astronomy": 33,
"Geriatric Medicine": 32,
"Pediatric Critical Care Medicine": 32,
"Nuclear Medicine": 31,
"Urogynecology and Reconstructive Pelvic Surgery": 30,
"Neuropathology": 29,
"Transplant Hepatology": 27,
"Aerospace Medicine": 27,
"Plastic Surgery": 25,
"Pediatric Anesthesiology": 25,
"Politics": 24,
"Pathology - Anatomic/Pathology - Clinical": 24,
"Pain Medicine": 23,
"Undersea and Hyperbaric Medicine": 22,
"Adolescent Medicine": 22,
"Pediatric Rheumatology": 21,
"Hospice and Palliative Medicine": 21,
"Molecular Genetic Pathology": 20,
"Medical Biochemical Genetics": 20,
"Radiation Oncology": 18,
"Interventional Cardiology": 18,
"Hematopathology": 17,
"Dermatopathology": 17,
"Pathology - Pediatric": 14,
"Complex Family Planning": 14,
"Adult Cardiac Anesthesiology": 14,
"Laboratory Genetics and Genomics": 14,
"Neuroradiology": 12,
"Adult Congenital Heart Disease": 12,
"Blood Banking/Transfusion Medicine": 12,
"Pathology - Clinical": 10,
"Podiatry": 10,
"Child Abuse Pediatrics": 9,
"Plastic Surgery Within the Head and Neck*": 6,
"Cytopathology": 6,
"Spinal Cord Injury Medicine": 6,
"Neuromuscular Medicine": 5,
"Internal Medicine-Critical Care Medicine": 5,
"Geography": 5,
"Religion": 4,
"Pediatric Radiology": 4,
"Interventional Radiology and Diagnostic Radiology": 4,
"Clinical Neurophysiology": 4,
"Geriatric Psychiatry": 4,
"Addiction Psychiatry": 3,
"Emergency Medical Services": 3,
"Consultation-Liaison Psychiatry": 3,
"Optometry": 3,
"Epilepsy": 2,
"Pediatric Rehabilitation Medicine": 2,
"Pathology - Molecular Genetic": 2,
"Neurodevelopmental Disabilities": 2,
"Nuclear Radiology": 1,
"Biology": 1,
"Congenital Cardiac Surgery": 1
}
}
},
"training": {
"model_path": "/share/pi/nigam/users/calebwin/hf_cache/ckpts/huatuo-25k",
"timestamp": "2025-03-07T21:38:40Z",
"metrics": null
},
"eval": {
"outputs_path": "/share/pi/nigam/users/calebwin/hf_cache/eval/huatuo-25k/huatuo-25keval_data.json",
"metrics_path": "/share/pi/nigam/users/calebwin/hf_cache/eval/huatuo-25k/huatuo-25keval_data_metrics.json",
"timestamp": "2025-03-07T22:55:15.075314",
"summary": {
"MedMCQA_validation": {
"accuracy": 0.5778149653358834,
"accuracy_ci": [
0.562514941429596,
0.5933600286875449
],
"num_correct": 2417,
"total_examples": 4183,
"num_answered": 2410
},
"MedQA_USLME_test": {
"accuracy": 0.6944226237234878,
"accuracy_ci": [
0.6661233307148469,
0.7172230950510604
],
"num_correct": 882,
"total_examples": 1273,
"num_answered": 884
},
"PubMedQA_test": {
"accuracy": 0.755,
"accuracy_ci": [
0.727,
0.781
],
"num_correct": 754,
"total_examples": 1000,
"num_answered": 755
},
"MMLU-Pro_Medical_test": {
"accuracy": 0.6039087947882736,
"accuracy_ci": [
0.5726384364820847,
0.6241042345276873
],
"num_correct": 918,
"total_examples": 1535,
"num_answered": 927
},
"GPQA_Medical_test": {
"accuracy": 0.5051282051282051,
"accuracy_ci": [
0.44358974358974357,
0.5358974358974359
],
"num_correct": 191,
"total_examples": 390,
"num_answered": 197
}
}
}
}
},
"med-s1-1k-tuned": {
"description": "Tuned version with adjusted hyperparameters",
"config": {
"model_key": "llama3.1:8b",
"curation": {
"method": "s1",
"n_samples": 1000
},
"training_params": {
"learning_rate": 2e-06,
"batch_size": 16,
"num_epochs": 5,
"weight_decay": 0.001
}
},
"results": {
"curation": {
"dataset_path": "/share/pi/nigam/users/calebwin/hf_cache/med-s1k/plumbing_test_001_20250219_145607/med_s1k_formatted",
"timestamp": null
},
"training": {
"model_path": "/share/pi/nigam/users/calebwin/hf_cache/ckpts/med-s1-1k-tuned",
"timestamp": "2025-02-27T18:43:27Z",
"metrics": null
},
"eval": {
"outputs_path": "/share/pi/nigam/users/calebwin/hf_cache/eval/med-s1-1k-tuned/Llama-3.1-8B-Instructeval_data_strict-prompt.json",
"metrics_path": "/share/pi/nigam/users/calebwin/hf_cache/eval/med-s1-1k-tuned/Llama-3.1-8B-Instructeval_data_strict-prompt_metrics.json",
"timestamp": "2025-02-27T21:20:22.586668",
"summary": {
"MedMCQA_validation": {
"accuracy": 0.5558211809705953,
"accuracy_ci": [
0.5397979918718623,
0.5706430791298112
],
"num_correct": 2325,
"total_examples": 4183,
"num_answered": 2324
},
"MedQA_USLME_test": {
"accuracy": 0.6252945797329144,
"accuracy_ci": [
0.6001374705420268,
0.6504320502749411
],
"num_correct": 796,
"total_examples": 1273,
"num_answered": 794
},
"PubMedQA_test": {
"accuracy": 0.751,
"accuracy_ci": [
0.724,
0.779
],
"num_correct": 751,
"total_examples": 1000,
"num_answered": 751
},
"MMLU-Pro_Medical_test": {
"accuracy": 0.5889250814332248,
"accuracy_ci": [
0.5661074918566775,
0.6143322475570032
],
"num_correct": 904,
"total_examples": 1535,
"num_answered": 904
},
"GPQA_Medical_test": {
"accuracy": 0.41794871794871796,
"accuracy_ci": [
0.3717948717948718,
0.46923076923076923
],
"num_correct": 163,
"total_examples": 390,
"num_answered": 163
}
}
}
}
},
"med-s1-1k-curated": {
"description": "Iteration on curation methodology",
"config": {
"model_key": "llama3.1:8b",
"curation": {
"method": "s1",
"n_samples": 1000,
"specialty_weights": {
"Internal Medicine": 1.5,
"Emergency Medicine": 1.5,
"Critical Care": 1.2
}
},
"training_params": {
"learning_rate": 2e-05,
"batch_size": 8,
"num_epochs": 8
}
},
"results": {
"curation": {
"dataset_path": null,
"timestamp": null
},
"training": {
"model_path": null,
"timestamp": null,
"metrics": null
},
"eval": {
"results_path": null,
"timestamp": null,
"metrics": null
}
}
},
"med-s1-5k": {
"description": "Larger curated dataset with 5k samples",
"config": {
"model_key": "llama3.1:8b",
"curation": {
"method": "s1",
"n_samples": 5000
},
"training_params": {
"learning_rate": 5e-06,
"batch_size": 32,
"num_epochs": 3,
"weight_decay": 0.001
}
},
"results": {
"curation": {
"dataset_path": "/share/pi/nigam/users/calebwin/hf_cache/med-s1k/med-s1-5k_20250227_140603/med_s1k_formatted",
"timestamp": "2025-02-27T14:06:05.330212",
"stats": {
"total_examples": 25371,
"selected_examples": 1000,
"filtered_examples": 24371,
"filter_reasons": {
"not_selected_in_sampling": 17407,
"base_model_correct": 6964
},
"specialty_distribution": {
"Medical Physics (Diagnostic, Nuclear, Therapeutic)": 13,
"Clinical Biochemical Genetics": 13,
"Physics": 13,
"Pain Medicine": 12,
"Pulmonary Disease": 12,
"Pediatric Critical Care Medicine": 12,
"Neurotology": 12,
"Statistics": 12,
"Obstetrics and Gynecology": 12,
"Adult Congenital Heart Disease": 12,
"Hospice and Palliative Medicine": 12,
"Forensic Psychiatry": 11,
"Orthopaedic Surgery": 11,
"Emergency Medicine": 11,
"Pediatrics": 11,
"Maternal-Fetal Medicine": 11,
"Adult Cardiac Anesthesiology": 11,
"General Knowledge": 11,
"Clinical Genetics and Genomics (MD)": 11,
"Neonatal-Perinatal Medicine": 11,
"Aerospace Medicine": 11,
"Nephrology": 10,
"Pathology - Anatomic": 10,
"Complex Pediatric Otolaryngology": 10,
"Pediatric Gastroenterology": 10,
"Health Care Administration, Leadership, and Management": 10,
"Infectious Disease": 10,
"Medical Toxicology": 10,
"Laboratory Genetics and Genomics": 10,
"Endocrinology, Diabetes and Metabolism": 10,
"Pathology - Clinical": 10,
"General Surgery": 9,
"Psychiatry": 9,
"Pathology - Medical Microbiology": 9,
"Occupational and Environmental Medicine": 9,
"Pediatric Pulmonology": 9,
"Pathology - Chemical": 9,
"Public Health and General Preventive Medicine": 9,
"Neurocritical Care": 9,
"Dermatopathology": 9,
"Molecular Genetic Pathology": 9,
"Interventional Cardiology": 9,
"Neurology with Special Qualification in Child Neurology": 9,
"Child Abuse Pediatrics": 9,
"Sleep Medicine": 9,
"Computer Science": 8,
"Ophthalmology": 8,
"Gynecologic Oncology": 8,
"Clinical Informatics": 8,
"Addiction Medicine": 8,
"Math": 8,
"Cardiovascular Disease": 8,
"Pediatric Endocrinology": 8,
"Neuroradiology": 8,
"Transplant Hepatology": 8,
"Economics": 8,
"Complex General Surgical Oncology": 8,
"Surgical Critical Care": 8,
"Reproductive Endocrinology and Infertility": 8,
"Dermatology": 8,
"Critical Care Medicine": 8,
"Pediatric Infectious Diseases": 8,
"Developmental-Behavioral Pediatrics": 8,
"Geriatric Medicine": 7,
"Physical Medicine and Rehabilitation": 7,
"Medical Oncology": 7,
"Diagnostic Radiology": 7,
"Hematology": 7,
"Pediatric Urology": 7,
"Dentistry": 7,
"Adolescent Medicine": 7,
"Pediatric Hematology-Oncology": 7,
"Pathology - Pediatric": 7,
"Anesthesiology": 7,
"Rheumatology": 7,
"Pathology - Anatomic/Pathology - Clinical": 7,
"Thoracic and Cardiac Surgery": 6,
"Education": 6,
"Plastic Surgery Within the Head and Neck*": 6,
"Pathology - Forensic": 6,
"Cytopathology": 6,
"Pediatric Rheumatology": 6,
"Advanced Heart Failure and Transplant Cardiology": 6,
"Child and Adolescent Psychiatry": 6,
"Neurology": 6,
"Politics": 6,
"Law": 6,
"Radiation Oncology": 6,
"Medical Biochemical Genetics": 6,
"Blood Banking/Transfusion Medicine": 6,
"Nuclear Medicine": 6,
"Orthopaedic Sports Medicine": 6,
"Allergy and Immunology": 6,
"Clinical Cardiac Electrophysiology": 6,
"Podiatry": 6,
"Pediatric Cardiology": 6,
"Family Medicine": 5,
"Gastroenterology": 5,
"Urology": 5,
"Surgery of the Hand": 5,
"Colon and Rectal Surgery": 5,
"Undersea and Hyperbaric Medicine": 5,
"Chemistry": 5,
"Pediatric Emergency Medicine": 5,
"History": 5,
"Complex Family Planning": 5,
"Neurological Surgery": 5,
"Internal Medicine": 5,
"Geography": 5,
"Urogynecology and Reconstructive Pelvic Surgery": 5,
"Neuromuscular Medicine": 5,
"Otolaryngology - Head and Neck Surgery": 5,
"Pediatric Dermatology": 5,
"Internal Medicine-Critical Care Medicine": 5,
"Vascular Neurology": 5,
"Neuropathology": 4,
"Plastic Surgery": 4,
"Pediatric Radiology": 4,
"Clinical Neurophysiology": 4,
"Pediatric Surgery": 4,
"Religion": 4,
"Geriatric Psychiatry": 4,
"Astronomy": 4,
"Vascular Surgery": 4,
"Interventional Radiology and Diagnostic Radiology": 4,
"Pediatric Nephrology": 4,
"Hematopathology": 3,
"Pediatric Anesthesiology": 3,
"Sports Medicine": 3,
"Optometry": 3,
"Consultation-Liaison Psychiatry": 3,
"Spinal Cord Injury Medicine": 3,
"Emergency Medical Services": 3,
"Addiction Psychiatry": 3,
"Pediatric Rehabilitation Medicine": 2,
"Pathology - Molecular Genetic": 2,
"Epilepsy": 2,
"Neurodevelopmental Disabilities": 2,
"Nuclear Radiology": 1,
"Biology": 1,
"Congenital Cardiac Surgery": 1
}
}
},
"training": {
"model_path": "/share/pi/nigam/users/calebwin/hf_cache/ckpts/med-s1-5k",
"timestamp": "2025-02-27T18:22:54Z",
"metrics": null
},
"eval": {
"outputs_path": "/share/pi/nigam/users/calebwin/hf_cache/eval/med-s1-5k/med-s1-5keval_data_strict-prompt.json",
"metrics_path": "/share/pi/nigam/users/calebwin/hf_cache/eval/med-s1-5k/med-s1-5keval_data_strict-prompt_metrics.json",
"timestamp": "2025-02-27T20:37:47.999052",
"summary": {
"MedMCQA_validation": {
"accuracy": 0.5785321539564906,
"accuracy_ci": [
0.5625089648577576,
0.5924037771934019
],
"num_correct": 2417,
"total_examples": 4183,
"num_answered": 2420
},
"MedQA_USLME_test": {
"accuracy": 0.6465043205027494,
"accuracy_ci": [
0.6221327572663001,
0.6732325216025137
],
"num_correct": 823,
"total_examples": 1273,
"num_answered": 821
},
"PubMedQA_test": {
"accuracy": 0.763,
"accuracy_ci": [
0.736,
0.790025
],
"num_correct": 763,
"total_examples": 1000,
"num_answered": 763
},
"MMLU-Pro_Medical_test": {
"accuracy": 0.5824104234527687,
"accuracy_ci": [
0.5595928338762215,
0.6078338762214983
],
"num_correct": 894,
"total_examples": 1535,
"num_answered": 886
},
"GPQA_Medical_test": {
"accuracy": 0.4794871794871795,
"accuracy_ci": [
0.4307692307692308,
0.5282692307692307
],
"num_correct": 187,
"total_examples": 390,
"num_answered": 186
}
}
}
}
},
"med-s1-25k": {
"description": "Full dataset without curation",
"config": {
"model_key": "llama3.1:8b",
"curation": {
"method": "all",
"n_samples": 25371
},
"training_params": {
"learning_rate": 1e-05,
"batch_size": 64,
"num_epochs": 2,
"weight_decay": 0.001
}
},
"results": {
"curation": {
"dataset_path": "/share/pi/nigam/users/calebwin/hf_cache/med-s1k/med-s1-25k_20250227_140738/med_s1k_formatted",
"timestamp": "2025-02-27T14:07:45.576891",
"stats": {
"total_examples": 25371,
"selected_examples": 25371,
"filtered_examples": 24371,
"filter_reasons": {
"not_selected_in_sampling": 17407,
"base_model_correct": 6964
},
"specialty_distribution": {
"General Knowledge": 750,
"Infectious Disease": 731,
"Neurology": 712,
"Gastroenterology": 688,
"Math": 600,
"Psychiatry": 597,
"Obstetrics and Gynecology": 551,
"Endocrinology, Diabetes and Metabolism": 542,
"Dentistry": 501,
"Pulmonary Disease": 474,
"Physics": 444,
"Public Health and General Preventive Medicine": 426,
"Cardiovascular Disease": 422,
"Nephrology": 415,
"Maternal-Fetal Medicine": 406,
"Ophthalmology": 391,
"Hematology": 374,
"Otolaryngology - Head and Neck Surgery": 369,
"Health Care Administration, Leadership, and Management": 356,
"Pediatrics": 293,
"General Surgery": 289,
"Dermatology": 271,
"Rheumatology": 264,
"Orthopaedic Surgery": 256,
"Clinical Genetics and Genomics (MD)": 249,
"Internal Medicine": 239,
"Urology": 209,
"Medical Toxicology": 204,
"Anesthesiology": 202,
"Economics": 196,
"Pediatric Infectious Diseases": 183,
"Allergy and Immunology": 178,
"Pediatric Hematology-Oncology": 177,
"Law": 176,
"Medical Oncology": 175,
"Emergency Medicine": 175,
"Vascular Surgery": 162,
"Neonatal-Perinatal Medicine": 160,
"Pathology - Anatomic": 150,
"Clinical Informatics": 147,
"Medical Physics (Diagnostic, Nuclear, Therapeutic)": 145,
"Computer Science": 143,
"Clinical Biochemical Genetics": 133,
"Pediatric Endocrinology": 133,
"Chemistry": 131,
"Pediatric Cardiology": 122,
"Pathology - Forensic": 121,
"Reproductive Endocrinology and Infertility": 114,
"Pediatric Nephrology": 111,
"Gynecologic Oncology": 109,
"Pediatric Gastroenterology": 109,
"Pathology - Chemical": 109,
"Critical Care Medicine": 106,
"Education": 102,
"Neurology with Special Qualification in Child Neurology": 100,
"Pediatric Surgery": 99,
"Neurological Surgery": 94,
"Pediatric Dermatology": 86,
"Statistics": 79,
"Clinical Cardiac Electrophysiology": 79,
"Family Medicine": 74,
"Forensic Psychiatry": 74,
"Pediatric Pulmonology": 70,
"Addiction Medicine": 68,
"Developmental-Behavioral Pediatrics": 66,
"Surgery of the Hand": 64,
"Child and Adolescent Psychiatry": 58,
"Occupational and Environmental Medicine": 58,
"Colon and Rectal Surgery": 54,
"Advanced Heart Failure and Transplant Cardiology": 54,
"Pathology - Medical Microbiology": 52,
"Thoracic and Cardiac Surgery": 51,
"Sports Medicine": 51,
"Vascular Neurology": 50,
"Neurotology": 50,
"Complex Pediatric Otolaryngology": 45,
"History": 45,
"Orthopaedic Sports Medicine": 42,
"Diagnostic Radiology": 42,
"Physical Medicine and Rehabilitation": 41,
"Complex General Surgical Oncology": 39,
"Sleep Medicine": 39,
"Pediatric Emergency Medicine": 38,
"Pediatric Urology": 36,
"Surgical Critical Care": 33,
"Neurocritical Care": 33,
"Astronomy": 33,
"Geriatric Medicine": 32,
"Pediatric Critical Care Medicine": 32,
"Nuclear Medicine": 31,
"Urogynecology and Reconstructive Pelvic Surgery": 30,
"Neuropathology": 29,
"Transplant Hepatology": 27,
"Aerospace Medicine": 27,
"Plastic Surgery": 25,
"Pediatric Anesthesiology": 25,
"Politics": 24,
"Pathology - Anatomic/Pathology - Clinical": 24,
"Pain Medicine": 23,
"Undersea and Hyperbaric Medicine": 22,
"Adolescent Medicine": 22,
"Pediatric Rheumatology": 21,
"Hospice and Palliative Medicine": 21,
"Molecular Genetic Pathology": 20,
"Medical Biochemical Genetics": 20,
"Radiation Oncology": 18,
"Interventional Cardiology": 18,
"Hematopathology": 17,
"Dermatopathology": 17,
"Pathology - Pediatric": 14,
"Complex Family Planning": 14,
"Adult Cardiac Anesthesiology": 14,
"Laboratory Genetics and Genomics": 14,
"Neuroradiology": 12,
"Adult Congenital Heart Disease": 12,
"Blood Banking/Transfusion Medicine": 12,
"Pathology - Clinical": 10,
"Podiatry": 10,
"Child Abuse Pediatrics": 9,
"Plastic Surgery Within the Head and Neck*": 6,
"Cytopathology": 6,
"Spinal Cord Injury Medicine": 6,
"Neuromuscular Medicine": 5,
"Internal Medicine-Critical Care Medicine": 5,
"Geography": 5,
"Religion": 4,
"Pediatric Radiology": 4,
"Interventional Radiology and Diagnostic Radiology": 4,
"Clinical Neurophysiology": 4,
"Geriatric Psychiatry": 4,
"Addiction Psychiatry": 3,
"Emergency Medical Services": 3,
"Consultation-Liaison Psychiatry": 3,
"Optometry": 3,
"Epilepsy": 2,
"Pediatric Rehabilitation Medicine": 2,
"Pathology - Molecular Genetic": 2,
"Neurodevelopmental Disabilities": 2,
"Nuclear Radiology": 1,
"Biology": 1,
"Congenital Cardiac Surgery": 1
}
}
},
"training": {
"model_path": "/share/pi/nigam/users/calebwin/hf_cache/ckpts/med-s1-25k",
"timestamp": "2025-02-28T00:02:23Z",
"metrics": null
},
"eval": {
"outputs_path": "/share/pi/nigam/users/calebwin/hf_cache/eval/med-s1-25k/med-s1-25keval_data.json",
"metrics_path": "/share/pi/nigam/users/calebwin/hf_cache/eval/med-s1-25k/med-s1-25keval_data_metrics.json",
"timestamp": "2025-03-01T06:40:17.940429",
"summary": {
"MedMCQA_validation": {
"accuracy": 0.5888118575185274,
"accuracy_ci": [
0.5715993306239541,
0.6007650011953144
],
"num_correct": 2455,
"total_examples": 4183,
"num_answered": 2463
},
"MedQA_USLME_test": {
"accuracy": 0.7014925373134329,
"accuracy_ci": [
0.6763550667714061,
0.7266496465043204
],
"num_correct": 893,
"total_examples": 1273,
"num_answered": 882
},
"PubMedQA_test": {
"accuracy": 0.777,
"accuracy_ci": [
0.7479750000000001,
0.799
],
"num_correct": 775,
"total_examples": 1000,
"num_answered": 777
},
"MMLU-Pro_Medical_test": {
"accuracy": 0.6058631921824105,
"accuracy_ci": [
0.5824104234527687,
0.628029315960912
],
"num_correct": 930,
"total_examples": 1535,
"num_answered": 930
},
"GPQA_Medical_test": {
"accuracy": 0.47435897435897434,
"accuracy_ci": [
0.4076923076923077,
0.5051282051282051
],
"num_correct": 179,
"total_examples": 390,
"num_answered": 185
}
}
}
}
},
"random-1k": {
"description": "Random sampling with 1k samples",
"config": {
"model_key": "llama3.1:8b",
"curation": {
"method": "random",
"n_samples": 1000
},
"training_params": {
"learning_rate": 2e-06,
"batch_size": 16,
"num_epochs": 5,
"weight_decay": 0.001
}
},
"results": {
"curation": {
"dataset_path": "/share/pi/nigam/users/calebwin/hf_cache/med-s1k/random-1k_20250227_045807/med_s1k_formatted",
"timestamp": "2025-02-27T04:58:09.174433",
"stats": {
"total_examples": 25371,
"selected_examples": 1000,
"filtered_examples": 25329,
"filter_reasons": {
"not_selected_in_sampling": 25049,
"base_model_correct": 280
},
"specialty_distribution": {
"Psychiatry": 31,
"Neurology": 28,
"Dentistry": 28,
"Physics": 27,
"Infectious Disease": 26,
"Obstetrics and Gynecology": 26,
"General Knowledge": 25,
"Math": 24,
"Pulmonary Disease": 23,
"Gastroenterology": 23,
"Endocrinology, Diabetes and Metabolism": 19,
"Public Health and General Preventive Medicine": 14,
"Otolaryngology - Head and Neck Surgery": 14,
"Hematology": 14,
"Clinical Genetics and Genomics (MD)": 13,
"Pediatric Infectious Diseases": 12,
"Nephrology": 12,
"Cardiovascular Disease": 12,
"Health Care Administration, Leadership, and Management": 11,
"Ophthalmology": 11,
"Computer Science": 10,
"Maternal-Fetal Medicine": 10,
"Rheumatology": 10,
"Dermatology": 9,
"Medical Toxicology": 9,
"Law": 9,
"General Surgery": 9,
"Gynecologic Oncology": 9,
"Neonatal-Perinatal Medicine": 9,
"Anesthesiology": 9,
"Economics": 8,
"Orthopaedic Surgery": 8,
"Clinical Biochemical Genetics": 7,
"Clinical Cardiac Electrophysiology": 7,
"Allergy and Immunology": 7,
"Urology": 7,
"Internal Medicine": 7,
"Emergency Medicine": 7,
"Reproductive Endocrinology and Infertility": 6,
"Vascular Surgery": 6,
"Chemistry": 6,
"Pathology - Anatomic": 6,
"Pediatric Nephrology": 6,
"Pediatrics": 6,
"Pediatric Surgery": 6,
"Pathology - Forensic": 5,
"Pediatric Urology": 5,
"Clinical Informatics": 5,
"Pediatric Gastroenterology": 5,
"Pediatric Endocrinology": 5,
"Critical Care Medicine": 5,
"Medical Physics (Diagnostic, Nuclear, Therapeutic)": 5,
"Pediatric Hematology-Oncology": 5,
"Pathology - Chemical": 4,
"Addiction Medicine": 4,
"Pediatric Cardiology": 3,
"Astronomy": 3,
"Complex Pediatric Otolaryngology": 3,
"Developmental-Behavioral Pediatrics": 3,
"Family Medicine": 3,
"Complex General Surgical Oncology": 3,
"Medical Oncology": 3,
"Education": 3,
"Colon and Rectal Surgery": 3,
"Transplant Hepatology": 3,
"Pediatric Emergency Medicine": 3,
"Adult Congenital Heart Disease": 2,
"Advanced Heart Failure and Transplant Cardiology": 2,
"Pathology - Medical Microbiology": 2,
"Sports Medicine": 2,
"Forensic Psychiatry": 2,
"Pathology - Clinical": 2,
"Vascular Neurology": 2,
"Neurotology": 2,
"Urogynecology and Reconstructive Pelvic Surgery": 2,
"Neurological Surgery": 2,
"Undersea and Hyperbaric Medicine": 2,
"Diagnostic Radiology": 2,
"Pediatric Dermatology": 2,
"Physical Medicine and Rehabilitation": 2,
"Podiatry": 1,
"Plastic Surgery": 1,
"Pathology - Anatomic/Pathology - Clinical": 1,
"Pediatric Critical Care Medicine": 1,
"Child and Adolescent Psychiatry": 1,
"Occupational and Environmental Medicine": 1,
"Medical Biochemical Genetics": 1,
"Geriatric Medicine": 1,
"History": 1,
"Statistics": 1,
"Pain Medicine": 1,
"Laboratory Genetics and Genomics": 1,
"Pathology - Pediatric": 1,
"Aerospace Medicine": 1,
"Neuropathology": 1,
"Hematopathology": 1,
"Religion": 1,
"Orthopaedic Sports Medicine": 1,
"Neurocritical Care": 1,
"Radiation Oncology": 1,
"Politics": 1,
"Surgical Critical Care": 1,
"Neuromuscular Medicine": 1,
"Surgery of the Hand": 1,
"Consultation-Liaison Psychiatry": 1
}
}
},
"training": {
"model_path": "/share/pi/nigam/users/calebwin/hf_cache/ckpts/random-1k",
"timestamp": "2025-02-27T18:42:32Z",
"metrics": null
},
"eval": {
"outputs_path": "/share/pi/nigam/users/calebwin/hf_cache/eval/random-1k/random-1keval_data_strict-prompt.json",
"metrics_path": "/share/pi/nigam/users/calebwin/hf_cache/eval/random-1k/random-1keval_data_strict-prompt_metrics.json",
"timestamp": "2025-02-27T20:34:37.710394",
"summary": {
"MedMCQA_validation": {
"accuracy": 0.5761415252211332,
"accuracy_ci": [
0.5606024384413101,
0.5902462347597418
],
"num_correct": 2409,
"total_examples": 4183,
"num_answered": 2410
},
"MedQA_USLME_test": {
"accuracy": 0.6669285153181461,