CoolFace
Datasetpublic

deepplants/cabbage

πŸ₯¬ CABBAGE: Comprehensive Agricultural Benchmark Backed by AI-Guided Evaluation 🌐 Homepage | πŸ† Leaderboard | πŸ€— Dataset | πŸ’» GitHub CABBAGE is a large-scale, multimodal benchmark for evaluating AI systems in agriculture across three complementary task macro-categories: Visual Cognition, Scientific Knowledge, and Procedural Reasoning. Each macro-category contains high-quality, domain-specific subsets built from curated or expert-reviewed sources. Benchmark Tracks… See the full description on the dataset page: https://huggingface.co/datasets/deepplants/cabbage.

sourceHugging Facecc-by-nc-nd-4.0updated 1y agoView on Hugging Face
0likes71downloads
Dataset Card

πŸ₯¬ CABBAGE: Comprehensive Agricultural Benchmark Backed by AI-Guided Evaluation

**🌐 Homepage** | **πŸ† Leaderboard** | **πŸ€— Dataset** | **πŸ’» GitHub**

Table of Contents

Dataset Description

  • β€”Homepage: https://huggingface.co/datasets/boilnserve/cabbage
  • β€”Repository: https://github.com/boilnserve/cabbage
  • β€”Paper: Not yet published
  • β€”Leaderboard: https://huggingface.co/datasets/boilnserve/cabbage
  • β€”Size of downloaded dataset files: 3.74 GB
  • β€”Size of the auto-converted Parquet files: 240.84 MB
  • β€”Number of rows: 74,206

CABBAGE is a large-scale, multimodal benchmark for evaluating AI systems in agriculture across three complementary task macro-categories: Visual Cognition, Scientific Knowledge, and Procedural Reasoning. Each macro-category contains high-quality, domain-specific subsets built from curated or expert-reviewed sources.

Benchmark Tracks and Subsets

<img src="https://cdn-uploads.huggingface.co/production/uploads/6824cf491019386a26b831c1/PYEaWom37vSKPDfKqt7fo.png" width="600"/>

πŸ–ΌοΈ Agronomic Visual Cognition

Evaluates image-based plant understanding and visual QA.

  • β€”`eppo`: Plant pest and disease image classification (from EPPO data)
  • β€”`plantnet`: Species-level classification using Pl@ntNet imagery
  • β€”`bppq`: The Big Plant Pathology Quiz β€” visual QA for pathology

πŸ“š Agricultural Scientific Knowledge

Tests scientific factual knowledge, retrieval, and reasoning over structured agronomic data.

  • β€”`agriexam`: Multiple-choice exams from official agricultural education materials
  • β€”`cca_ceu`: Multiple-choice questions from the Certified Crop Adviser datasets and Continuing Education Unit materials
  • β€”`embrapa`: Questions derived from Brazilian Agricultural Research Corporation technical guide series

πŸ› οΈ Agricultural Procedural Reasoning

Challenges models on procedural tasks derived from domain-relevant manuals and wikiHow entries.

  • β€”`wikihow_arrange`: Arrange steps of an agricultural procedure in the correct order
  • β€”`wikihow_missing`: Identify missing steps in an agricultural workflow
  • β€”`wikihow_next`: Predict the next step in a given task
  • β€”`wikihow_all`: Generate the full sequence of steps required to carry out an agricultural task

Loading the Dataset

You can load any specific configuration and split using the Hugging Face datasets library:

python
from datasets import load_dataset

# Example: Load all the splits from the Agronomic Visual Cognition subset
dataset_dict = load_dataset("deepplants/cabbage", name="agronomic_visual_cognition")

# Example: Load the Embrapa split from the Agricultural Scientific Knowledge subset
dataset = load_dataset("deepplants/cabbage", name="agricultural_scientific_knowledge", split="embrapa")