loubnabnl HF Staff commited on
Commit
38aeafe
·
verified ·
1 Parent(s): 467bef5

Create bio_evals_and_llms.txt

Browse files
Files changed (1) hide show
  1. bio_evals_and_llms.txt +119 -0
bio_evals_and_llms.txt ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ Biology Benchmarks & Models for Generative LLMs
2
+ =================================================
3
+
4
+ ## Benchmarks for Evaluating Base/Generative LLMs on Biology
5
+
6
+ ### Knowledge-Focused (Multiple Choice)
7
+
8
+ 1. MMLU Biology Subsets
9
+ - Includes: college biology, high school biology, genetics, anatomy, etc.
10
+ - Format: multiple-choice
11
+ - Note: somewhat saturated; GPT-3.5 Turbo was already >70%
12
+ - Good as an easy baseline
13
+
14
+ 2. GPQA Biology (Molecular Biology & Genetics)
15
+ - 78 graduate-level, Google-proof questions
16
+ - Very hard: human PhD experts score ~66.7%, non-expert PhDs ~43.2%
17
+ - One of the best current discriminators for frontier models
18
+ - https://arxiv.org/pdf/2311.12022
19
+
20
+ 3. WMDP-Bio
21
+ - 1,273 questions covering biosecurity-adjacent bio knowledge
22
+ - Topics: reverse genetics, viral vectors, enhanced pandemic pathogens
23
+ - Human PhD experts scored ~60.5%
24
+ - https://www.rand.org/pubs/research_reports/RRA3797-1.html
25
+
26
+ 4. SciEval (Biology subset)
27
+ - ~18,000 questions across chemistry, physics, and biology
28
+ - Organized by Bloom's taxonomy: basic knowledge -> research ability
29
+ - Includes a dynamic subset to prevent data leakage
30
+ - https://github.com/OpenDFM/SciEval
31
+
32
+ 5. SciKnowEval
33
+ - Subsets: biology, chemistry, materials, physics
34
+ - Multiple question types: relation-extraction, MCQ, true/false, generation
35
+ - https://arxiv.org/abs/2406.09098
36
+
37
+ 6. Humanity's Last Exam (HLE)
38
+ - 2,500 expert-level questions, ~11% biology/medicine
39
+ - Extremely hard, designed to challenge frontier models
40
+
41
+ ### QA / Comprehension
42
+
43
+ 7. PubMedQA
44
+ - Yes/no/maybe answers to research questions from PubMed abstracts
45
+ - Tests literature comprehension of biomedical text
46
+
47
+ 8. BioASQ
48
+ - Annual biomedical QA challenge
49
+ - Factoid, list, and yes/no questions from biomedical experts
50
+
51
+ 9. MedQA
52
+ - Medical board exam multiple-choice questions
53
+
54
+ ### Practical / Applied Biology
55
+
56
+ 10. LAB-Bench (Language Agent Biology Benchmark)
57
+ - 2,400+ MCQs testing practical biology research capabilities
58
+ - SeqQA subtask: 15 subtasks on DNA/protein sequence comprehension
59
+ - CloningScenarios: complex multi-step molecular cloning problems
60
+ - https://arxiv.org/abs/2407.10362
61
+
62
+ 11. BixBench
63
+ - 50+ real-world computational biology scenarios, ~300 open-answer questions
64
+ - Tests multi-step analytical trajectories on real biological datasets
65
+ - Very hard: frontier models only achieve ~17% accuracy
66
+ - https://arxiv.org/abs/2503.00096
67
+
68
+ ### Recommended Evaluation Suite (from easy to hard)
69
+ - MMLU-bio (easy baseline)
70
+ - GPQA-bio (hard discriminator)
71
+ - PubMedQA (comprehension)
72
+ - LAB-Bench (practical DNA/cloning tasks)
73
+ - HLE biology subset (frontier-hard)
74
+ - BixBench (agentic, very hard)
75
+
76
+
77
+ ## Generative LLMs Fine-Tuned on Biology / Biomedicine
78
+
79
+ 1. BioMistral (Mistral-7B based)
80
+ - Further pre-trained on PubMed Central
81
+ - Open-source, designed for biomedical text generation
82
+ - https://huggingface.co/BioMistral/BioMistral-7B
83
+
84
+ 2. BioMed-LLaMa-3 (Llama-3-8B based)
85
+ - Instruction-tuned on ~54K biomedical examples
86
+ - https://link.springer.com/chapter/10.1007/978-981-96-0695-5_32
87
+
88
+ 3. BioQwen (Qwen 0.5B/1.5B/1.8B based)
89
+ - Bilingual (Chinese/English) biomedical, two-stage fine-tuning
90
+ - Competitive with larger models on biomedical generation tasks
91
+
92
+ 4. ChatMultiOmics (Llama-based)
93
+ - Instruction-tuned on DNA/RNA/protein sequence tasks
94
+ - Uses the Biology-Instructions dataset (first large-scale multi-omics
95
+ instruction-tuning dataset)
96
+ - https://arxiv.org/abs/2412.19191
97
+
98
+ 5. MedBioLM
99
+ - Fine-tuned + RAG approach
100
+ - 88% on MedQA, 78.9% on PubMedQA, 96% on BioASQ
101
+ - https://arxiv.org/abs/2502.03004
102
+
103
+ Note: For raw DNA sequence understanding (not natural language about biology),
104
+ specialized genomic foundation models exist in a separate category:
105
+ - Evo2 (40B params, trained on 9.3T DNA base pairs, 1M context window)
106
+ - DNABERT-2
107
+ These operate on nucleotide sequences directly, not natural language.
108
+
109
+
110
+ ## Key References
111
+
112
+ - LLMs Outperform Experts on Challenging Biology Benchmarks (MIT, 2025)
113
+ https://arxiv.org/abs/2505.06108
114
+ - Trendlines in AIxBio Evals
115
+ https://www.lennijusten.com/blog/biology-benchmarks/
116
+ - LLM Benchmarks in Life Sciences Overview
117
+ https://intuitionlabs.ai/articles/large-language-model-benchmarks-life-sciences-overview
118
+ - Bridging AI and Biological Sciences (Briefings in Bioinformatics, 2025)
119
+ https://academic.oup.com/bib/article/26/4/bbaf357/8212018