--- configs: - config_name: default data_files: - split: train path: data/train-* license: cc-by-nc-4.0 task_categories: - image-text-to-text size_categories: - 1K one default config ds = load_dataset("Project-AgML/AgroBench") # Stream without downloading ds = load_dataset("Project-AgML/AgroBench", streaming=True) ``` Every record shares the SAME columns so heterogeneous AgML datasets concatenate cleanly: `id`, `file_names` (one image per row), `messages`, `origin_dataset`, and `raw_metadata`. `raw_metadata` is a JSON-encoded string holding source fields not folded into `messages`/`file_names` (here: the original `source_image` filename and parsed `crop_prefix`); restore it with `json.loads(row["raw_metadata"])`. Image placeholders in `messages` align 1:1 with `file_names`. Using a JSON string (not a native struct) is what lets `concatenate_datasets([...])` work across datasets whose raw fields differ in type. Multi-image rows return images as a list aligned to the `{"type": "image"}` placeholders in messages. # Citation ```bibtex @misc{shinoda2025agrobench, title={AgroBench: Vision-Language Model Benchmark in Agriculture}, author={Shinoda, Risa and Inoue, Nakamasa and Kataoka, Hirokatsu and Onishi, Masaki and Ushiku, Yoshitaka}, year={2025}, eprint={2507.20519}, archivePrefix={arXiv}, primaryClass={cs.CV}, url={https://arxiv.org/abs/2507.20519} } Shinoda, Risa; Inoue, Nakamasa; Kataoka, Hirokatsu; Onishi, Masaki; Ushiku, Yoshitaka (2025), "AgroBench: Vision-Language Model Benchmark in Agriculture", arXiv:2507.20519 ```