Oliver-Ma commited on
Commit
26b6c14
·
verified ·
1 Parent(s): 4890de1

Initial release: Real-3DQA v1.0 benchmark data + point clouds

Browse files
README.md CHANGED
@@ -1,3 +1,121 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - question-answering
5
+ - visual-question-answering
6
+ language:
7
+ - en
8
+ tags:
9
+ - 3D
10
+ - spatial-reasoning
11
+ - point-cloud
12
+ - ScanNet
13
+ - SQA3D
14
+ - benchmark
15
+ - debiasing
16
+ - viewpoint-rotation
17
+ size_categories:
18
+ - 1K<n<10K
19
+ pretty_name: Real-3DQA
20
+ ---
21
+
22
+ # Real-3DQA
23
+
24
+ **Do 3D Large Language Models Really Understand 3D Spatial Relationships?**
25
+
26
+ 🌐 [Project Page](https://real-3dqa.github.io/) · 📄 [Paper (ICLR 2026)](https://openreview.net/forum?id=3vlMiJwo8b) · 💻 [GitHub](https://github.com/Real-3DQA/Real-3DQA.github.io)
27
+
28
+ ## Overview
29
+
30
+ Real-3DQA is a debiased 3D spatial QA benchmark with **viewpoint rotation consistency** evaluation. It addresses two key shortcomings of existing benchmarks:
31
+
32
+ 1. **Language Shortcut Filtering** — Questions answerable through linguistic priors alone are removed by comparing 3D-LLMs against blind text-only counterparts.
33
+ 2. **Viewpoint Rotation Score (VRS)** — Each question is augmented with 4 viewpoints (0°, 90°, 180°, 270°) to test whether models produce consistent answers regardless of the observer's orientation.
34
+
35
+ ## Dataset Structure
36
+
37
+ ```
38
+ data/
39
+ ├── rotation_0.json # 750 questions at original (0°) viewpoint
40
+ ├── rotation_90.json # same questions rotated 90° counter-clockwise
41
+ ├── rotation_180.json # same questions rotated 180°
42
+ └── rotation_270.json # same questions rotated 270° counter-clockwise
43
+
44
+ point_clouds/
45
+ ├── scene0025_00.pth # Pre-processed ScanNet point clouds (33 scenes)
46
+ ├── scene0046_00.pth
47
+ └── ...
48
+ ```
49
+
50
+ ## Data Format
51
+
52
+ Each JSON file contains 750 questions. Each question has the following fields:
53
+
54
+ | Field | Type | Description |
55
+ |-------|------|-------------|
56
+ | `question_id` | string | Unique identifier. Rotated versions append `01`/`02`/`03` suffix |
57
+ | `scene_id` | string | ScanNet scene identifier (e.g., `scene0300_00`) |
58
+ | `question_type` | string | One of: `distance`, `direction`, `counting`, `existence` |
59
+ | `situation` | string | Natural language description of the observer's position and orientation |
60
+ | `question` | string | The spatial question |
61
+ | `answer` | string | Ground-truth answer |
62
+ | `position` | object | Observer position `{x, y, z}` in ScanNet coordinates (z=0, ground plane) |
63
+ | `rotation` | object | Observer orientation as quaternion `{_x, _y, _z, _w}` (rotation around Z-axis) |
64
+
65
+ ### Example
66
+
67
+ ```json
68
+ {
69
+ "question_id": "220602000035",
70
+ "scene_id": "scene0300_00",
71
+ "question_type": "distance",
72
+ "situation": "I am facing the divider with the bookshelf on my right side.",
73
+ "question": "What is the first object closest to my left?",
74
+ "answer": "window",
75
+ "position": {"x": 1.032, "y": 0.734, "z": 0},
76
+ "rotation": {"_x": 0, "_y": 0, "_z": 0.996, "_w": 0.087}
77
+ }
78
+ ```
79
+
80
+ ## Question Type Distribution
81
+
82
+ | Type | Count | Description |
83
+ |------|-------|-------------|
84
+ | Distance | 594 | "What is closest to my left?" |
85
+ | Direction | 113 | "In which direction is X relative to me?" |
86
+ | Counting | 30 | "How many X are behind me?" |
87
+ | Existence | 13 | "Is there a X on my right?" |
88
+
89
+ ## Point Clouds
90
+
91
+ The `point_clouds/` directory contains 33 pre-processed ScanNet v2 point clouds in `.pth` format (from the [SQA3D](https://sqa3d.github.io/) processing pipeline). These cover all scenes referenced in the benchmark.
92
+
93
+ ## Evaluation
94
+
95
+ **Exact Match (EM):** Standard QA accuracy at each rotation angle.
96
+
97
+ **Viewpoint Rotation Score (VRS):** A question is scored as correct only if the model answers **all 4 rotations** correctly. This measures genuine 3D understanding rather than lucky guesses.
98
+
99
+ ## Contributing
100
+
101
+ We welcome community contributions! If you find any data issues (incorrect answers, mismatched situations, etc.):
102
+
103
+ 1. Open a **Pull Request** via the "Community" tab
104
+ 2. In the PR description, specify the `question_id`, what's wrong, and the proposed correction
105
+ 3. We will review and merge valid corrections
106
+
107
+ ## Citation
108
+
109
+ ```bibtex
110
+ @inproceedings{ma2026real3dqa,
111
+ title={Do 3D Large Language Models Really Understand 3D Spatial Relationships?},
112
+ author={Xianzheng Ma and Tao Sun and Shuai Chen and Yash Bhalgat and Jindong Gu and Angel X Chang and Iro Armeni and Iro Laina and Songyou Peng and Victor Adrian Prisacariu},
113
+ booktitle={The Fourteenth International Conference on Learning Representations},
114
+ year={2026},
115
+ url={https://openreview.net/forum?id=3vlMiJwo8b}
116
+ }
117
+ ```
118
+
119
+ ## License
120
+
121
+ This dataset is released under the [Creative Commons Attribution 4.0 International License](http://creativecommons.org/licenses/by/4.0/).
data/rotation_0.json ADDED
The diff for this file is too large to render. See raw diff
 
data/rotation_180.json ADDED
The diff for this file is too large to render. See raw diff
 
data/rotation_270.json ADDED
The diff for this file is too large to render. See raw diff
 
data/rotation_90.json ADDED
The diff for this file is too large to render. See raw diff
 
point_clouds/scene0025_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a5f1aa002e15425e49c49b817083e5d77e2ce88c1975ccd3dbb6b118c39df3c1
3
+ size 8223151
point_clouds/scene0046_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:661a006b6b7328c859f4ee864708035ec6f4f2605e1fc6f0124a451bca18180b
3
+ size 8920431
point_clouds/scene0050_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18b63c883186fed79710b0d0fe8bf78c4893395975a55c7e6fce49fd54a83534
3
+ size 10215151
point_clouds/scene0203_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4429ed4d90c57de5b93a263264926e8a58aed71418bb520da7d17910c371656c
3
+ size 9765487
point_clouds/scene0221_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b6525974e3dc2eb7c3140e78cafd44562bda620f7d5d4f700f70cfc652a08603
3
+ size 8906863
point_clouds/scene0222_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bbc994350cec5d14a5e28a273af16159690ec758eeae20e982960252a9d5e50f
3
+ size 11431279
point_clouds/scene0231_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba0a5051774396b077974867073dc3769887008cc2d6878eacfbf0f8bffece73
3
+ size 20101935
point_clouds/scene0246_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10703af089c7bf4c61ee59245771c15761193324357cad7f31a1f367e321ef78
3
+ size 9721583
point_clouds/scene0256_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8d6a00da89fad36992a4b8f76074d7b477126ff5b47f45b746dc3197ddf35ca8
3
+ size 5296559
point_clouds/scene0278_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:32f7c6955c5759a14b57495945f50edd1dd940beccae102481fea76a82554af0
3
+ size 3712623
point_clouds/scene0300_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce26f235add46fd7b5a90fb00b5cc8ac04bf44a23fce88ad4035faa932dd0ddf
3
+ size 6789935
point_clouds/scene0351_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:17c5a5bfabb4c21b5b4f02723012517f91655feee2d3545a4a08d59700fcb9d2
3
+ size 8203759
point_clouds/scene0353_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ca28c68d37c0dd9348eb8ac8b7c794fa3ace31ea7477509f72524a99694386c
3
+ size 10056367
point_clouds/scene0377_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5c86bb0e8854fc4b9da6c98515aef79e57140168a5e6d98efea2dbaf0a35b0f4
3
+ size 5536431
point_clouds/scene0378_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:37a5301a19083981fae165972a2860161b9163c479575acfc50b4abce3ee6257
3
+ size 7544559
point_clouds/scene0389_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:651086999435dab7af53b11e3b6ed7ab89a7d58bb389e6d2eac074d905b310aa
3
+ size 9649711
point_clouds/scene0426_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f93ad84990824f5474359602bea04943568e27c3904523bc11b0c8ca8bb62271
3
+ size 6513711
point_clouds/scene0435_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3f142548d292f710b7dbc6396c1f2e2f41c882279d4d10d0a5f35f6a0cf38da8
3
+ size 12170159
point_clouds/scene0535_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:72ec19f0e1fd10ade98b4ac90d815748f8e29a22097722c64ff39e90a7b8da46
3
+ size 4350063
point_clouds/scene0565_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a4a0ed4d21f32bc9e59b093449446079ac451b2629c28d5ae0f58da506130e1f
3
+ size 8202095
point_clouds/scene0578_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:efda925f9fd0e377ff6d3038c1e3c2c302bb99727cf8444b4a8585414c668fd0
3
+ size 7094639
point_clouds/scene0591_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:01ee1de31077b44669a18b4083853a751b79095c7df2bcd0e8d6bc2a17481257
3
+ size 8531375
point_clouds/scene0593_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:84f60819a845a4c329b85ad6eb1f0d9d3586f3cb224fb6ddd77d1af2d2283a97
3
+ size 10148015
point_clouds/scene0606_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f7bd257a0df33235110af128f2d3fa45192ebb912db27f9da3046bc05b0e1b99
3
+ size 7998959
point_clouds/scene0607_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3df5eb20cb63ba7bafa9f1521b5c1937549461137227473c7871fc2e88b356f6
3
+ size 5375727
point_clouds/scene0616_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b53807c3a20fb42f90c36cd19c78512ae1e46292c6c8890bc3046732c4cef4fb
3
+ size 14746479
point_clouds/scene0633_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b34d2c3356d9cd62257669ce505aa5ac2e84b66576970ed4d2ee102a541337ff
3
+ size 4827823
point_clouds/scene0644_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28de9cb21d57fb9422c24cc44886b31d658998745caf6b1d06af8e9f326d8ac0
3
+ size 14377327
point_clouds/scene0645_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:79da33c0f329ca3d6a31aaed852f4044d41ea68fc9dc5d01745041b7617f10f1
3
+ size 16779823
point_clouds/scene0651_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b26d10bff04fabed311e549b1a68f164a5efba4d3d1f649041cde15a731e27d2
3
+ size 4152367
point_clouds/scene0653_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e6b8d1e5c52ff56ec5cbfc61f5f30d8308369ac2be3d8db344d49df76998b478
3
+ size 13400239
point_clouds/scene0690_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f9a505cf506f61dda84aca9e7c31035d01959158eeeb805ea26ba77a75e5705
3
+ size 5028079
point_clouds/scene0700_00.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e385ae14eeffd5dba2b052afd9fa8fbfbe7a489d02d3dbe11d825912880e612
3
+ size 7970671