README.md

December 19, 2025 · View on GitHub

SeedBench: A Multi-task Benchmark for Evaluating Large Language Models in Seed Science

English | 简体中文

SeedBench is the first multi-task benchmark designed to evaluate large language models (LLMs) in seed science, focusing on seed breeding. This repository includes the dataset, evaluation code, and documentation to support research in this domain. Here is the usage.


🌾 Overview

SeedBench assesses LLMs across three core seed breeding stages:

  • Gene Information Retrieval
  • Gene Function and Regulation Analysis
  • Variety Breeding with Agronomic Trait Optimization

Breeding Workflow
Breeding Expert Workflow Framework

Built with domain experts, SeedBench features 2,264 expert-validated questions across 11 task types and 10 subcategories, initially targeting rice breeding. Future updates will include other crops like maize, soybean, and wheat.

🔎 Dataset Details

  • Corpus: 308,727 publications cleaned to 1.1 billion tokens; 279 segments from 113 documents.

  • Questions: 2,264 across 11 task types, bilingual (English/Chinese), expert-validated.

  • Focus: Rice breeding as a representative case.

    Types and metrics:

    Type IDQuestion TypeMetricCount
    Q&A
    QA-1Multiple ChoiceAccuracy200
    QA-2Multiple AnswerMacro-F1187
    QA-3Fill-in-the-BlankROUGE-L224
    QA-4GenerationROUGE-L242
    Summarization
    SUM-1Simple SummarizationROUGE-L225
    SUM-2Key Information ExtractionROUGE-L225
    Reading Comprehension
    RC-1Multiple ChoiceAccuracy113
    RC-2Multiple AnswerMacro-F1108
    RC-3Fill-in-the-BlankROUGE-L221
    RC-4GenerationROUGE-L240
    RC-5Subcategory ClassificationAccuracy279

    Taxonomy Distribution:

    Taxonomy Distribution

☀️ Key Results

We evaluated 26 LLMs, including proprietary, open-source, and domain-specific models. Highlights:

Performance by Question Type

  • Top Performers: DeepSeek-V3 (68.37), GPT-4 (67.88).

    Proprietary LLM Radar

    Open-Source LLM Radar

Performance by Task Types

ModelQA-1QA-2QA-3QA-4SUM-1SUM-2RC-1RC-2RC-3RC-4RC-5Avg
GPT-460.5073.8721.3536.0758.7362.89100.0096.4487.8662.2986.7467.88
DeepSeek-V372.5079.8429.2940.6348.0654.67100.0097.2287.8955.1986.7468.37
Qwen2-72B59.5075.9819.5531.6231.0863.0999.1294.2472.2051.5889.9662.54

Performance by Subcategory

ModelC1C2C3C4C5C6C7C8C9C10Avg
GPT-459.5960.5576.3261.1656.3459.3563.6764.7460.6567.6662.06
DeepSeek-V3-671B56.0362.4274.8163.1755.2358.8468.2369.0466.4668.4863.30
Qwen2-72B51.1658.1074.0759.7251.5857.7658.8561.6356.6959.1157.62
  • Top Performers: DeepSeek-V3-671B (63.30), GPT-4 (62.06).

🐝 Repository Contents

  • base_model_eval/: Used to test base models without dialogue capabilities, i.e., evaluating performance after pretraining.
  • sft_model_eval/: Used to test SFT (Supervised Fine-Tuning) models, with a total of 2,264 questions covering 10 subcategories (see Fig 2).
    • one-shot/: Organized by 11 task types (see Tab 1).
    • zero-shot/: Organized by 11 task types (see Tab 1).
  • corpus/: 279 high-quality text segments and low-quality questions discarded after expert validation.
  • README.md: This file.

🚀 How to Use SeedBench with OpenCompass

To evaluate models on SeedBench, we utilize OpenCompass. Follow the steps below to set up the environment and run the evaluation.

1. Installation

Clone the OpenCompass repository and install the necessary dependencies (including modelscope for dataset downloading).

git clone https://github.com/open-compass/opencompass opencompass
cd opencompass
pip install -e .
pip install modelscope

2. Evaluation

Set the dataset source environment variable and execute the evaluation script. The example below uses Qwen/Qwen2.5-0.5B-Instruct.

DATASET_SOURCE=ModelScope python run.py --hf-type chat \
    --hf-path Qwen/Qwen2.5-0.5B-Instruct \
    --datasets seedbench_gen \
    --debug

📝 Notes:

  • Dataset Download: The initial run may take a few minutes to automatically download the dataset from ModelScope.
  • Local Models: You can replace Qwen/Qwen2.5-0.5B-Instruct with your absolute local path if necessary.
  • Please see Here for details.

📬 Cite

Open an issue on this repository for questions or contributions.

@inproceedings{ying-etal-2025-seedbench,
  title = "{S}eed{B}ench: A Multi-task Benchmark for Evaluating Large Language Models in Seed Science",
  author = "Ying, Jie  and
    Chen, Zihong  and
    Wang, Zhefan  and
    Jiang, Wanli  and
    Wang, Chenyang  and
    Yuan, Zhonghang  and
    Su, Haoyang  and
    Kong, Huanjun  and
    Yang, Fan  and
    Dong, Nanqing",
  editor = "Che, Wanxiang  and
    Nabende, Joyce  and
    Shutova, Ekaterina  and
    Pilehvar, Mohammad Taher",
  booktitle = "Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)",
  month = jul,
  year = "2025",
  address = "Vienna, Austria",
  publisher = "Association for Computational Linguistics",
  url = "https://aclanthology.org/2025.acl-long.1516/",
  pages = "31395--31449",
  ISBN = "979-8-89176-251-0",
  abstract = "Seed science is essential for modern agriculture, directly influencing crop yields and global food security. However, challenges such as interdisciplinary complexity and high costs with limited returns hinder progress, leading to a shortage of experts and insufficient technological support. While large language models (LLMs) have shown promise across various fields, their application in seed science remains limited due to the scarcity of digital resources, complex gene-trait relationships, and the lack of standardized benchmarks. To address this gap, we introduce SeedBench{---}the first multi-task benchmark specifically designed for seed science. Developed in collaboration with domain experts, SeedBench focuses on seed breeding and simulates key aspects of modern breeding processes. We conduct a comprehensive evaluation of 26 leading LLMs, encompassing proprietary, open-source, and domain-specific fine-tuned models. Our findings not only highlight the substantial gaps between the power of LLMs and the real-world seed science problems, but also make a foundational step for research on LLMs for seed design."
}