simver commited on
Add files using upload-large-folder tool
Browse files- cube1/README.md +59 -0
- cube1/data/C001.json +215 -0
- cube1/data/C002.json +200 -0
- cube2/README.md +55 -0
- cube2/catalog.json +512 -0
- cube2/images/C184/initial_net.png +3 -0
- cube2/images/C184/target_top_face.png +3 -0
- cube2/images/C185/initial_net.png +3 -0
- cube2/images/C185/target_top_face.png +3 -0
- cube2/images/C186/initial_net.png +3 -0
- cube2/images/C186/target_top_face.png +3 -0
- cube2/images/C187/initial_net.png +3 -0
- cube2/images/C187/target_top_face.png +3 -0
- cube2/images/C188/initial_net.png +3 -0
- cube2/images/C488/target_top_face.png +3 -0
- cube2/images/C489/initial_net.png +3 -0
- cutrope/README.md +72 -0
- cutrope/test.jsonl +0 -0
- lamp/README.md +78 -0
- voi/README.md +51 -0
cube1/README.md
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# SimVerse / cube1
|
| 2 |
+
|
| 3 |
+
Cube reconstruction (six-face map): given a blank cross net of a cube and a top-down image of the bottom-face imprints stamped along a roll path, reconstruct the patternId and rotation of every outer face.
|
| 4 |
+
|
| 5 |
+
- **Records:** 502 levels
|
| 6 |
+
- **Modality:** blank cross net image + top-down path-imprint image
|
| 7 |
+
- **Output:** `{"faces": {"TOP": {patternId, rotation}, "BOTTOM": ..., ..., "RIGHT": ...}}`
|
| 8 |
+
|
| 9 |
+
## Loading
|
| 10 |
+
|
| 11 |
+
```python
|
| 12 |
+
from datasets import load_dataset
|
| 13 |
+
|
| 14 |
+
ds = load_dataset("Sayaka123/simverse2026", "cube1")
|
| 15 |
+
example = ds["test"][0]
|
| 16 |
+
|
| 17 |
+
system_text = example["prompt"]["system"]
|
| 18 |
+
user_text = example["prompt"]["user"]
|
| 19 |
+
|
| 20 |
+
# Image paths (relative to this config's root)
|
| 21 |
+
blank_net = example["image_paths"]["blank_net_image"] # e.g. "images/blank_nets/open.png"
|
| 22 |
+
path_seq = example["image_paths"]["path_sequence_image"] # e.g. "images/path_sequences/C001_path_sequence.png"
|
| 23 |
+
|
| 24 |
+
gold_faces = example["answer"]["faces"] # {TOP: {...}, BOTTOM: {...}, ...}
|
| 25 |
+
```
|
| 26 |
+
|
| 27 |
+
The image paths in `image_paths` are already relative to this config's root, so you can resolve them as-is.
|
| 28 |
+
|
| 29 |
+
## Schema
|
| 30 |
+
|
| 31 |
+
| Field | Type | Description |
|
| 32 |
+
|---|---|---|
|
| 33 |
+
| `sample_id` | string | Level id, e.g. `"C001"` |
|
| 34 |
+
| `__sample_id__` | string | Same as `sample_id` |
|
| 35 |
+
| `prompt.system` / `prompt.user` | string | Exact prompt text |
|
| 36 |
+
| `net_layout` | string | Net layout name (e.g. `"standard_cross"`) |
|
| 37 |
+
| `roll_sequence` | list[string] | Sequence of rolls, each `"N"`/`"S"`/`"E"`/`"W"` |
|
| 38 |
+
| `observed_path_faces` | list of face observations | Per-step bottom-face imprints visible in the path image |
|
| 39 |
+
| `image_paths.blank_net_image` | string | Blank cross net image path |
|
| 40 |
+
| `image_paths.path_sequence_image` | string | Top-down path imprint image path |
|
| 41 |
+
| `metadata` | dict | `difficulty`, `move_count`, `tier`, `tier_label`, etc. |
|
| 42 |
+
| `net_faces` | list of face dicts | Net cells with their initial patterns and rotations |
|
| 43 |
+
| `bottom_faces` | list of stamped face dicts | The imprints with their `(x, y)` positions |
|
| 44 |
+
| `slot_sequence` / `required_slots` / `required_count` | various | Which faces the engine ranks for partial-credit scoring |
|
| 45 |
+
| `true_solution_faces` | dict | Ground-truth full face map (used for scoring) |
|
| 46 |
+
| `answer.faces` | dict | Reference `(patternId, rotation)` per face |
|
| 47 |
+
| `legacy_answer` | dict | Pre-v1 bare face map (kept for back-compat) |
|
| 48 |
+
|
| 49 |
+
## Companion file
|
| 50 |
+
|
| 51 |
+
`catalog.json` mirrors the original `levels/index.json` — a fat JSON containing every level's full data inline. The frontend demo at <https://github.com/Sayaka123/simverse2026> reads this file. It is regenerable from `data/*.json` via `python cube1/regenerate_catalog.py` in the repo.
|
| 52 |
+
|
| 53 |
+
## "?" sentinel rule
|
| 54 |
+
|
| 55 |
+
Each face's `patternId` is either a string from the per-level allowed-patternId list, or the literal `"?"` meaning "cannot be uniquely determined". When `patternId == "?"`, `rotation` is forced to `0`. The validator scores `?` against `?` as correct; `?` against a concrete pattern (or vice versa) as wrong.
|
| 56 |
+
|
| 57 |
+
## License
|
| 58 |
+
|
| 59 |
+
MIT — see [LICENSE](../LICENSE) at the repo root.
|
cube1/data/C001.json
ADDED
|
@@ -0,0 +1,215 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"sample_id": "C001",
|
| 3 |
+
"text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: N -> E -> S\nThe puzzle images already show the roll path and the observed path-face states.",
|
| 4 |
+
"net_layout": "standard_cross",
|
| 5 |
+
"roll_sequence": [
|
| 6 |
+
"N",
|
| 7 |
+
"E",
|
| 8 |
+
"S"
|
| 9 |
+
],
|
| 10 |
+
"observed_path_faces": [
|
| 11 |
+
{
|
| 12 |
+
"patternId": "5",
|
| 13 |
+
"rotation": 180,
|
| 14 |
+
"flipHorizontal": false,
|
| 15 |
+
"flipVertical": true
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"patternId": "smile",
|
| 19 |
+
"rotation": 0,
|
| 20 |
+
"flipHorizontal": false,
|
| 21 |
+
"flipVertical": true
|
| 22 |
+
},
|
| 23 |
+
{
|
| 24 |
+
"patternId": "triangle",
|
| 25 |
+
"rotation": 180,
|
| 26 |
+
"flipHorizontal": false,
|
| 27 |
+
"flipVertical": true
|
| 28 |
+
}
|
| 29 |
+
],
|
| 30 |
+
"image_paths": {
|
| 31 |
+
"blank_net_image": "images/blank_nets/open.png",
|
| 32 |
+
"path_sequence_image": "images/path_sequences/C001_path_sequence.png"
|
| 33 |
+
},
|
| 34 |
+
"metadata": {
|
| 35 |
+
"level_id": 1,
|
| 36 |
+
"name": "Reconstruct 001",
|
| 37 |
+
"difficulty": 1,
|
| 38 |
+
"move_count": 3,
|
| 39 |
+
"tier": 1,
|
| 40 |
+
"source_level_path": "levels/reconstruct/generated-001.json",
|
| 41 |
+
"tier_label": "Difficulty 1"
|
| 42 |
+
},
|
| 43 |
+
"description": "3-move reconstruct puzzle",
|
| 44 |
+
"net_faces": [
|
| 45 |
+
{
|
| 46 |
+
"patternId": "4",
|
| 47 |
+
"rotation": 90,
|
| 48 |
+
"flipHorizontal": false,
|
| 49 |
+
"flipVertical": false
|
| 50 |
+
},
|
| 51 |
+
{
|
| 52 |
+
"patternId": "G",
|
| 53 |
+
"rotation": 90,
|
| 54 |
+
"flipHorizontal": false,
|
| 55 |
+
"flipVertical": false
|
| 56 |
+
},
|
| 57 |
+
{
|
| 58 |
+
"patternId": "smile",
|
| 59 |
+
"rotation": 90,
|
| 60 |
+
"flipHorizontal": false,
|
| 61 |
+
"flipVertical": false
|
| 62 |
+
},
|
| 63 |
+
{
|
| 64 |
+
"patternId": "5",
|
| 65 |
+
"rotation": 180,
|
| 66 |
+
"flipHorizontal": false,
|
| 67 |
+
"flipVertical": false
|
| 68 |
+
},
|
| 69 |
+
{
|
| 70 |
+
"patternId": "4",
|
| 71 |
+
"rotation": 0,
|
| 72 |
+
"flipHorizontal": false,
|
| 73 |
+
"flipVertical": false
|
| 74 |
+
},
|
| 75 |
+
{
|
| 76 |
+
"patternId": "triangle",
|
| 77 |
+
"rotation": 90,
|
| 78 |
+
"flipHorizontal": false,
|
| 79 |
+
"flipVertical": false
|
| 80 |
+
}
|
| 81 |
+
],
|
| 82 |
+
"net_patterns": [
|
| 83 |
+
"4",
|
| 84 |
+
"G",
|
| 85 |
+
"smile",
|
| 86 |
+
"5",
|
| 87 |
+
"4",
|
| 88 |
+
"triangle"
|
| 89 |
+
],
|
| 90 |
+
"start_x": 1,
|
| 91 |
+
"start_y": 2,
|
| 92 |
+
"grid_width": 4,
|
| 93 |
+
"grid_height": 4,
|
| 94 |
+
"true_solution_faces": {
|
| 95 |
+
"TOP": {
|
| 96 |
+
"patternId": "4",
|
| 97 |
+
"rotation": 90
|
| 98 |
+
},
|
| 99 |
+
"BOTTOM": {
|
| 100 |
+
"patternId": "triangle",
|
| 101 |
+
"rotation": 90
|
| 102 |
+
},
|
| 103 |
+
"FRONT": {
|
| 104 |
+
"patternId": "G",
|
| 105 |
+
"rotation": 90
|
| 106 |
+
},
|
| 107 |
+
"BACK": {
|
| 108 |
+
"patternId": "5",
|
| 109 |
+
"rotation": 0
|
| 110 |
+
},
|
| 111 |
+
"LEFT": {
|
| 112 |
+
"patternId": "4",
|
| 113 |
+
"rotation": 270
|
| 114 |
+
},
|
| 115 |
+
"RIGHT": {
|
| 116 |
+
"patternId": "smile",
|
| 117 |
+
"rotation": 180
|
| 118 |
+
}
|
| 119 |
+
},
|
| 120 |
+
"bottom_faces": [
|
| 121 |
+
{
|
| 122 |
+
"patternId": "triangle",
|
| 123 |
+
"rotation": 90,
|
| 124 |
+
"x": 1,
|
| 125 |
+
"y": 2
|
| 126 |
+
},
|
| 127 |
+
{
|
| 128 |
+
"patternId": "5",
|
| 129 |
+
"rotation": 180,
|
| 130 |
+
"x": 1,
|
| 131 |
+
"y": 1
|
| 132 |
+
},
|
| 133 |
+
{
|
| 134 |
+
"patternId": "smile",
|
| 135 |
+
"rotation": 0,
|
| 136 |
+
"x": 2,
|
| 137 |
+
"y": 1
|
| 138 |
+
},
|
| 139 |
+
{
|
| 140 |
+
"patternId": "triangle",
|
| 141 |
+
"rotation": 180,
|
| 142 |
+
"x": 2,
|
| 143 |
+
"y": 2
|
| 144 |
+
}
|
| 145 |
+
],
|
| 146 |
+
"slot_sequence": [
|
| 147 |
+
"BACK",
|
| 148 |
+
"RIGHT",
|
| 149 |
+
"BOTTOM"
|
| 150 |
+
],
|
| 151 |
+
"required_slots": [
|
| 152 |
+
"BACK",
|
| 153 |
+
"RIGHT",
|
| 154 |
+
"BOTTOM"
|
| 155 |
+
],
|
| 156 |
+
"required_count": 3,
|
| 157 |
+
"answer": {
|
| 158 |
+
"faces": {
|
| 159 |
+
"TOP": {
|
| 160 |
+
"patternId": "?",
|
| 161 |
+
"rotation": 0
|
| 162 |
+
},
|
| 163 |
+
"BOTTOM": {
|
| 164 |
+
"patternId": "triangle",
|
| 165 |
+
"rotation": 90
|
| 166 |
+
},
|
| 167 |
+
"FRONT": {
|
| 168 |
+
"patternId": "?",
|
| 169 |
+
"rotation": 0
|
| 170 |
+
},
|
| 171 |
+
"BACK": {
|
| 172 |
+
"patternId": "5",
|
| 173 |
+
"rotation": 180
|
| 174 |
+
},
|
| 175 |
+
"LEFT": {
|
| 176 |
+
"patternId": "?",
|
| 177 |
+
"rotation": 0
|
| 178 |
+
},
|
| 179 |
+
"RIGHT": {
|
| 180 |
+
"patternId": "smile",
|
| 181 |
+
"rotation": 90
|
| 182 |
+
}
|
| 183 |
+
}
|
| 184 |
+
},
|
| 185 |
+
"legacy_answer": {
|
| 186 |
+
"TOP": {
|
| 187 |
+
"patternId": "?",
|
| 188 |
+
"rotation": 0
|
| 189 |
+
},
|
| 190 |
+
"BOTTOM": {
|
| 191 |
+
"patternId": "triangle",
|
| 192 |
+
"rotation": 90
|
| 193 |
+
},
|
| 194 |
+
"FRONT": {
|
| 195 |
+
"patternId": "?",
|
| 196 |
+
"rotation": 0
|
| 197 |
+
},
|
| 198 |
+
"BACK": {
|
| 199 |
+
"patternId": "5",
|
| 200 |
+
"rotation": 180
|
| 201 |
+
},
|
| 202 |
+
"LEFT": {
|
| 203 |
+
"patternId": "?",
|
| 204 |
+
"rotation": 0
|
| 205 |
+
},
|
| 206 |
+
"RIGHT": {
|
| 207 |
+
"patternId": "smile",
|
| 208 |
+
"rotation": 90
|
| 209 |
+
}
|
| 210 |
+
},
|
| 211 |
+
"prompt": {
|
| 212 |
+
"system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: <one-line JSON>\n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.",
|
| 213 |
+
"user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C001\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 3\n- roll_sequence (N=up, S=down, W=left, E=right): N -> E -> S\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=5, rotation=180, flipVertical=true\n- step 2: patternId=smile, rotation=0, flipVertical=true\n- step 3: patternId=triangle, rotation=180, flipVertical=true\n- allowed patternId values for this task: 5, smile, triangle, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":<string>,\"rotation\":<int>},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it."
|
| 214 |
+
}
|
| 215 |
+
}
|
cube1/data/C002.json
ADDED
|
@@ -0,0 +1,200 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"sample_id": "C002",
|
| 3 |
+
"text_description": "Task: reconstruct the six outer faces of the cube from the blank cross net image and the path-view observation image.\nThe net uses the fixed face names TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\nIf a face cannot be uniquely determined, output patternId='?' and rotation=0.\nRoll sequence: S -> E\nThe puzzle images already show the roll path and the observed path-face states.",
|
| 4 |
+
"net_layout": "standard_cross",
|
| 5 |
+
"roll_sequence": [
|
| 6 |
+
"S",
|
| 7 |
+
"E"
|
| 8 |
+
],
|
| 9 |
+
"observed_path_faces": [
|
| 10 |
+
{
|
| 11 |
+
"patternId": "diamond",
|
| 12 |
+
"rotation": 180,
|
| 13 |
+
"flipHorizontal": false,
|
| 14 |
+
"flipVertical": true
|
| 15 |
+
},
|
| 16 |
+
{
|
| 17 |
+
"patternId": "M",
|
| 18 |
+
"rotation": 270,
|
| 19 |
+
"flipHorizontal": false,
|
| 20 |
+
"flipVertical": true
|
| 21 |
+
}
|
| 22 |
+
],
|
| 23 |
+
"image_paths": {
|
| 24 |
+
"blank_net_image": "images/blank_nets/open.png",
|
| 25 |
+
"path_sequence_image": "images/path_sequences/C002_path_sequence.png"
|
| 26 |
+
},
|
| 27 |
+
"metadata": {
|
| 28 |
+
"level_id": 2,
|
| 29 |
+
"name": "Reconstruct 002",
|
| 30 |
+
"difficulty": 1,
|
| 31 |
+
"move_count": 2,
|
| 32 |
+
"tier": 1,
|
| 33 |
+
"source_level_path": "levels/reconstruct/generated-002.json",
|
| 34 |
+
"tier_label": "Difficulty 1"
|
| 35 |
+
},
|
| 36 |
+
"description": "2-move reconstruct puzzle",
|
| 37 |
+
"net_faces": [
|
| 38 |
+
{
|
| 39 |
+
"patternId": "2",
|
| 40 |
+
"rotation": 90,
|
| 41 |
+
"flipHorizontal": false,
|
| 42 |
+
"flipVertical": false
|
| 43 |
+
},
|
| 44 |
+
{
|
| 45 |
+
"patternId": "diamond",
|
| 46 |
+
"rotation": 180,
|
| 47 |
+
"flipHorizontal": false,
|
| 48 |
+
"flipVertical": false
|
| 49 |
+
},
|
| 50 |
+
{
|
| 51 |
+
"patternId": "M",
|
| 52 |
+
"rotation": 180,
|
| 53 |
+
"flipHorizontal": false,
|
| 54 |
+
"flipVertical": false
|
| 55 |
+
},
|
| 56 |
+
{
|
| 57 |
+
"patternId": "6",
|
| 58 |
+
"rotation": 180,
|
| 59 |
+
"flipHorizontal": false,
|
| 60 |
+
"flipVertical": false
|
| 61 |
+
},
|
| 62 |
+
{
|
| 63 |
+
"patternId": "3",
|
| 64 |
+
"rotation": 0,
|
| 65 |
+
"flipHorizontal": false,
|
| 66 |
+
"flipVertical": false
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"patternId": "U",
|
| 70 |
+
"rotation": 270,
|
| 71 |
+
"flipHorizontal": false,
|
| 72 |
+
"flipVertical": false
|
| 73 |
+
}
|
| 74 |
+
],
|
| 75 |
+
"net_patterns": [
|
| 76 |
+
"2",
|
| 77 |
+
"diamond",
|
| 78 |
+
"M",
|
| 79 |
+
"6",
|
| 80 |
+
"3",
|
| 81 |
+
"U"
|
| 82 |
+
],
|
| 83 |
+
"start_x": 1,
|
| 84 |
+
"start_y": 1,
|
| 85 |
+
"grid_width": 4,
|
| 86 |
+
"grid_height": 4,
|
| 87 |
+
"true_solution_faces": {
|
| 88 |
+
"TOP": {
|
| 89 |
+
"patternId": "2",
|
| 90 |
+
"rotation": 90
|
| 91 |
+
},
|
| 92 |
+
"BOTTOM": {
|
| 93 |
+
"patternId": "U",
|
| 94 |
+
"rotation": 270
|
| 95 |
+
},
|
| 96 |
+
"FRONT": {
|
| 97 |
+
"patternId": "diamond",
|
| 98 |
+
"rotation": 180
|
| 99 |
+
},
|
| 100 |
+
"BACK": {
|
| 101 |
+
"patternId": "6",
|
| 102 |
+
"rotation": 0
|
| 103 |
+
},
|
| 104 |
+
"LEFT": {
|
| 105 |
+
"patternId": "3",
|
| 106 |
+
"rotation": 270
|
| 107 |
+
},
|
| 108 |
+
"RIGHT": {
|
| 109 |
+
"patternId": "M",
|
| 110 |
+
"rotation": 270
|
| 111 |
+
}
|
| 112 |
+
},
|
| 113 |
+
"bottom_faces": [
|
| 114 |
+
{
|
| 115 |
+
"patternId": "U",
|
| 116 |
+
"rotation": 270,
|
| 117 |
+
"x": 1,
|
| 118 |
+
"y": 1
|
| 119 |
+
},
|
| 120 |
+
{
|
| 121 |
+
"patternId": "diamond",
|
| 122 |
+
"rotation": 180,
|
| 123 |
+
"x": 1,
|
| 124 |
+
"y": 2
|
| 125 |
+
},
|
| 126 |
+
{
|
| 127 |
+
"patternId": "M",
|
| 128 |
+
"rotation": 270,
|
| 129 |
+
"x": 2,
|
| 130 |
+
"y": 2
|
| 131 |
+
}
|
| 132 |
+
],
|
| 133 |
+
"slot_sequence": [
|
| 134 |
+
"FRONT",
|
| 135 |
+
"RIGHT"
|
| 136 |
+
],
|
| 137 |
+
"required_slots": [
|
| 138 |
+
"FRONT",
|
| 139 |
+
"RIGHT"
|
| 140 |
+
],
|
| 141 |
+
"required_count": 2,
|
| 142 |
+
"answer": {
|
| 143 |
+
"faces": {
|
| 144 |
+
"TOP": {
|
| 145 |
+
"patternId": "?",
|
| 146 |
+
"rotation": 0
|
| 147 |
+
},
|
| 148 |
+
"BOTTOM": {
|
| 149 |
+
"patternId": "?",
|
| 150 |
+
"rotation": 0
|
| 151 |
+
},
|
| 152 |
+
"FRONT": {
|
| 153 |
+
"patternId": "diamond",
|
| 154 |
+
"rotation": 180
|
| 155 |
+
},
|
| 156 |
+
"BACK": {
|
| 157 |
+
"patternId": "?",
|
| 158 |
+
"rotation": 0
|
| 159 |
+
},
|
| 160 |
+
"LEFT": {
|
| 161 |
+
"patternId": "?",
|
| 162 |
+
"rotation": 0
|
| 163 |
+
},
|
| 164 |
+
"RIGHT": {
|
| 165 |
+
"patternId": "M",
|
| 166 |
+
"rotation": 180
|
| 167 |
+
}
|
| 168 |
+
}
|
| 169 |
+
},
|
| 170 |
+
"legacy_answer": {
|
| 171 |
+
"TOP": {
|
| 172 |
+
"patternId": "?",
|
| 173 |
+
"rotation": 0
|
| 174 |
+
},
|
| 175 |
+
"BOTTOM": {
|
| 176 |
+
"patternId": "?",
|
| 177 |
+
"rotation": 0
|
| 178 |
+
},
|
| 179 |
+
"FRONT": {
|
| 180 |
+
"patternId": "diamond",
|
| 181 |
+
"rotation": 180
|
| 182 |
+
},
|
| 183 |
+
"BACK": {
|
| 184 |
+
"patternId": "?",
|
| 185 |
+
"rotation": 0
|
| 186 |
+
},
|
| 187 |
+
"LEFT": {
|
| 188 |
+
"patternId": "?",
|
| 189 |
+
"rotation": 0
|
| 190 |
+
},
|
| 191 |
+
"RIGHT": {
|
| 192 |
+
"patternId": "M",
|
| 193 |
+
"rotation": 180
|
| 194 |
+
}
|
| 195 |
+
},
|
| 196 |
+
"prompt": {
|
| 197 |
+
"system": "You are a cube-reconstruction puzzle solver. Given a blank cross net of a cube and a top-down path image showing the bottom-face imprints stamped onto the road as the cube rolls, you reconstruct the patternId and rotation of every outer face.\n\nYou will receive: (a) one blank cross-net image (the unfolded outer surface, with the six face slots TOP/BOTTOM/FRONT/BACK/LEFT/RIGHT), (b) one path-sequence image (top-down view of the cube's roll path with the bottom-face imprints visible), and (c) a structured text body listing the roll sequence, observed path faces, and the allowed patternId values for this task.\n\nYou may reason step by step before the final answer. Place your final answer on the very last line of your reply, in the form: FINAL_JSON: <one-line JSON>\n\nThe JSON object must follow the faces schema described in section 8 of the user prompt. Do NOT wrap FINAL_JSON in Markdown code fences. Do NOT write anything after the FINAL_JSON line. Emit exactly one FINAL_JSON line.\n\nIf a face cannot be uniquely determined from the inputs, output patternId=\"?\" and rotation=0 for that face. Always emit a complete FINAL_JSON line covering all six face keys; never refuse, never return prose only.",
|
| 198 |
+
"user": "## 1. TASK\nReconstruct the patternId and absolute rotation of every face of a cube from a roll-trace image.\nThe puzzle is solved when every output face matches the cube's true outer-surface configuration; faces that cannot be uniquely determined are reported with patternId=\"?\" and rotation=0.\n\n## 2. WORLD MODEL\n- Cube: a unit cube with one pattern printed on each of its six outer faces. Faces are named by their orientation in the world frame: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- Cross net: the unfolded outer surface laid flat in a cross shape. Each cell of the cross is one face of the cube.\n- Roll: tipping the cube 90° about one of its bottom edges into an adjacent grid cell.\n- Path imprint / bottom-face stamp: as the cube rolls, the face touching the ground stamps that face's pattern (rotated according to the roll) onto the grid cell it lay on. The path-sequence image shows these imprints from a top-down view.\n- patternId: the symbolic name of a face's printed pattern (e.g. \"smile\", \"triangle\", \"5\"). The literal string \"?\" denotes \"cannot be uniquely determined\".\n- rotation: an integer in {0, 90, 180, 270} measured clockwise from the pattern's upright orientation when the face is viewed from outside the cube.\n\n## 3. VISUAL LEGEND\n- Blank cross net image: shows the six face slots arranged in a cross with TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT labelled.\n- Path sequence image: a top-down grid showing the cube's start cell, the roll path, and the bottom-face imprints stamped along the path. Each imprint is the bottom-face pattern at the moment the cube rested on that cell, viewed from above (NOT viewed from underneath looking up).\n- Coordinate system: top-down, with grid cell positions used to locate imprints; rotations are expressed in degrees clockwise.\n\n## 4. INPUT FIELDS\n- sample_id: C002\n- net_layout: standard_cross\n- difficulty: 1\n- move_count: 2\n- roll_sequence (N=up, S=down, W=left, E=right): S -> E\n- observed_path_faces (one entry per stamped imprint, in roll order):\n- step 1: patternId=diamond, rotation=180, flipVertical=true\n- step 2: patternId=M, rotation=270, flipVertical=true\n- allowed patternId values for this task: diamond, M, ?\n\n## 5. ACTION VOCABULARY\nA complete answer is one map from face name to its `(patternId, rotation)` pair:\n- face: one of {\"TOP\", \"BOTTOM\", \"FRONT\", \"BACK\", \"LEFT\", \"RIGHT\"}.\n- patternId: a string drawn from the allowed list above, or the literal \"?\" sentinel.\n- rotation: integer in {0, 90, 180, 270}.\nA face is \"uniquely determined\" iff the inputs (roll sequence, observed imprints, blank net) constrain its pattern and rotation to exactly one possibility.\n\n## 6. CONSTRAINTS\n- The output must list all six face keys exactly: TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT (no extras, no omissions).\n- Each `patternId` must come from the allowed list, or be the literal \"?\".\n- When `patternId == \"?\"`, `rotation` must be 0.\n- Each rotation must be one of 0, 90, 180, 270.\n- Do not invent new patternIds. The model is scored only against the listed allowed values plus \"?\".\n\n## 7. SOLVING ADVICE\n- Trace the roll one step at a time: which face becomes the bottom after each roll? The path imprint at that step records that face.\n- When a stamped imprint is rotated relative to the original pattern's upright orientation, infer the cumulative rotation that the rolling chain has applied to that face.\n- Faces that never touch the ground may not appear in the imprints; if no other constraint pins them, they are \"?\".\n\n## 8. OUTPUT SCHEMA\nFINAL_JSON: {\"faces\":{\"TOP\":{\"patternId\":<string>,\"rotation\":<int>},\"BOTTOM\":{...},\"FRONT\":{...},\"BACK\":{...},\"LEFT\":{...},\"RIGHT\":{...}}}\n- faces: object with exactly six keys TOP, BOTTOM, FRONT, BACK, LEFT, RIGHT.\n- patternId: string from the allowed list, or \"?\".\n- rotation: integer in {0, 90, 180, 270}; 0 when patternId is \"?\".\n\n## 9. FINAL INSTRUCTION\nYou may include reasoning above, but the very last line of your reply must start with FINAL_JSON: followed by exactly one valid JSON object.\nDo not wrap FINAL_JSON in code fences and do not write anything after it."
|
| 199 |
+
}
|
| 200 |
+
}
|
cube2/README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# SimVerse / cube2
|
| 2 |
+
|
| 3 |
+
Cube goal-roll (top-face directions): given a cube whose initial outer-surface configuration is shown as a cross net and a target top-face image, output a sequence of `N`/`S`/`E`/`W` rolls so the cube's top face matches the target.
|
| 4 |
+
|
| 5 |
+
- **Records:** 502 levels
|
| 6 |
+
- **Modality:** initial cross-net image + target top-face image
|
| 7 |
+
- **Output:** `{"directions": ["N", "E", "S", ...]}` (open-ended; multiple sequences may be valid)
|
| 8 |
+
|
| 9 |
+
## Loading
|
| 10 |
+
|
| 11 |
+
```python
|
| 12 |
+
from datasets import load_dataset
|
| 13 |
+
|
| 14 |
+
ds = load_dataset("Sayaka123/simverse2026", "cube2")
|
| 15 |
+
example = ds["test"][0]
|
| 16 |
+
|
| 17 |
+
system_text = example["prompt"]["system"]
|
| 18 |
+
user_text = example["prompt"]["user"]
|
| 19 |
+
|
| 20 |
+
initial_img = example["images_relative_to_config"]["initialNetImage"] # e.g. "images/C001/initial_net.png"
|
| 21 |
+
target_img = example["images_relative_to_config"]["targetTopFaceImage"] # e.g. "images/C001/target_top_face.png"
|
| 22 |
+
|
| 23 |
+
reference_directions = example["answer"]["directions"] # one known-valid sequence, NOT the only valid one
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
## Schema
|
| 27 |
+
|
| 28 |
+
| Field | Type | Description |
|
| 29 |
+
|---|---|---|
|
| 30 |
+
| `code` | string | Level id, e.g. `"C001"` |
|
| 31 |
+
| `__sample_id__` | string | Same as `code` |
|
| 32 |
+
| `prompt.system` / `prompt.user` | string | Exact prompt text |
|
| 33 |
+
| `taskType` | string | Always `"roll_to_target_top_face"` |
|
| 34 |
+
| `initialCube.net.cells` | list | The visible cross-net cells with `(faceKey, row, col, patternId, rotation)` |
|
| 35 |
+
| `initialCube.solutionFaces` | dict | Visible faces' `(patternId, rotation)` mapping |
|
| 36 |
+
| `targetTopFace` | dict | Target's `patternId, rotation` |
|
| 37 |
+
| `rollSequence` | list[string] | The original roll sequence used to generate this puzzle |
|
| 38 |
+
| `observedPathFaces` | list | Per-step bottom-face imprints (mostly informational) |
|
| 39 |
+
| `metadata` | dict | `difficulty`, `tier`, `moveCount`, etc. |
|
| 40 |
+
| `imagePaths` | dict | `initialNetImage`, `targetTopFaceImage` (relative to data dir) |
|
| 41 |
+
| `images_relative_to_config` | dict | Same paths rewritten to be relative to this config's root |
|
| 42 |
+
| `answer.directions` | list[string] | One known-valid direction sequence; the validator accepts any sequence whose simulated top-face matches the target |
|
| 43 |
+
| `legacy_answer` | dict | Pre-v1 face-map answer from the original cube reconstruction task variant (kept for back-compat) |
|
| 44 |
+
|
| 45 |
+
## Open-ended scoring
|
| 46 |
+
|
| 47 |
+
cube2 is **open-ended**: the reference `answer.directions` is just *one* known-valid sequence. The benchmark's validator runs the engine on the model's directions and checks whether the resulting top face matches `targetTopFace`. Multiple distinct sequences can earn full credit.
|
| 48 |
+
|
| 49 |
+
## Companion file
|
| 50 |
+
|
| 51 |
+
`catalog.json` mirrors `data2/index.json` — a fat JSON the frontend demo uses for the level grid.
|
| 52 |
+
|
| 53 |
+
## License
|
| 54 |
+
|
| 55 |
+
MIT — see [LICENSE](../LICENSE) at the repo root.
|
cube2/catalog.json
ADDED
|
@@ -0,0 +1,512 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"taskType": "roll_to_target_top_face",
|
| 3 |
+
"seed": 20260425,
|
| 4 |
+
"totalTasks": 502,
|
| 5 |
+
"taskCodes": [
|
| 6 |
+
"C001",
|
| 7 |
+
"C002",
|
| 8 |
+
"C003",
|
| 9 |
+
"C004",
|
| 10 |
+
"C005",
|
| 11 |
+
"C006",
|
| 12 |
+
"C007",
|
| 13 |
+
"C008",
|
| 14 |
+
"C009",
|
| 15 |
+
"C010",
|
| 16 |
+
"C011",
|
| 17 |
+
"C012",
|
| 18 |
+
"C013",
|
| 19 |
+
"C014",
|
| 20 |
+
"C015",
|
| 21 |
+
"C016",
|
| 22 |
+
"C017",
|
| 23 |
+
"C018",
|
| 24 |
+
"C019",
|
| 25 |
+
"C020",
|
| 26 |
+
"C021",
|
| 27 |
+
"C022",
|
| 28 |
+
"C023",
|
| 29 |
+
"C024",
|
| 30 |
+
"C025",
|
| 31 |
+
"C026",
|
| 32 |
+
"C027",
|
| 33 |
+
"C028",
|
| 34 |
+
"C029",
|
| 35 |
+
"C030",
|
| 36 |
+
"C031",
|
| 37 |
+
"C032",
|
| 38 |
+
"C033",
|
| 39 |
+
"C034",
|
| 40 |
+
"C035",
|
| 41 |
+
"C036",
|
| 42 |
+
"C037",
|
| 43 |
+
"C038",
|
| 44 |
+
"C039",
|
| 45 |
+
"C040",
|
| 46 |
+
"C041",
|
| 47 |
+
"C042",
|
| 48 |
+
"C043",
|
| 49 |
+
"C044",
|
| 50 |
+
"C045",
|
| 51 |
+
"C046",
|
| 52 |
+
"C047",
|
| 53 |
+
"C048",
|
| 54 |
+
"C049",
|
| 55 |
+
"C050",
|
| 56 |
+
"C051",
|
| 57 |
+
"C052",
|
| 58 |
+
"C053",
|
| 59 |
+
"C054",
|
| 60 |
+
"C055",
|
| 61 |
+
"C056",
|
| 62 |
+
"C057",
|
| 63 |
+
"C058",
|
| 64 |
+
"C059",
|
| 65 |
+
"C060",
|
| 66 |
+
"C061",
|
| 67 |
+
"C062",
|
| 68 |
+
"C063",
|
| 69 |
+
"C064",
|
| 70 |
+
"C065",
|
| 71 |
+
"C066",
|
| 72 |
+
"C067",
|
| 73 |
+
"C068",
|
| 74 |
+
"C069",
|
| 75 |
+
"C070",
|
| 76 |
+
"C071",
|
| 77 |
+
"C072",
|
| 78 |
+
"C073",
|
| 79 |
+
"C074",
|
| 80 |
+
"C075",
|
| 81 |
+
"C076",
|
| 82 |
+
"C077",
|
| 83 |
+
"C078",
|
| 84 |
+
"C079",
|
| 85 |
+
"C080",
|
| 86 |
+
"C081",
|
| 87 |
+
"C082",
|
| 88 |
+
"C083",
|
| 89 |
+
"C084",
|
| 90 |
+
"C085",
|
| 91 |
+
"C086",
|
| 92 |
+
"C087",
|
| 93 |
+
"C088",
|
| 94 |
+
"C089",
|
| 95 |
+
"C090",
|
| 96 |
+
"C091",
|
| 97 |
+
"C092",
|
| 98 |
+
"C093",
|
| 99 |
+
"C094",
|
| 100 |
+
"C095",
|
| 101 |
+
"C096",
|
| 102 |
+
"C097",
|
| 103 |
+
"C098",
|
| 104 |
+
"C099",
|
| 105 |
+
"C100",
|
| 106 |
+
"C101",
|
| 107 |
+
"C102",
|
| 108 |
+
"C103",
|
| 109 |
+
"C104",
|
| 110 |
+
"C105",
|
| 111 |
+
"C106",
|
| 112 |
+
"C107",
|
| 113 |
+
"C108",
|
| 114 |
+
"C109",
|
| 115 |
+
"C110",
|
| 116 |
+
"C111",
|
| 117 |
+
"C112",
|
| 118 |
+
"C113",
|
| 119 |
+
"C114",
|
| 120 |
+
"C115",
|
| 121 |
+
"C116",
|
| 122 |
+
"C117",
|
| 123 |
+
"C118",
|
| 124 |
+
"C119",
|
| 125 |
+
"C120",
|
| 126 |
+
"C121",
|
| 127 |
+
"C122",
|
| 128 |
+
"C123",
|
| 129 |
+
"C124",
|
| 130 |
+
"C125",
|
| 131 |
+
"C126",
|
| 132 |
+
"C127",
|
| 133 |
+
"C128",
|
| 134 |
+
"C129",
|
| 135 |
+
"C130",
|
| 136 |
+
"C131",
|
| 137 |
+
"C132",
|
| 138 |
+
"C133",
|
| 139 |
+
"C134",
|
| 140 |
+
"C135",
|
| 141 |
+
"C136",
|
| 142 |
+
"C137",
|
| 143 |
+
"C138",
|
| 144 |
+
"C139",
|
| 145 |
+
"C140",
|
| 146 |
+
"C141",
|
| 147 |
+
"C142",
|
| 148 |
+
"C143",
|
| 149 |
+
"C144",
|
| 150 |
+
"C145",
|
| 151 |
+
"C146",
|
| 152 |
+
"C147",
|
| 153 |
+
"C148",
|
| 154 |
+
"C149",
|
| 155 |
+
"C150",
|
| 156 |
+
"C151",
|
| 157 |
+
"C152",
|
| 158 |
+
"C153",
|
| 159 |
+
"C154",
|
| 160 |
+
"C155",
|
| 161 |
+
"C156",
|
| 162 |
+
"C157",
|
| 163 |
+
"C158",
|
| 164 |
+
"C159",
|
| 165 |
+
"C160",
|
| 166 |
+
"C161",
|
| 167 |
+
"C162",
|
| 168 |
+
"C163",
|
| 169 |
+
"C164",
|
| 170 |
+
"C165",
|
| 171 |
+
"C166",
|
| 172 |
+
"C167",
|
| 173 |
+
"C168",
|
| 174 |
+
"C169",
|
| 175 |
+
"C170",
|
| 176 |
+
"C171",
|
| 177 |
+
"C172",
|
| 178 |
+
"C173",
|
| 179 |
+
"C174",
|
| 180 |
+
"C175",
|
| 181 |
+
"C176",
|
| 182 |
+
"C177",
|
| 183 |
+
"C178",
|
| 184 |
+
"C179",
|
| 185 |
+
"C180",
|
| 186 |
+
"C181",
|
| 187 |
+
"C182",
|
| 188 |
+
"C183",
|
| 189 |
+
"C184",
|
| 190 |
+
"C185",
|
| 191 |
+
"C186",
|
| 192 |
+
"C187",
|
| 193 |
+
"C188",
|
| 194 |
+
"C189",
|
| 195 |
+
"C190",
|
| 196 |
+
"C191",
|
| 197 |
+
"C192",
|
| 198 |
+
"C193",
|
| 199 |
+
"C194",
|
| 200 |
+
"C195",
|
| 201 |
+
"C196",
|
| 202 |
+
"C197",
|
| 203 |
+
"C198",
|
| 204 |
+
"C199",
|
| 205 |
+
"C200",
|
| 206 |
+
"C201",
|
| 207 |
+
"C202",
|
| 208 |
+
"C203",
|
| 209 |
+
"C204",
|
| 210 |
+
"C205",
|
| 211 |
+
"C206",
|
| 212 |
+
"C207",
|
| 213 |
+
"C208",
|
| 214 |
+
"C209",
|
| 215 |
+
"C210",
|
| 216 |
+
"C211",
|
| 217 |
+
"C212",
|
| 218 |
+
"C213",
|
| 219 |
+
"C214",
|
| 220 |
+
"C215",
|
| 221 |
+
"C216",
|
| 222 |
+
"C217",
|
| 223 |
+
"C218",
|
| 224 |
+
"C219",
|
| 225 |
+
"C220",
|
| 226 |
+
"C221",
|
| 227 |
+
"C222",
|
| 228 |
+
"C223",
|
| 229 |
+
"C224",
|
| 230 |
+
"C225",
|
| 231 |
+
"C226",
|
| 232 |
+
"C227",
|
| 233 |
+
"C228",
|
| 234 |
+
"C229",
|
| 235 |
+
"C230",
|
| 236 |
+
"C231",
|
| 237 |
+
"C232",
|
| 238 |
+
"C233",
|
| 239 |
+
"C234",
|
| 240 |
+
"C235",
|
| 241 |
+
"C236",
|
| 242 |
+
"C237",
|
| 243 |
+
"C238",
|
| 244 |
+
"C239",
|
| 245 |
+
"C240",
|
| 246 |
+
"C241",
|
| 247 |
+
"C242",
|
| 248 |
+
"C243",
|
| 249 |
+
"C244",
|
| 250 |
+
"C245",
|
| 251 |
+
"C246",
|
| 252 |
+
"C247",
|
| 253 |
+
"C248",
|
| 254 |
+
"C249",
|
| 255 |
+
"C250",
|
| 256 |
+
"C251",
|
| 257 |
+
"C252",
|
| 258 |
+
"C253",
|
| 259 |
+
"C254",
|
| 260 |
+
"C255",
|
| 261 |
+
"C256",
|
| 262 |
+
"C257",
|
| 263 |
+
"C258",
|
| 264 |
+
"C259",
|
| 265 |
+
"C260",
|
| 266 |
+
"C261",
|
| 267 |
+
"C262",
|
| 268 |
+
"C263",
|
| 269 |
+
"C264",
|
| 270 |
+
"C265",
|
| 271 |
+
"C266",
|
| 272 |
+
"C267",
|
| 273 |
+
"C268",
|
| 274 |
+
"C269",
|
| 275 |
+
"C270",
|
| 276 |
+
"C271",
|
| 277 |
+
"C272",
|
| 278 |
+
"C273",
|
| 279 |
+
"C274",
|
| 280 |
+
"C275",
|
| 281 |
+
"C276",
|
| 282 |
+
"C277",
|
| 283 |
+
"C278",
|
| 284 |
+
"C279",
|
| 285 |
+
"C280",
|
| 286 |
+
"C281",
|
| 287 |
+
"C282",
|
| 288 |
+
"C283",
|
| 289 |
+
"C284",
|
| 290 |
+
"C285",
|
| 291 |
+
"C286",
|
| 292 |
+
"C287",
|
| 293 |
+
"C288",
|
| 294 |
+
"C289",
|
| 295 |
+
"C290",
|
| 296 |
+
"C291",
|
| 297 |
+
"C292",
|
| 298 |
+
"C293",
|
| 299 |
+
"C294",
|
| 300 |
+
"C295",
|
| 301 |
+
"C296",
|
| 302 |
+
"C297",
|
| 303 |
+
"C298",
|
| 304 |
+
"C299",
|
| 305 |
+
"C300",
|
| 306 |
+
"C301",
|
| 307 |
+
"C302",
|
| 308 |
+
"C303",
|
| 309 |
+
"C304",
|
| 310 |
+
"C305",
|
| 311 |
+
"C306",
|
| 312 |
+
"C307",
|
| 313 |
+
"C308",
|
| 314 |
+
"C309",
|
| 315 |
+
"C310",
|
| 316 |
+
"C311",
|
| 317 |
+
"C312",
|
| 318 |
+
"C313",
|
| 319 |
+
"C314",
|
| 320 |
+
"C315",
|
| 321 |
+
"C316",
|
| 322 |
+
"C317",
|
| 323 |
+
"C318",
|
| 324 |
+
"C319",
|
| 325 |
+
"C320",
|
| 326 |
+
"C321",
|
| 327 |
+
"C322",
|
| 328 |
+
"C323",
|
| 329 |
+
"C324",
|
| 330 |
+
"C325",
|
| 331 |
+
"C326",
|
| 332 |
+
"C327",
|
| 333 |
+
"C328",
|
| 334 |
+
"C329",
|
| 335 |
+
"C330",
|
| 336 |
+
"C331",
|
| 337 |
+
"C332",
|
| 338 |
+
"C333",
|
| 339 |
+
"C334",
|
| 340 |
+
"C335",
|
| 341 |
+
"C336",
|
| 342 |
+
"C337",
|
| 343 |
+
"C338",
|
| 344 |
+
"C339",
|
| 345 |
+
"C340",
|
| 346 |
+
"C341",
|
| 347 |
+
"C342",
|
| 348 |
+
"C343",
|
| 349 |
+
"C344",
|
| 350 |
+
"C345",
|
| 351 |
+
"C346",
|
| 352 |
+
"C347",
|
| 353 |
+
"C348",
|
| 354 |
+
"C349",
|
| 355 |
+
"C350",
|
| 356 |
+
"C351",
|
| 357 |
+
"C352",
|
| 358 |
+
"C353",
|
| 359 |
+
"C354",
|
| 360 |
+
"C355",
|
| 361 |
+
"C356",
|
| 362 |
+
"C357",
|
| 363 |
+
"C358",
|
| 364 |
+
"C359",
|
| 365 |
+
"C360",
|
| 366 |
+
"C361",
|
| 367 |
+
"C362",
|
| 368 |
+
"C363",
|
| 369 |
+
"C364",
|
| 370 |
+
"C365",
|
| 371 |
+
"C366",
|
| 372 |
+
"C367",
|
| 373 |
+
"C368",
|
| 374 |
+
"C369",
|
| 375 |
+
"C370",
|
| 376 |
+
"C371",
|
| 377 |
+
"C372",
|
| 378 |
+
"C373",
|
| 379 |
+
"C374",
|
| 380 |
+
"C375",
|
| 381 |
+
"C376",
|
| 382 |
+
"C377",
|
| 383 |
+
"C378",
|
| 384 |
+
"C379",
|
| 385 |
+
"C380",
|
| 386 |
+
"C381",
|
| 387 |
+
"C382",
|
| 388 |
+
"C383",
|
| 389 |
+
"C384",
|
| 390 |
+
"C385",
|
| 391 |
+
"C386",
|
| 392 |
+
"C387",
|
| 393 |
+
"C388",
|
| 394 |
+
"C389",
|
| 395 |
+
"C390",
|
| 396 |
+
"C391",
|
| 397 |
+
"C392",
|
| 398 |
+
"C393",
|
| 399 |
+
"C394",
|
| 400 |
+
"C395",
|
| 401 |
+
"C396",
|
| 402 |
+
"C397",
|
| 403 |
+
"C398",
|
| 404 |
+
"C399",
|
| 405 |
+
"C400",
|
| 406 |
+
"C401",
|
| 407 |
+
"C402",
|
| 408 |
+
"C403",
|
| 409 |
+
"C404",
|
| 410 |
+
"C405",
|
| 411 |
+
"C406",
|
| 412 |
+
"C407",
|
| 413 |
+
"C408",
|
| 414 |
+
"C409",
|
| 415 |
+
"C410",
|
| 416 |
+
"C411",
|
| 417 |
+
"C412",
|
| 418 |
+
"C413",
|
| 419 |
+
"C414",
|
| 420 |
+
"C415",
|
| 421 |
+
"C416",
|
| 422 |
+
"C417",
|
| 423 |
+
"C418",
|
| 424 |
+
"C419",
|
| 425 |
+
"C420",
|
| 426 |
+
"C421",
|
| 427 |
+
"C422",
|
| 428 |
+
"C423",
|
| 429 |
+
"C424",
|
| 430 |
+
"C425",
|
| 431 |
+
"C426",
|
| 432 |
+
"C427",
|
| 433 |
+
"C428",
|
| 434 |
+
"C429",
|
| 435 |
+
"C430",
|
| 436 |
+
"C431",
|
| 437 |
+
"C432",
|
| 438 |
+
"C433",
|
| 439 |
+
"C434",
|
| 440 |
+
"C435",
|
| 441 |
+
"C436",
|
| 442 |
+
"C437",
|
| 443 |
+
"C438",
|
| 444 |
+
"C439",
|
| 445 |
+
"C440",
|
| 446 |
+
"C441",
|
| 447 |
+
"C442",
|
| 448 |
+
"C443",
|
| 449 |
+
"C444",
|
| 450 |
+
"C445",
|
| 451 |
+
"C446",
|
| 452 |
+
"C447",
|
| 453 |
+
"C448",
|
| 454 |
+
"C449",
|
| 455 |
+
"C450",
|
| 456 |
+
"C451",
|
| 457 |
+
"C452",
|
| 458 |
+
"C453",
|
| 459 |
+
"C454",
|
| 460 |
+
"C455",
|
| 461 |
+
"C456",
|
| 462 |
+
"C457",
|
| 463 |
+
"C458",
|
| 464 |
+
"C459",
|
| 465 |
+
"C460",
|
| 466 |
+
"C461",
|
| 467 |
+
"C462",
|
| 468 |
+
"C463",
|
| 469 |
+
"C464",
|
| 470 |
+
"C465",
|
| 471 |
+
"C466",
|
| 472 |
+
"C467",
|
| 473 |
+
"C468",
|
| 474 |
+
"C469",
|
| 475 |
+
"C470",
|
| 476 |
+
"C471",
|
| 477 |
+
"C472",
|
| 478 |
+
"C473",
|
| 479 |
+
"C474",
|
| 480 |
+
"C475",
|
| 481 |
+
"C476",
|
| 482 |
+
"C477",
|
| 483 |
+
"C478",
|
| 484 |
+
"C479",
|
| 485 |
+
"C480",
|
| 486 |
+
"C481",
|
| 487 |
+
"C482",
|
| 488 |
+
"C483",
|
| 489 |
+
"C484",
|
| 490 |
+
"C485",
|
| 491 |
+
"C486",
|
| 492 |
+
"C487",
|
| 493 |
+
"C488",
|
| 494 |
+
"C489",
|
| 495 |
+
"C490",
|
| 496 |
+
"C491",
|
| 497 |
+
"C492",
|
| 498 |
+
"C493",
|
| 499 |
+
"C494",
|
| 500 |
+
"C495",
|
| 501 |
+
"C496",
|
| 502 |
+
"C497",
|
| 503 |
+
"C498",
|
| 504 |
+
"C499",
|
| 505 |
+
"C500",
|
| 506 |
+
"C501",
|
| 507 |
+
"C502"
|
| 508 |
+
],
|
| 509 |
+
"taskDir": "data2/task_jsons",
|
| 510 |
+
"manifestPath": "data2/manifests/goal_roll_tasks.jsonl",
|
| 511 |
+
"imageDir": "images"
|
| 512 |
+
}
|
cube2/images/C184/initial_net.png
ADDED
|
Git LFS Details
|
cube2/images/C184/target_top_face.png
ADDED
|
Git LFS Details
|
cube2/images/C185/initial_net.png
ADDED
|
Git LFS Details
|
cube2/images/C185/target_top_face.png
ADDED
|
Git LFS Details
|
cube2/images/C186/initial_net.png
ADDED
|
Git LFS Details
|
cube2/images/C186/target_top_face.png
ADDED
|
Git LFS Details
|
cube2/images/C187/initial_net.png
ADDED
|
Git LFS Details
|
cube2/images/C187/target_top_face.png
ADDED
|
Git LFS Details
|
cube2/images/C188/initial_net.png
ADDED
|
Git LFS Details
|
cube2/images/C488/target_top_face.png
ADDED
|
Git LFS Details
|
cube2/images/C489/initial_net.png
ADDED
|
Git LFS Details
|
cutrope/README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# SimVerse / cutrope
|
| 2 |
+
|
| 3 |
+
Cut the Rope video-to-command: watch a short gameplay video of one Cut the Rope level (with a coordinate grid overlay) and output a deterministic command script that, replayed from the same initial state, wins the level.
|
| 4 |
+
|
| 5 |
+
- **Records:** 272 levels
|
| 6 |
+
- **Modality:** short MP4 gameplay video (~3s each, 1920×1080)
|
| 7 |
+
- **Output:** `{"commands": "...", "reason": "...", "confidence": 0..1}` (open-ended; many winning scripts may be valid)
|
| 8 |
+
|
| 9 |
+
## Loading
|
| 10 |
+
|
| 11 |
+
```python
|
| 12 |
+
from datasets import load_dataset
|
| 13 |
+
|
| 14 |
+
ds = load_dataset("Sayaka123/simverse2026", "cutrope")
|
| 15 |
+
example = ds["test"][0]
|
| 16 |
+
|
| 17 |
+
system_text = example["prompt"]["system"]
|
| 18 |
+
user_text = example["prompt"]["user"]
|
| 19 |
+
|
| 20 |
+
video_path = example["video_relative_to_config"]["path"] # e.g. "videos/rope-000.mp4"
|
| 21 |
+
mime_type = example["video_relative_to_config"]["mime_type"]
|
| 22 |
+
|
| 23 |
+
gold_commands = example["answer"]["commands"] # one known-3-star reference script
|
| 24 |
+
```
|
| 25 |
+
|
| 26 |
+
## Schema
|
| 27 |
+
|
| 28 |
+
| Field | Type | Description |
|
| 29 |
+
|---|---|---|
|
| 30 |
+
| `level_id` | string | Level id, e.g. `"rope-000"` |
|
| 31 |
+
| `__sample_id__` | string | Same as `level_id` |
|
| 32 |
+
| `prompt.system` / `prompt.user` | string | Exact prompt text |
|
| 33 |
+
| `video.path` | string | Original (project-relative) video path |
|
| 34 |
+
| `video.mime_type` | string | Always `"video/mp4"` for shipped variants |
|
| 35 |
+
| `video.duration_seconds` | int | Video length |
|
| 36 |
+
| `video.fps` | int | Frame rate |
|
| 37 |
+
| `prompt_level.canvas_width / canvas_height` | int | Game canvas dimensions |
|
| 38 |
+
| `prompt_level.object_counts` | dict | Per-object-type counts: `target`, `candy`, `star`, `bubble`, `pump`, `gravity_button`, `grab_or_rope_anchor`, `left_candy`, `right_candy` |
|
| 39 |
+
| `prompt_level.two_parts` | bool | Whether the level starts with split-candy halves |
|
| 40 |
+
| `level_json_without_solution` | dict | The full level definition stripped of the gold solution; useful if you want to recreate the simulation state without seeing the answer |
|
| 41 |
+
| `video_relative_to_config` | dict | `path` / `mime_type` rewritten to be relative to this config's root |
|
| 42 |
+
| `answer.commands` | string | Reference winning command script (one command per line) |
|
| 43 |
+
| `answer.reason` | string | Short explanation of the reference solution |
|
| 44 |
+
| `answer.confidence` | float | Always `1.0` for the shipped reference |
|
| 45 |
+
| `legacy_answer` | string | Same script under the pre-v1 field name `reference_solution` (kept for back-compat) |
|
| 46 |
+
|
| 47 |
+
## Command DSL
|
| 48 |
+
|
| 49 |
+
Commands accept these actions, optionally guarded by `when <CONDITION>`:
|
| 50 |
+
|
| 51 |
+
```
|
| 52 |
+
cut_rope N | cut_rope N,M,K # cut one or more ropes
|
| 53 |
+
pop_bubble N | pop_bubble_left | pop_bubble_right
|
| 54 |
+
activate_pump N [times C] [every S] [until <CONDITION>]
|
| 55 |
+
move_grab N X | move_grab N X Y
|
| 56 |
+
kick_rope N
|
| 57 |
+
toggle_gravity
|
| 58 |
+
```
|
| 59 |
+
|
| 60 |
+
Conditions include `candy_x`/`candy_y` thresholds, `candy_near X,Y,R [for S]`, `candy_still for S`, `rope_cut N`, `no_rope`, `candy_in_bubble`, plus split-candy variants `left_candy_*` / `right_candy_*`. Boolean combinators `and` / `or` and parentheses are supported. `wait_frames` is **not** allowed in this benchmark version — use condition-based waits.
|
| 61 |
+
|
| 62 |
+
See the system + user prompt embedded in each record for the full vocabulary.
|
| 63 |
+
|
| 64 |
+
## Companion files
|
| 65 |
+
|
| 66 |
+
- `data/<id>.json` — per-record JSON (mirror of the JSONL records as individual files).
|
| 67 |
+
- `source/<id>.json` — the original frontend-friendly level files (with `textCommandSolution`, gameplay metadata for the in-browser engine).
|
| 68 |
+
- `videos/<id>.mp4` — the gameplay clips.
|
| 69 |
+
|
| 70 |
+
## License
|
| 71 |
+
|
| 72 |
+
MIT — see [LICENSE](../LICENSE) at the repo root.
|
cutrope/test.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
lamp/README.md
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# SimVerse / lamp
|
| 2 |
+
|
| 3 |
+
Mechanical-arm lamp targeting: choose one absolute angle for every joint of a fixed-base multi-segment arm so that the bulb at the tip illuminates a target point without any rod intersecting an obstacle.
|
| 4 |
+
|
| 5 |
+
- **Records:** 610 levels
|
| 6 |
+
- **Modality:** single rendered image (workspace with arm, target, obstacles)
|
| 7 |
+
- **Output:** `{"actions": [{"joint": <int>, "angle": <int>}, ...]}`
|
| 8 |
+
|
| 9 |
+
## Loading
|
| 10 |
+
|
| 11 |
+
```python
|
| 12 |
+
from datasets import load_dataset
|
| 13 |
+
|
| 14 |
+
ds = load_dataset("Sayaka123/simverse2026", "lamp")
|
| 15 |
+
example = ds["test"][0]
|
| 16 |
+
|
| 17 |
+
# Prompt text (already in the record — no construction needed)
|
| 18 |
+
system_text = example["prompt"]["system"]
|
| 19 |
+
user_text = example["prompt"]["user"]
|
| 20 |
+
|
| 21 |
+
# Image
|
| 22 |
+
image_path = example["images_relative_to_config"]["image"] # e.g. "images/lamp-000.png"
|
| 23 |
+
|
| 24 |
+
# Gold answer
|
| 25 |
+
gold_actions = example["answer"]["actions"] # list of {joint, angle}
|
| 26 |
+
|
| 27 |
+
# Other useful task fields
|
| 28 |
+
print(example["arm"]["segmentCount"]) # number of joints
|
| 29 |
+
print(example["arm"]["angleStep"]) # allowed angle granularity
|
| 30 |
+
print(example["arm"]["angleMin"], example["arm"]["angleMax"])
|
| 31 |
+
```
|
| 32 |
+
|
| 33 |
+
## Schema
|
| 34 |
+
|
| 35 |
+
| Field | Type | Description |
|
| 36 |
+
|---|---|---|
|
| 37 |
+
| `id` | string | Sample id, e.g. `"lamp-000"` |
|
| 38 |
+
| `__sample_id__` | string | Same as `id`, exposed for HF loader convenience |
|
| 39 |
+
| `prompt.system` | string | The exact 5-section system prompt the benchmark uses |
|
| 40 |
+
| `prompt.user` | string | The exact 9-section user prompt for this level |
|
| 41 |
+
| `arm.segmentCount` | int | Number of arm segments (= number of joints) |
|
| 42 |
+
| `arm.segments` | list[{length}] | Lengths of each segment |
|
| 43 |
+
| `arm.angleMin/Max/Step` | int | Allowed angle range and step size |
|
| 44 |
+
| `target` | {x, y} | Target point coordinates |
|
| 45 |
+
| `lamp.lightRadius` | float | Coverage radius of the bulb |
|
| 46 |
+
| `obstacles` | list of obstacle objects | Striped wall blocks the rods must not intersect |
|
| 47 |
+
| `images_relative_to_config.image` | string | Image path relative to this config's root |
|
| 48 |
+
| `answer.actions` | list[{joint, angle}] | Reference solution; one known-valid joint configuration |
|
| 49 |
+
| `legacy_answer` | list[int] | Pre-v1 flat-array form of the answer (kept for back-compat; see SimVerse repo migration notes) |
|
| 50 |
+
|
| 51 |
+
## Solving by hand: minimal pipeline
|
| 52 |
+
|
| 53 |
+
```python
|
| 54 |
+
import openai
|
| 55 |
+
|
| 56 |
+
def solve(example, model="gpt-5"):
|
| 57 |
+
response = openai.chat.completions.create(
|
| 58 |
+
model=model,
|
| 59 |
+
messages=[
|
| 60 |
+
{"role": "system", "content": example["prompt"]["system"]},
|
| 61 |
+
{"role": "user", "content": [
|
| 62 |
+
{"type": "text", "text": example["prompt"]["user"]},
|
| 63 |
+
{"type": "image_url",
|
| 64 |
+
"image_url": {"url": f"file://{example['images_relative_to_config']['image']}"}},
|
| 65 |
+
]},
|
| 66 |
+
],
|
| 67 |
+
)
|
| 68 |
+
return response.choices[0].message.content
|
| 69 |
+
|
| 70 |
+
# The reply ends with "FINAL_JSON: {...}" — extract and parse:
|
| 71 |
+
import re, json
|
| 72 |
+
reply = solve(example)
|
| 73 |
+
final_json = json.loads(re.search(r"FINAL_JSON:\s*(\{.*\})", reply, re.DOTALL).group(1))
|
| 74 |
+
```
|
| 75 |
+
|
| 76 |
+
## License
|
| 77 |
+
|
| 78 |
+
MIT — see [LICENSE](../LICENSE) at the repo root.
|
voi/README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# SimVerse / voi
|
| 2 |
+
|
| 3 |
+
Text-VOI spatial logic puzzle: choose how to rotate and translate base shapes onto a grid so that their XOR-overlapped union exactly reproduces a target pattern.
|
| 4 |
+
|
| 5 |
+
- **Records:** 600 levels
|
| 6 |
+
- **Modality:** target pattern image + one image per available base shape
|
| 7 |
+
- **Output:** `{"placements": [{"shape", "angle", "vertex", "grid"}, ...]}`
|
| 8 |
+
|
| 9 |
+
## Loading
|
| 10 |
+
|
| 11 |
+
```python
|
| 12 |
+
from datasets import load_dataset
|
| 13 |
+
|
| 14 |
+
ds = load_dataset("Sayaka123/simverse2026", "voi")
|
| 15 |
+
example = ds["test"][0]
|
| 16 |
+
|
| 17 |
+
system_text = example["prompt"]["system"]
|
| 18 |
+
user_text = example["prompt"]["user"]
|
| 19 |
+
target_img = example["images_relative_to_config"]["target"] # e.g. "data/voi-000/target.png"
|
| 20 |
+
shape_imgs = example["images_relative_to_config"]["shapes"] # e.g. {"S1": "data/voi-000/shapes/S1.png", ...}
|
| 21 |
+
|
| 22 |
+
gold_placements = example["answer"]["placements"]
|
| 23 |
+
```
|
| 24 |
+
|
| 25 |
+
## Schema
|
| 26 |
+
|
| 27 |
+
| Field | Type | Description |
|
| 28 |
+
|---|---|---|
|
| 29 |
+
| `ID` | string | Level id, e.g. `"voi-000"` |
|
| 30 |
+
| `__sample_id__` | string | Same as `ID` |
|
| 31 |
+
| `prompt.system` / `prompt.user` | string | Exact prompt text |
|
| 32 |
+
| `gridSize` | int | Square grid side length |
|
| 33 |
+
| `inventory` | dict | `{shape_id: {V1: [x,y], V2: [x,y], ...}}` — each base shape's vertex coordinates |
|
| 34 |
+
| `target` | list of polygon dicts | The goal silhouette (XOR of these polygons) |
|
| 35 |
+
| `meta` | dict | `difficultyLabel`, `requiredShapeCount`, `distractorShapeCount`, `overlapAllowed` |
|
| 36 |
+
| `imageAssets.target` | string | Target pattern image path (level-relative) |
|
| 37 |
+
| `imageAssets.shapes` | dict | `{shape_id: image_path}` per available shape |
|
| 38 |
+
| `images_relative_to_config` | dict | Same image paths but rewritten to be relative to the config root |
|
| 39 |
+
| `answer.placements` | list[{shape, angle, vertex, grid}] | Reference solution |
|
| 40 |
+
| `legacy_answer` | string | Pre-v1 plain-text DSL form of the answer |
|
| 41 |
+
| `solutionText` | string | The DSL form of the answer (kept because the pixel engine consumes it for the reference mask) |
|
| 42 |
+
|
| 43 |
+
## Output format details
|
| 44 |
+
|
| 45 |
+
Each placement encodes: rotate `shape` clockwise by `angle ∈ {0,90,180,270}` around its local origin, then translate so the post-rotation `vertex` lands at grid coordinate `[gridX, gridY]`.
|
| 46 |
+
|
| 47 |
+
The benchmark's pixel engine rasterizes the placements and XOR-combines them; a perfect score requires the resulting mask to equal the target pattern's mask.
|
| 48 |
+
|
| 49 |
+
## License
|
| 50 |
+
|
| 51 |
+
MIT — see [LICENSE](../LICENSE) at the repo root.
|