cubec commited on
Commit
8f8e335
·
verified ·
1 Parent(s): 0fd6b46

Update README

Browse files
Files changed (1) hide show
  1. README.md +37 -0
README.md CHANGED
@@ -13,3 +13,40 @@ configs:
13
  ---
14
 
15
  # SpatialTunnel
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  ---
14
 
15
  # SpatialTunnel
16
+
17
+ SpatialTunnel is a Blender-rendered diagnostic dataset for studying how vision-language models represent spatial relations internally. It accompanies the contrastive-probing framework introduced in **Why Far Looks Up: Probing Spatial Representation in Vision-Language Models**.
18
+
19
+ Links:
20
+
21
+ - Contrastive-probing code and methodology: https://github.com/cheolhong0916/contrastive-probing
22
+ - Project page: https://cheolhong0916.github.io/whyfarlooksup.github.io/
23
+ - SpatialTunnel generation code: https://github.com/cube-c/spatialtunnel-dataset-gen
24
+
25
+ The benchmark uses simple rendered 3D scenes to isolate spatial-shortcut biases.
26
+
27
+ ## Dataset Configs
28
+
29
+ | Config | File | Rows | Description |
30
+ |---|---:|---:|---|
31
+ | `size_variation` | `size_variation.tsv` | 1,100 | Apparent-size questions under controlled object-size variation. |
32
+ | `phase_variation` | `phase_variation.tsv` | 3,072 | Distance questions with controlled angular-position variation. |
33
+ | `contrastive_probing` | `contrastive_probing.tsv` | 1,200 | Balanced spatial-relation questions for contrastive probing. |
34
+
35
+ ## Format
36
+
37
+ All configs are tab-separated files with the same set of columns:
38
+
39
+ | Column | Description |
40
+ |---|---|
41
+ | `index` | Row index within the selected config. |
42
+ | `image` | Base64-encoded PNG image. |
43
+ | `question` | Spatial question to ask the model. |
44
+ | `A` | First answer choice. |
45
+ | `B` | Second answer choice. |
46
+ | `category` | Gold label for the row. |
47
+
48
+ ## Generation
49
+
50
+ SpatialTunnel scenes are generated in Blender using the separate dataset-generation repository:
51
+
52
+ https://github.com/cube-c/spatialtunnel-dataset-gen