Add task category metadata and sample usage
Browse filesThis PR improves the dataset card by:
- Adding the `image-text-to-text` task category to the YAML metadata.
- Including a "Sample Usage" section with instructions on how to download the dataset files using the `huggingface-cli`, as found in the official GitHub repository.
- Refining the dataset description based on the paper's abstract to clarify its role as a diagnostic tool for spatial reasoning in Vision-Language Models (VLMs).
- Preserving existing data configurations for correct loading of the TSV files.
README.md
CHANGED
|
@@ -10,17 +10,21 @@ configs:
|
|
| 10 |
- config_name: contrastive_probing
|
| 11 |
data_files: contrastive_probing.tsv
|
| 12 |
sep: "\t"
|
|
|
|
|
|
|
| 13 |
---
|
| 14 |
|
| 15 |
# SpatialTunnel
|
| 16 |
|
| 17 |
-
SpatialTunnel is a Blender-rendered diagnostic dataset for studying how vision-language models represent spatial relations internally. It was introduced in **Why Far Looks Up: Probing Spatial Representation in Vision-Language Models
|
| 18 |
|
| 19 |
-
|
| 20 |
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
-
|
|
|
|
|
|
|
| 24 |
|
| 25 |
## Dataset Configs
|
| 26 |
|
|
@@ -32,7 +36,7 @@ Related resources:
|
|
| 32 |
|
| 33 |
## Format
|
| 34 |
|
| 35 |
-
All configs are tab-separated files with the
|
| 36 |
|
| 37 |
| Column | Description |
|
| 38 |
|---|---|
|
|
@@ -41,11 +45,19 @@ All configs are tab-separated files with the same columns:
|
|
| 41 |
| `question` | Spatial question to ask the model. |
|
| 42 |
| `answer` | Ground-truth answer for the row. |
|
| 43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
---
|
| 45 |
|
| 46 |
## Citation
|
| 47 |
|
| 48 |
-
If you use this dataset, please cite our paper
|
| 49 |
|
| 50 |
```bibtex
|
| 51 |
@article{min2026whyfarlooksup,
|
|
@@ -55,4 +67,4 @@ If you use this dataset, please cite our paper.
|
|
| 55 |
journal = {arXiv preprint arXiv:2605.30161},
|
| 56 |
year = {2026},
|
| 57 |
}
|
| 58 |
-
```
|
|
|
|
| 10 |
- config_name: contrastive_probing
|
| 11 |
data_files: contrastive_probing.tsv
|
| 12 |
sep: "\t"
|
| 13 |
+
task_categories:
|
| 14 |
+
- image-text-to-text
|
| 15 |
---
|
| 16 |
|
| 17 |
# SpatialTunnel
|
| 18 |
|
| 19 |
+
SpatialTunnel is a Blender-rendered diagnostic dataset for studying how vision-language models (VLMs) represent spatial relations internally. It was introduced in the paper: **[Why Far Looks Up: Probing Spatial Representation in Vision-Language Models](https://huggingface.co/papers/2605.30161)**.
|
| 20 |
|
| 21 |
+
The dataset is designed to isolate spatial shortcut biases (like the perspective bias where "higher in image means farther away") by removing background and perspective correlations present in natural images.
|
| 22 |
|
| 23 |
+
### Resources
|
| 24 |
+
|
| 25 |
+
- **Project page:** [https://cheolhong0916.github.io/whyfarlooksup.github.io/](https://cheolhong0916.github.io/whyfarlooksup.github.io/)
|
| 26 |
+
- **Contrastive-probing code:** [https://github.com/cheolhong0916/contrastive-probing](https://github.com/cheolhong0916/contrastive-probing)
|
| 27 |
+
- **SpatialTunnel generation code:** [https://github.com/cube-c/spatialtunnel-dataset-gen](https://github.com/cube-c/spatialtunnel-dataset-gen)
|
| 28 |
|
| 29 |
## Dataset Configs
|
| 30 |
|
|
|
|
| 36 |
|
| 37 |
## Format
|
| 38 |
|
| 39 |
+
All configs are tab-separated files with the following columns:
|
| 40 |
|
| 41 |
| Column | Description |
|
| 42 |
|---|---|
|
|
|
|
| 45 |
| `question` | Spatial question to ask the model. |
|
| 46 |
| `answer` | Ground-truth answer for the row. |
|
| 47 |
|
| 48 |
+
## Sample Usage
|
| 49 |
+
|
| 50 |
+
You can download specific parts of the benchmark using the Hugging Face CLI:
|
| 51 |
+
|
| 52 |
+
```bash
|
| 53 |
+
huggingface-cli download cubec/spatialtunnel contrastive_probing.tsv --repo-type dataset --local-dir ./data
|
| 54 |
+
```
|
| 55 |
+
|
| 56 |
---
|
| 57 |
|
| 58 |
## Citation
|
| 59 |
|
| 60 |
+
If you use this dataset, please cite our paper:
|
| 61 |
|
| 62 |
```bibtex
|
| 63 |
@article{min2026whyfarlooksup,
|
|
|
|
| 67 |
journal = {arXiv preprint arXiv:2605.30161},
|
| 68 |
year = {2026},
|
| 69 |
}
|
| 70 |
+
```
|