Update organization profile card
Browse files
README.md
CHANGED
|
@@ -1,21 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
# GSI-Bench
|
| 2 |
|
| 3 |
-
Official Hugging Face organization for **GSI-Bench**.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
-
|
| 6 |
-
- 🌐 Project Page: https://aim-uofa.github.io/GSI-Bench/
|
| 7 |
-
- 💻 Code: [GitHub link]
|
| 8 |
-
- 🤗 Dataset: [dataset repo link]
|
| 9 |
-
- 🧠 Model: [model repo link]
|
| 10 |
-
- 🚀 Demo: [space link]
|
| 11 |
|
| 12 |
-
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
-
|
| 15 |
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 17 |
|
| 18 |
-
|
| 19 |
-
-
|
| 20 |
-
-
|
| 21 |
-
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: GSI-Bench
|
| 3 |
+
emoji: 🧭
|
| 4 |
+
colorFrom: blue
|
| 5 |
+
colorTo: green
|
| 6 |
+
sdk: static
|
| 7 |
+
pinned: false
|
| 8 |
+
---
|
| 9 |
+
|
| 10 |
# GSI-Bench
|
| 11 |
|
| 12 |
+
Official Hugging Face organization for **GSI-Bench**, a benchmark for evaluating generative spatial intelligence in image editing models.
|
| 13 |
+
|
| 14 |
+
- Paper: [arXiv:2604.20570](https://arxiv.org/abs/2604.20570)
|
| 15 |
+
- Project page: https://aim-uofa.github.io/GSI-Bench/
|
| 16 |
+
- Code: https://github.com/aim-uofa/GSI-Bench
|
| 17 |
+
- Dataset: https://huggingface.co/datasets/GSI-Bench/GSI-Bench
|
| 18 |
+
- BAGEL reproduction artifacts: https://huggingface.co/datasets/GSI-Bench/GSI-Bench-bagel-example
|
| 19 |
+
- BAGEL fine-tune checkpoint: https://huggingface.co/GSI-Bench/bagel_finetune_step_10000_nocfg
|
| 20 |
+
- Demo: coming soon
|
| 21 |
|
| 22 |
+
## Resources
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
+
- **Evaluation dataset**: four official GSI-Bench archives plus a small Hugging Face Dataset Viewer preview split.
|
| 25 |
+
- **BAGEL artifacts**: reproduction bundle for published BAGEL results on the `fine` split.
|
| 26 |
+
- **Model checkpoint**: BAGEL fine-tune checkpoint for generation experiments.
|
| 27 |
+
- **Evaluation code**: scripts and documentation in the GitHub repository.
|
| 28 |
|
| 29 |
+
## Quick Start
|
| 30 |
|
| 31 |
+
Install the Hugging Face CLI:
|
| 32 |
+
|
| 33 |
+
```bash
|
| 34 |
+
pip install -U huggingface_hub
|
| 35 |
+
```
|
| 36 |
+
|
| 37 |
+
Download the official evaluation archives:
|
| 38 |
+
|
| 39 |
+
```bash
|
| 40 |
+
hf download GSI-Bench/GSI-Bench \
|
| 41 |
+
fine_dataset.zip mesatask_dataset.zip bathroom_dataset.zip robothor_dataset.zip \
|
| 42 |
+
--repo-type dataset --local-dir GSI-Bench
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
Download the BAGEL reproduction artifacts:
|
| 46 |
|
| 47 |
+
```bash
|
| 48 |
+
hf download GSI-Bench/GSI-Bench-bagel-example \
|
| 49 |
+
--repo-type dataset --local-dir bagel_example
|
| 50 |
+
```
|