Add README with per-config metadata
Browse files
README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
pretty_name: COSPLAN
|
| 4 |
+
configs:
|
| 5 |
+
- config_name: checkboard
|
| 6 |
+
data_files:
|
| 7 |
+
- split: test
|
| 8 |
+
path: checkboard/metadata.jsonl
|
| 9 |
+
- config_name: blocksworld
|
| 10 |
+
data_files:
|
| 11 |
+
- split: test
|
| 12 |
+
path: blocksworld/metadata.jsonl
|
| 13 |
+
- config_name: imagenet
|
| 14 |
+
data_files:
|
| 15 |
+
- split: test
|
| 16 |
+
path: imagenet/metadata.jsonl
|
| 17 |
+
- config_name: robovqa
|
| 18 |
+
data_files:
|
| 19 |
+
- split: test
|
| 20 |
+
path: robovqa/metadata.jsonl
|
| 21 |
+
---
|
| 22 |
+
|
| 23 |
+
# COSPLAN
|
| 24 |
+
|
| 25 |
+
A composite visual-planning benchmark with four multiple-choice subsets. Each
|
| 26 |
+
subset is a separate config in HuggingFace `imagefolder` format (images +
|
| 27 |
+
`metadata.jsonl`). Every row has an `image`, a `prompt`, and a `correct_option`
|
| 28 |
+
(A/B/C/D).
|
| 29 |
+
|
| 30 |
+
| Config | Items | Task |
|
| 31 |
+
|--------|-------|------|
|
| 32 |
+
| `checkboard` | 4896 | Grid path planning around obstacles |
|
| 33 |
+
| `blocksworld` | 5000 | Block-stacking move-sequence selection |
|
| 34 |
+
| `imagenet` | 1000 | Image-patch rearrangement validation |
|
| 35 |
+
| `robovqa` | 300 | Robot action-sequence selection |
|
| 36 |
+
|
| 37 |
+
## Usage
|
| 38 |
+
|
| 39 |
+
```python
|
| 40 |
+
from datasets import load_dataset
|
| 41 |
+
ds = load_dataset("shrg7/COSPLAN", "blocksworld", split="test")
|
| 42 |
+
print(ds[0]["prompt"], ds[0]["correct_option"])
|
| 43 |
+
```
|