Add paper link, GitHub link, and sample usage
#1
by
nielsr HF Staff - opened
README.md
CHANGED
|
@@ -1,12 +1,19 @@
|
|
| 1 |
---
|
| 2 |
-
license: mit
|
| 3 |
-
task_categories:
|
| 4 |
-
- question-answering
|
| 5 |
language:
|
| 6 |
- en
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
---
|
|
|
|
| 8 |
# DISBench: DeepImageSearch Benchmark
|
| 9 |
|
|
|
|
|
|
|
| 10 |
DISBench is the first benchmark for context-aware image retrieval over visual histories. It contains 122 queries across 57 users and 109,467 photos, requiring multi-step reasoning over corpus-level context.
|
| 11 |
|
| 12 |
## Download
|
|
@@ -23,6 +30,28 @@ huggingface-cli download RUC-NLPIR/DISBench --local-dir DISBench
|
|
| 23 |
python download_images.py --photo-ids-path photo_ids --images-path images
|
| 24 |
```
|
| 25 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 26 |
|
| 27 |
## File Structure
|
| 28 |
|
|
@@ -93,10 +122,6 @@ Each line is a JSON object representing one photo's metadata:
|
|
| 93 |
|
| 94 |
> **Note:** Optional fields (`longitude`, `latitude`, `accuracy`, `address`, `capturedevice`) are omitted entirely when unavailable — they will not appear as keys in the JSON object.
|
| 95 |
|
| 96 |
-
### images/{user_id}/{photo_id}.jpg
|
| 97 |
-
|
| 98 |
-
Photo files organized by user. Each user's collection contains approximately 2,000 photos accumulated chronologically from their photosets.
|
| 99 |
-
|
| 100 |
### photo_ids/{user_id}.txt
|
| 101 |
|
| 102 |
Each line represents one photo ID and its hash on aws storage in the format `{photo_id}\t{hash}`:
|
|
@@ -104,11 +129,6 @@ Each line represents one photo ID and its hash on aws storage in the format `{ph
|
|
| 104 |
1205732595 c45044fd7b5c9450b2a11adc6b42d
|
| 105 |
```
|
| 106 |
|
| 107 |
-
| Field | Type | Description |
|
| 108 |
-
|:------|:-----|:------------|
|
| 109 |
-
| `photo_id` | string | Unique photo identifier |
|
| 110 |
-
| `hash` | string | Hashed value of the photo on aws storage |
|
| 111 |
-
|
| 112 |
## Dataset Statistics
|
| 113 |
|
| 114 |
| Statistic | Value |
|
|
@@ -127,6 +147,20 @@ Each line represents one photo ID and its hash on aws storage in the format `{ph
|
|
| 127 |
|
| 128 |
DISBench is constructed from [YFCC100M](https://multimediacommons.wordpress.com/yfcc100m-core-dataset/), which preserves a hierarchical structure of users → photosets → photos. All images are publicly shared under Creative Commons licenses. Photoset boundaries are used during construction but are **not** provided to models during evaluation.
|
| 129 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 130 |
## License
|
| 131 |
|
| 132 |
The DISBench dataset follows the Creative Commons licensing terms of the underlying YFCC100M data. Please refer to individual image licenses for specific usage terms.
|
|
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
| 2 |
language:
|
| 3 |
- en
|
| 4 |
+
license: mit
|
| 5 |
+
task_categories:
|
| 6 |
+
- other
|
| 7 |
+
tags:
|
| 8 |
+
- image-retrieval
|
| 9 |
+
- multimodal-agents
|
| 10 |
+
- visual-history
|
| 11 |
---
|
| 12 |
+
|
| 13 |
# DISBench: DeepImageSearch Benchmark
|
| 14 |
|
| 15 |
+
[**Paper**](https://huggingface.co/papers/2602.10809) | [**GitHub**](https://github.com/RUC-NLPIR/DeepImageSearch) | [**Leaderboard**](https://huggingface.co/spaces/RUC-NLPIR/DISBench-Leaderboard)
|
| 16 |
+
|
| 17 |
DISBench is the first benchmark for context-aware image retrieval over visual histories. It contains 122 queries across 57 users and 109,467 photos, requiring multi-step reasoning over corpus-level context.
|
| 18 |
|
| 19 |
## Download
|
|
|
|
| 30 |
python download_images.py --photo-ids-path photo_ids --images-path images
|
| 31 |
```
|
| 32 |
|
| 33 |
+
## Sample Usage
|
| 34 |
+
|
| 35 |
+
To use DISBench with the ImageSeeker agent framework, you can follow these steps from the official repository:
|
| 36 |
+
|
| 37 |
+
### 1. Installation
|
| 38 |
+
```bash
|
| 39 |
+
git clone https://github.com/RUC-NLPIR/DeepImageSearch.git
|
| 40 |
+
cd DeepImageSearch
|
| 41 |
+
pip install -r requirements.txt
|
| 42 |
+
```
|
| 43 |
+
|
| 44 |
+
### 2. Run the Agent
|
| 45 |
+
```bash
|
| 46 |
+
python ImageSeeker/run_agent.py \
|
| 47 |
+
--dataset_path DISBench \
|
| 48 |
+
--model_name "claude-opus-4-5-20251101" \
|
| 49 |
+
--api_base_url "YOUR_API_BASE_URL" \
|
| 50 |
+
--api_key "YOUR_API_KEY" \
|
| 51 |
+
--embedding_model "qwen3-vl-embedding-8b" \
|
| 52 |
+
--max_turns 30 \
|
| 53 |
+
--output_dir results/claude-opus-4.5/
|
| 54 |
+
```
|
| 55 |
|
| 56 |
## File Structure
|
| 57 |
|
|
|
|
| 122 |
|
| 123 |
> **Note:** Optional fields (`longitude`, `latitude`, `accuracy`, `address`, `capturedevice`) are omitted entirely when unavailable — they will not appear as keys in the JSON object.
|
| 124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 125 |
### photo_ids/{user_id}.txt
|
| 126 |
|
| 127 |
Each line represents one photo ID and its hash on aws storage in the format `{photo_id}\t{hash}`:
|
|
|
|
| 129 |
1205732595 c45044fd7b5c9450b2a11adc6b42d
|
| 130 |
```
|
| 131 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 132 |
## Dataset Statistics
|
| 133 |
|
| 134 |
| Statistic | Value |
|
|
|
|
| 147 |
|
| 148 |
DISBench is constructed from [YFCC100M](https://multimediacommons.wordpress.com/yfcc100m-core-dataset/), which preserves a hierarchical structure of users → photosets → photos. All images are publicly shared under Creative Commons licenses. Photoset boundaries are used during construction but are **not** provided to models during evaluation.
|
| 149 |
|
| 150 |
+
## Citation
|
| 151 |
+
|
| 152 |
+
```bibtex
|
| 153 |
+
@misc{deng2026deepimagesearchbenchmarkingmultimodalagents,
|
| 154 |
+
title={DeepImageSearch: Benchmarking Multimodal Agents for Context-Aware Image Retrieval in Visual Histories},
|
| 155 |
+
author={Chenlong Deng and Mengjie Deng and Junjie Wu and Dun Zeng and Teng Wang and Qingsong Xie and Jiadeng Huang and Shengjie Ma and Changwang Zhang and Zhaoxiang Wang and Jun Wang and Yutao Zhu and Zhicheng Dou},
|
| 156 |
+
year={2026},
|
| 157 |
+
eprint={2602.10809},
|
| 158 |
+
archivePrefix={arXiv},
|
| 159 |
+
primaryClass={cs.CV},
|
| 160 |
+
url={https://arxiv.org/abs/2602.10809}
|
| 161 |
+
}
|
| 162 |
+
```
|
| 163 |
+
|
| 164 |
## License
|
| 165 |
|
| 166 |
The DISBench dataset follows the Creative Commons licensing terms of the underlying YFCC100M data. Please refer to individual image licenses for specific usage terms.
|