File size: 3,523 Bytes
4ca8048
d70b0e9
 
 
 
 
 
 
 
 
 
 
 
 
5c1b8ef
 
d70b0e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
f6bc456
d70b0e9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
eda7053
d70b0e9
 
 
 
 
f6bc456
4ca8048
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
license: cc-by-4.0
task_categories:
  - multiple-choice
language:
  - en
tags:
  - autonomous-driving
  - spatial-reasoning
  - 3d-reasoning
  - vqa
pretty_name: Driving 3D Spatial Reasoning
size_categories:
  - n<1K
dataset_info:
  features:
    - name: id
      dtype: string
    - name: image
      dtype: image
    - name: category
      dtype: string
    - name: question
      dtype: string
    - name: choices
      sequence: string
    - name: answer
      dtype: string
---

# Open Spatial Reasoning

A multiple-choice dataset of **spatial reasoning questions and answers** for evaluating **3D spatial reasoning** from **single driving images**. Each image contains numbered bounding boxes referencing objects in the scene, and each question probes a model's ability to reconstruct the real 3D scene rather than rely on flat-image shortcuts (e.g. "lower in the frame = closer", "bigger box = nearer").

## Dataset Description

Frontier vision-language models often answer these questions correctly by luck while reasoning incorrectly, leaning on pixel-layout heuristics that break down on elevated roads, slopes, curves, and intersections. This dataset is designed to surface that failure mode by requiring metric 3D reasoning about distance, lateral position, ordering, and heading.

Each sample pairs a driving-scene image with a question, four answer choices, and the correct answer letter.

The images were collected by autonomous vehicles operated by **PlusAI**.

### Data Fields

| Field | Type | Description |
|---|---|---|
| `id` | `string` | Unique question identifier (e.g. `q0002`) |
| `image` | `image` | The driving image with numbered bounding boxes |
| `category` | `string` | The reasoning task type (see categories below) |
| `question` | `string` | The full question, including the reasoning protocol |
| `choices` | `list[string]` | Four answer options, prefixed `A.``D.` |
| `answer` | `string` | The correct answer letter (`A`, `B`, `C`, or `D`) |

### Question Categories

The dataset spans several spatial-reasoning task types, including:

| Category | What it tests |
|---|---|
| `identify_distance_long` | Estimate the absolute distance to an object (binned 0–20m / 20–50m / 50–80m / 80m+) |
| `relative_distance_long` | Estimate the 3D separation between two objects |
| `pick_closer` | Decide which of two objects is closer to the ego vehicle |
| `identify_rightmost` | Identify the object furthest to the right in true 3D space |
| `order_leftmost` | Order several objects left-to-right in 3D space |
| `identify_position` | Classify an object's position relative to ego (e.g. ahead-left, behind-right) |
| `identify_heading` | Determine an object's heading using clock directions (12 = forward, 3 = right) |

## Authors

Anurag Ganguli, [Anshuman Lall](https://huggingface.co/anshuman-reasoncore), Abhishek Bhatia, Xiangyu Gao, Joe Yuan, [Satish Vutukuru](https://huggingface.co/satishvutukuru), [Geoff Wolfe](https://huggingface.co/geoffwolfeRC)

## Citation

If you use this dataset, please cite it:

```bibtex
@misc{driving_3d_spatial_reasoning,
  title  = {Open Spatial Reasoning},
  author = {Anurag Ganguli, Anshuman Lall, Abhishek Bhatia, Xiangyu Gao, Joe Yuan, Satish Vutukuru, Geoff Wolfe},
  year   = {2026},
  howpublished = {\url{https://huggingface.co/datasets/reasoncore/open-spatial-reasoning}}
}
```

## License

Released under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/). Images were collected by autonomous vehicles operated by PlusAI.
---