ShutterMuse commited on
Commit
1c4289e
·
verified ·
1 Parent(s): ddd5b90

Add dataset card for CaptureGuide-Bench

Browse files
Files changed (1) hide show
  1. README.md +163 -0
README.md ADDED
@@ -0,0 +1,163 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: CaptureGuide-Bench
3
+ language:
4
+ - en
5
+ - zh
6
+ license: other
7
+ size_categories:
8
+ - n<1K
9
+ tags:
10
+ - image
11
+ - benchmark
12
+ - photography
13
+ - multimodal
14
+ - vision-language
15
+ - composition-recommendation
16
+ - pose-recommendation
17
+ - capture-time-guidance
18
+ - arxiv:2606.25763
19
+ viewer: false
20
+ ---
21
+
22
+ # CaptureGuide-Bench
23
+
24
+ [![arXiv](https://img.shields.io/badge/arXiv-2606.25763-b31b1b.svg)](https://arxiv.org/abs/2606.25763)
25
+ [![HF Paper](https://img.shields.io/badge/Paper-HuggingFace-yellow.svg)](https://huggingface.co/papers/2606.25763)
26
+ [![Project Page](https://img.shields.io/badge/Project-ShutterMuse-blue.svg)](https://lijayuTnT.github.io/ShutterMuse/)
27
+ [![GitHub](https://img.shields.io/badge/GitHub-lijayuTnT%2FShutterMuse-black.svg)](https://github.com/lijayuTnT/ShutterMuse)
28
+ [![Model](https://img.shields.io/badge/Model-ShutterMuse-orange.svg)](https://huggingface.co/ShutterMuse/ShutterMuse)
29
+
30
+ CaptureGuide-Bench is the evaluation benchmark for **ShutterMuse: Capture-Time Photography Guidance with MLLMs**. It evaluates capture-time photography guidance from two complementary perspectives:
31
+
32
+ - **Photographer-side / Composition Recommendation:** given the current framing, decide whether it should be kept, refined, or rejected, and recommend composition boxes when refinement is needed.
33
+ - **Subject-side / Pose Recommendation:** given a scene image, recommend a scene-conditioned portrait pose. ShutterMuse predicts COCO-17 human keypoints with visibility states and can render the recommended pose for evaluation.
34
+
35
+ ## Links
36
+
37
+ | Resource | Link |
38
+ | --- | --- |
39
+ | Paper | [arXiv:2606.25763](https://arxiv.org/abs/2606.25763) |
40
+ | Paper Page | [Hugging Face Papers](https://huggingface.co/papers/2606.25763) |
41
+ | Project Page | [ShutterMuse Project](https://lijayuTnT.github.io/ShutterMuse/) |
42
+ | GitHub Repository | [lijayuTnT/ShutterMuse](https://github.com/lijayuTnT/ShutterMuse) |
43
+ | ShutterMuse Model | [ShutterMuse/ShutterMuse](https://huggingface.co/ShutterMuse/ShutterMuse) |
44
+
45
+ ## Dataset Structure
46
+
47
+ ```text
48
+ CaptureGuide-Bench/
49
+ ├── photographer-side/
50
+ │ └── composition_benchmark/
51
+ │ ├── meta_new.json
52
+ │ └── original_composition/
53
+ └── subject-side/
54
+ ├── paper-benchmark/
55
+ └── paper-benchmark-gt/
56
+ ```
57
+
58
+ ### Photographer-side: Composition Recommendation
59
+
60
+ - **Task:** evaluate composition decision and refinement quality.
61
+ - **Images:** `photographer-side/composition_benchmark/original_composition/` contains 421 benchmark images.
62
+ - **Annotations:** `photographer-side/composition_benchmark/meta_new.json` stores image-level composition metadata, textual rationales, scores, and optional composition boxes.
63
+ - **Main fields:**
64
+ - `origin`: rationale fields for the original framing, including good/bad reasons and composition type labels.
65
+ - `composition_boxes`: candidate refinement boxes. Each `rect` is normalized as `[x1, y1, x2, y2]`.
66
+ - `score`: composition quality score used by the benchmark scripts.
67
+
68
+ ### Subject-side: Pose Recommendation
69
+
70
+ - **Task:** evaluate scene-conditioned portrait pose recommendation.
71
+ - **Input images:** `subject-side/paper-benchmark/` contains 552 scene images.
72
+ - **Reference images:** `subject-side/paper-benchmark-gt/` contains the paired reference/ground-truth images with matching file names.
73
+ - **Evaluation:** the ShutterMuse evaluation code compares generated pose visualizations against the paired references using VLM-based and pose-quality metrics.
74
+
75
+ ## Download
76
+
77
+ ### Download the full benchmark
78
+
79
+ ```bash
80
+ hf download ShutterMuse/CaptureGuide-Bench \
81
+ --repo-type dataset \
82
+ --local-dir CaptureGuide-Bench
83
+ ```
84
+
85
+ ### Download only the photographer-side split
86
+
87
+ ```bash
88
+ hf download ShutterMuse/CaptureGuide-Bench \
89
+ --repo-type dataset \
90
+ --include "photographer-side/*" \
91
+ --local-dir CaptureGuide-Bench
92
+ ```
93
+
94
+ ### Download only the subject-side split
95
+
96
+ ```bash
97
+ hf download ShutterMuse/CaptureGuide-Bench \
98
+ --repo-type dataset \
99
+ --include "subject-side/*" \
100
+ --local-dir CaptureGuide-Bench
101
+ ```
102
+
103
+ ### Download with Python
104
+
105
+ ```python
106
+ from huggingface_hub import snapshot_download
107
+
108
+ snapshot_download(
109
+ repo_id="ShutterMuse/CaptureGuide-Bench",
110
+ repo_type="dataset",
111
+ local_dir="CaptureGuide-Bench",
112
+ )
113
+ ```
114
+
115
+ If you use the official ShutterMuse evaluation scripts, place or symlink the downloaded benchmark as `Benchmark/` under the ShutterMuse repository root:
116
+
117
+ ```bash
118
+ git clone https://github.com/lijayuTnT/ShutterMuse.git
119
+ cd ShutterMuse
120
+ hf download ShutterMuse/CaptureGuide-Bench --repo-type dataset --local-dir Benchmark
121
+ ```
122
+
123
+ The expected paths are:
124
+
125
+ ```text
126
+ ShutterMuse/Benchmark/photographer-side/composition_benchmark/meta_new.json
127
+ ShutterMuse/Benchmark/photographer-side/composition_benchmark/original_composition/
128
+ ShutterMuse/Benchmark/subject-side/paper-benchmark/
129
+ ShutterMuse/Benchmark/subject-side/paper-benchmark-gt/
130
+ ```
131
+
132
+ ## Usage with ShutterMuse Evaluation
133
+
134
+ Install the project dependencies following the [GitHub repository](https://github.com/lijayuTnT/ShutterMuse), then run one benchmark target at a time:
135
+
136
+ ```bash
137
+ bash evaluation/scripts/run_unified_evaluation.sh photographer-model
138
+ bash evaluation/scripts/run_unified_evaluation.sh photographer-baseline
139
+ bash evaluation/scripts/run_unified_evaluation.sh subject
140
+ bash evaluation/scripts/run_unified_evaluation.sh subject-baseline
141
+ ```
142
+
143
+ Common environment variables include `OUTPUT_ROOT`, `PYTHON_BIN`, model checkpoint paths, LoRA checkpoint paths, and API keys such as `GEMINI_API_KEY`, `QWEN_API_KEY`, and `GPT_API_KEY` for VLM-based scoring or API baselines.
144
+
145
+ ## Citation
146
+
147
+ If you use CaptureGuide-Bench, please cite:
148
+
149
+ ```bibtex
150
+ @misc{li2026shuttermuse,
151
+ title = {ShutterMuse: Capture-Time Photography Guidance with MLLMs},
152
+ author = {Li, Jiayu and Fang, Yixiao and Hu, Tianyu and Cheng, Wei and Huang, Ping and Fan, Zheheng and Yu, Gang and Ma, Xingjun},
153
+ year = {2026},
154
+ eprint = {2606.25763},
155
+ archivePrefix = {arXiv},
156
+ primaryClass = {cs.CV},
157
+ url = {https://arxiv.org/abs/2606.25763}
158
+ }
159
+ ```
160
+
161
+ ## License
162
+
163
+ The benchmark is released for research use. Please check the project repository and dataset repository for the latest license and usage terms.