Datasets:
Merge v2 into main: updated collision/physics/compatibility QA + new README
Browse files
README.md
CHANGED
|
@@ -7,16 +7,70 @@ task_categories:
|
|
| 7 |
tags:
|
| 8 |
- vision
|
| 9 |
- benchmark
|
|
|
|
|
|
|
| 10 |
configs:
|
| 11 |
- config_name: collision
|
| 12 |
data_files: "collision/*"
|
| 13 |
-
- config_name: physics
|
| 14 |
-
data_files: "physics/*"
|
| 15 |
- config_name: compatibility
|
| 16 |
data_files: "compatibility/*"
|
| 17 |
- config_name: occlusion
|
| 18 |
data_files: "occlusion/*"
|
|
|
|
|
|
|
| 19 |
---
|
| 20 |
|
| 21 |
-
# CausalSpatial
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 22 |
|
|
|
|
|
|
| 7 |
tags:
|
| 8 |
- vision
|
| 9 |
- benchmark
|
| 10 |
+
- spatial-reasoning
|
| 11 |
+
- causal-reasoning
|
| 12 |
configs:
|
| 13 |
- config_name: collision
|
| 14 |
data_files: "collision/*"
|
|
|
|
|
|
|
| 15 |
- config_name: compatibility
|
| 16 |
data_files: "compatibility/*"
|
| 17 |
- config_name: occlusion
|
| 18 |
data_files: "occlusion/*"
|
| 19 |
+
- config_name: physics
|
| 20 |
+
data_files: "physics/*"
|
| 21 |
---
|
| 22 |
|
| 23 |
+
# CausalSpatial
|
| 24 |
+
|
| 25 |
+
**CausalSpatial** is a visual question answering benchmark for evaluating object-centric causal spatial reasoning in vision-language models. Each question presents a 3D-rendered scene and asks the model to reason about physical outcomes — not just what is visible, but what *would happen* given a specific action or trajectory.
|
| 26 |
+
|
| 27 |
+
## Dataset Structure
|
| 28 |
+
|
| 29 |
+
Each subset shares the same schema:
|
| 30 |
+
|
| 31 |
+
| Field | Type | Description |
|
| 32 |
+
|---|---|---|
|
| 33 |
+
| `id` | string | Unique sample identifier |
|
| 34 |
+
| `question` | string | Multiple-choice question |
|
| 35 |
+
| `answer` | string | Correct option label (e.g. `A`, `B`) |
|
| 36 |
+
| `image` | image | Rendered scene image |
|
| 37 |
+
| `not_sure` | string | Option label corresponding to "Not sure" |
|
| 38 |
+
|
| 39 |
+
## Subsets
|
| 40 |
+
|
| 41 |
+
### `collision` — 413 samples
|
| 42 |
+
A toy car is placed on a floor with objects nearby. The model must judge whether the car will collide with something if it moves forward, and if so, which object to remove to prevent the collision.
|
| 43 |
+
|
| 44 |
+
> *Note: Floor strip spacing encodes depth perspective.*
|
| 45 |
+
|
| 46 |
+
### `compatibility` — 99 samples
|
| 47 |
+
An object is suspended above a container. The model must judge whether the object can fit into the container if it falls freely.
|
| 48 |
+
|
| 49 |
+
> *Note: The falling object is positioned directly above the container.*
|
| 50 |
+
|
| 51 |
+
### `occlusion` — 189 samples
|
| 52 |
+
A car is parked in front of a cabinet. The model must judge whether an item inside the cabinet can be retrieved without being blocked, depending on the car's direction of movement.
|
| 53 |
+
|
| 54 |
+
### `physics` — 311 samples
|
| 55 |
+
Ball trajectory prediction across three sports scenarios:
|
| 56 |
+
- **Soccer**: Will the ball enter the goal along the shown trajectory?
|
| 57 |
+
- **Basketball**: Will the ball go through the basket along the shown arc?
|
| 58 |
+
- **Billiard**: Will a ball reach a pocket given the cue ball's direction?
|
| 59 |
+
|
| 60 |
+
## Usage
|
| 61 |
+
|
| 62 |
+
```python
|
| 63 |
+
from datasets import load_dataset
|
| 64 |
+
|
| 65 |
+
# Load a specific subset
|
| 66 |
+
ds = load_dataset("Mwxinnn/CausalSpatial", name="collision")
|
| 67 |
+
ds = load_dataset("Mwxinnn/CausalSpatial", name="physics")
|
| 68 |
+
ds = load_dataset("Mwxinnn/CausalSpatial", name="compatibility")
|
| 69 |
+
ds = load_dataset("Mwxinnn/CausalSpatial", name="occlusion")
|
| 70 |
+
|
| 71 |
+
print(ds["train"][0])
|
| 72 |
+
```
|
| 73 |
+
|
| 74 |
+
## License
|
| 75 |
|
| 76 |
+
MIT
|
collision/train-00000-of-00001.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1813b54bfd8a210e642b2455185d5ce1a2d266a28dd34cdda28f47639f44772
|
| 3 |
+
size 398628869
|
compatibility/train-00000-of-00001.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:330db82580f2b1e1fc4d7a2b0c181807e8b9650a14726dc7772c29a4a94857aa
|
| 3 |
+
size 262134306
|
physics/train-00000-of-00002.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0f379b6f7b470f9e96dca069fad713f65fba94aca3e5dab003e3ceec135faa68
|
| 3 |
+
size 356780973
|
physics/train-00001-of-00002.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:00367c37d629530267667582c9deb9fabfe3cfd6d68dce336d4229378bbb9638
|
| 3 |
+
size 315231070
|