Evaluates whether large language models can discover genuinely new biological knowledge by generating correct scientific hypotheses or mechanisms from post-release literature, enforcing strict temporal separation to prevent data leakage. Use when the user wants to benchmark on DBench-Bio, or asks about evaluating this task. Reports Score.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add qhjqhj00/research-skills-pool --skill dbench-bio-eval --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Dbench Bio Eval?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/qhjqhj00-dbench-bio-eval)More formats (shields.io, HTML) on the badges page.
---
name: dbench-bio-eval
description: Evaluates whether large language models can discover genuinely new biological knowledge by generating correct scientific hypotheses or mechanisms from post-release literature, enforcing strict temporal separation to prevent data leakage. Use when the user wants to benchmark on DBench-Bio, or asks about evaluating this task. Reports Score.
metadata:
skill_kind: dataset_eval
source_arxiv: 2603.03322
bibtex_key: yang2026dbenchbio
confidence: medium
---
# dbench-bio-eval
> Can Large Language Models Derive New Knowledge? A Dynamic Benchmark for Biological Knowledge Discovery — Chaoqun Yang et al. (2026) (arXiv:2603.03322, 2026)
## What this evaluates
Evaluates whether large language models can discover genuinely new biological knowledge by generating correct scientific hypotheses or mechanisms from post-release literature, enforcing strict temporal separation to prevent data leakage.
## Datasets
- **DBench-Bio** — total ?; splits: test (-1); repo https://github.com/transcend-0/DBench-Bio
## Metrics
- `Score` **(primary)** — range: [0, 5]
- A 5-point evaluation score assessing the correctness and relevance of the model's generated biological mechanism or discovery answer against the ground truth. Higher scores indicate more accurate and specific hypothesis generation.
## Input / output format
**Input**: A question or prompt asking the model to derive a specific biological mechanism or discovery based on recent, post-release scientific literature.
**Output**: A textual answer describing the proposed biological mechanism or discovery.
## Scoring recipe
```python
def compute_score(predictions, gold):
# Rubric inferred from text: 0-5 scale based on correctness/specificity
if prediction is refusal or hallucination:
return 0
elif prediction matches generic textbook knowledge:
return 1
elif prediction partially matches ground truth mechanism:
return 3
elif prediction fully matches ground truth with specific details:
return 5
else:
return 2
```
## Common pitfalls
- Data leakage is mitigated by temporal separation, but models may still rely on pre-training data that overlaps with retrieved tool outputs.
- High performance on static knowledge benchmarks (e.g., MMLU-Pro) does not correlate with discovery ability, making cross-benchmark comparisons misleading.
- Tool-use (RAG/ReAct) often retrieves information already present in the model's internal weights, yielding negligible gains unless the model's reasoning capacity is strong.
## Evidence (verbatim from paper)
> The aggregate performance across all evaluated models remains low (The maximum Score is 5). This underscores the inherent difficulty of knowledge discovery, suggesting that current LLM models have yet to master the ability to derive new knowledge.
## Citation
```bibtex
@misc{yang2026dbenchbio,
title={Can Large Language Models Derive New Knowledge? A Dynamic Benchmark for Biological Knowledge Discovery},
author={Chaoqun Yang et al. (2026)},
year={2026},
note={arXiv:2603.03322}
}
```
- arXiv: 2603.03322
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!