Datasets:
Formats:
json
Languages:
English
Size:
10K - 100K
Tags:
visual-grounding
referring-expression-comprehension
referring-expression-segmentation
agriculture
benchmark
mlcroissant
License:
File size: 6,453 Bytes
543a2c8 | 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 | ---
pretty_name: AgroVG
license: other
task_categories:
- object-detection
- image-segmentation
tags:
- visual-grounding
- referring-expression-comprehension
- referring-expression-segmentation
- agriculture
- benchmark
- mlcroissant
size_categories:
- 10K<n<100K
language:
- en
configs:
- config_name: t1_annotations
data_files:
- split: dev
path: t1/annotations/dev.jsonl
- split: test
path: t1/annotations/test.jsonl
- config_name: t1_queries
data_files:
- split: dev
path: t1/queries/queries_dev.jsonl
- split: test
path: t1/queries/queries_test.jsonl
- config_name: t2_annotations
data_files:
- split: dev
path: t2/annotations/dev.jsonl
- split: test
path: t2/annotations/test.jsonl
- config_name: t2_queries
data_files:
- split: dev
path: t2/queries/queries_dev.jsonl
- split: test
path: t2/queries/queries_test.jsonl
---
# AgroVG
AgroVG is a large-scale benchmark for agricultural visual grounding. It contains two evaluation tasks:
- **T1: box-set visual grounding**, where a model receives an agricultural referring expression and returns a set of bounding boxes.
- **T2: query-level mask grounding**, where a model receives an agricultural referring expression and returns a binary segmentation mask.
This repository is the anonymized public-release package prepared for peer review and archival hosting. It contains only release data and metadata; construction scripts, model predictions, and evaluation code should be hosted in a separate code repository.
Dataset URL for review: https://huggingface.co/datasets/sauryrs/AgroVG
## Dataset Composition
| Task | Images | Queries | Output target | Main files |
|---|---:|---:|---|---|
| T1 | 6,526 | 6,526 | Bounding-box set | `t1/annotations`, `t1/images`, `t1/queries` |
| T2 | 3,545 | 3,545 | Query-level binary mask | `t2/annotations`, `t2/images`, `t2/instance_maps`, `t2/queries` |
| Total | 10,071 | 10,071 | Boxes or masks | `t1`, `t2` |
## Repository Structure
```text
AgroVG/
README.md
LICENSE
CITATION.cff
croissant.json
NOTICE
source_licenses.json
t1/
annotations/
annotations.jsonl
dev.jsonl
test.jsonl
final_audit_table.csv
policy.json
final_stats.json
split_stats.json
kept_ids.txt
dropped_ids.txt
images/
<source>/
queries/
queries_dev.jsonl
queries_test.jsonl
query_policy.json
query_stats.json
t2/
annotations/
annotations.jsonl
dev.jsonl
test.jsonl
final_audit_table.csv
policy.json
final_stats.json
split_stats.json
kept_ids.txt
dropped_ids.txt
images/
<source>/
instance_maps/
<source>/
queries/
queries_dev.jsonl
queries_test.jsonl
query_policy.json
query_stats.json
```
All `rgb_relpath` and `mask_relpath` fields are relative to the corresponding task root (`t1/` or `t2/`).
## Annotation Records
Each image annotation record contains:
- `image_id`: stable image identifier.
- `source`: normalized source-dataset key.
- `scene_family`: benchmark-level scene family.
- `sensor_type`: imaging context when available.
- `task_candidates`: task list, e.g. `["T1"]` or `["T2"]`.
- `annotation_type`: `bbox` for T1 and `instance_mask` for T2.
- `rgb_relpath`: relative RGB image path.
- `mask_relpath`: relative uint16 instance-map path for T2.
- `width`, `height`: image dimensions.
- `group_id`: group identifier used to avoid split leakage.
- `split_source`: source-side split label when available.
- `benchmark_split`: `dev` or `test`.
- `instances`: normalized instance annotations.
- `meta`: source-specific metadata retained for auditability.
T1 instances include `object_id`, `class_family_global`, source-derived class labels, and `bbox_xyxy`. T2 instances additionally include `instance_local_id`, mask-derived geometry, mask area statistics, and mask-generation provenance when applicable.
## Query Records
Each query record contains the common fields:
- `query_id`
- `image_id`
- `benchmark_split`
- `source`
- `scene_family`
- `sensor_type`
- `rgb_relpath`
- `width`
- `height`
- `group_id`
- `query`
- `query_type`
- `program_type`
- `template_id`
- `target_object_ids`
- `target_count`
- `is_empty`
- `meta`
T1 query records additionally include `target_boxes`. T2 query records additionally include `mask_relpath` and `target_instance_local_ids`.
## Splits
AgroVG uses `dev` and `test` splits. Split construction is group-aware: records sharing a `group_id` are assigned to the same benchmark split to reduce leakage across visually related images.
## Evaluation
T1 evaluates set-level box grounding with IoU-thresholded matching. T2 evaluates query-level mask grounding with overlap-based mask metrics and separate target-absent accuracy. Evaluation scripts are not included in this data-only package and should be released in the accompanying code repository.
## Licensing
AgroVG-specific annotations, query templates, audit metadata, and derived benchmark metadata are released under Creative Commons Attribution 4.0 International (CC BY 4.0), included in `LICENSE`.
Images and source-derived annotations retain the licenses, terms, and redistribution permissions of their original source datasets. Source-level license and attribution information is summarized in `source_licenses.json` and `NOTICE`. Non-public permission correspondence is intentionally not included in this anonymized review package.
## Responsible Use and Limitations
AgroVG is intended for research on agricultural visual grounding, referring-expression comprehension, referring segmentation, and robustness analysis across agricultural domains. It is not intended for direct deployment in farm-management, pesticide, disease-treatment, yield-estimation, or safety-critical agricultural decision systems without additional domain validation.
Known limitations include source-dataset heterogeneity, uneven geographic and crop coverage, possible source-specific annotation biases, and the fact that AgroVG normalizes existing source labels rather than re-certifying all taxonomic labels from scratch.
## Citation
This anonymized release is associated with a NeurIPS 2026 submission. Please cite the accompanying anonymous submission during review. The citation metadata in `CITATION.cff` should be updated with final author names, venue information, and DOI after the review process.
|