mahgoobi commited on
Commit
3d30e77
·
verified ·
1 Parent(s): 3c3bb39

add search runs

Browse files
Files changed (26) hide show
  1. README.md +129 -0
  2. data/nodes/task=drop_apple_in_bin_ks/drop_apple_in_bin_ks__bench_demo_kitchens_clean__seed50000.parquet +3 -0
  3. data/nodes/task=move_cup_put_pen_in_cup/move_cup_put_pen_in_cup__bench_demo_study_clean__seed50000.parquet +3 -0
  4. data/nodes/task=put_can_in_cabinet/put_can_in_cabinet__bench_demo_kitchenl_clean__seed50000.parquet +3 -0
  5. data/nodes/task=put_milktea_on_shelf/put_milktea_on_shelf__bench_demo_office_clean__seed50000.parquet +3 -0
  6. data/nodes/task=put_mouse_on_pad/put_mouse_on_pad__bench_demo_office_clean__seed50000.parquet +3 -0
  7. data/nodes/task=put_stapler_next_to_mouse/put_stapler_next_to_mouse__bench_demo_office_clean__seed50000.parquet +3 -0
  8. data/steps/task=drop_apple_in_bin_ks/drop_apple_in_bin_ks__bench_demo_kitchens_clean__seed50000.parquet +3 -0
  9. data/steps/task=move_cup_put_pen_in_cup/move_cup_put_pen_in_cup__bench_demo_study_clean__seed50000.parquet +3 -0
  10. data/steps/task=put_can_in_cabinet/put_can_in_cabinet__bench_demo_kitchenl_clean__seed50000.parquet +3 -0
  11. data/steps/task=put_milktea_on_shelf/put_milktea_on_shelf__bench_demo_office_clean__seed50000.parquet +3 -0
  12. data/steps/task=put_mouse_on_pad/put_mouse_on_pad__bench_demo_office_clean__seed50000.parquet +3 -0
  13. data/steps/task=put_stapler_next_to_mouse/put_stapler_next_to_mouse__bench_demo_office_clean__seed50000.parquet +3 -0
  14. meta/configs/drop_apple_in_bin_ks__bench_demo_kitchens_clean__seed50000.yml +35 -0
  15. meta/configs/move_cup_put_pen_in_cup__bench_demo_study_clean__seed50000.yml +35 -0
  16. meta/configs/put_can_in_cabinet__bench_demo_kitchenl_clean__seed50000.yml +35 -0
  17. meta/configs/put_milktea_on_shelf__bench_demo_office_clean__seed50000.yml +35 -0
  18. meta/configs/put_mouse_on_pad__bench_demo_office_clean__seed50000.yml +35 -0
  19. meta/configs/put_stapler_next_to_mouse__bench_demo_office_clean__seed50000.yml +35 -0
  20. meta/info.json +10 -0
  21. meta/searches/drop_apple_in_bin_ks__bench_demo_kitchens_clean__seed50000.parquet +3 -0
  22. meta/searches/move_cup_put_pen_in_cup__bench_demo_study_clean__seed50000.parquet +3 -0
  23. meta/searches/put_can_in_cabinet__bench_demo_kitchenl_clean__seed50000.parquet +3 -0
  24. meta/searches/put_milktea_on_shelf__bench_demo_office_clean__seed50000.parquet +3 -0
  25. meta/searches/put_mouse_on_pad__bench_demo_office_clean__seed50000.parquet +3 -0
  26. meta/searches/put_stapler_next_to_mouse__bench_demo_office_clean__seed50000.parquet +3 -0
README.md ADDED
@@ -0,0 +1,129 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - robotics
4
+ tags:
5
+ - robotics
6
+ - action-selection
7
+ - search
8
+ - branch-and-rollback
9
+ configs:
10
+ - config_name: searches
11
+ data_files:
12
+ - split: train
13
+ path: meta/searches/*__seed5*.parquet
14
+ - config_name: nodes
15
+ data_files:
16
+ - split: train
17
+ path: data/nodes/**/*__seed5*.parquet
18
+ - config_name: steps
19
+ data_files:
20
+ - split: train
21
+ path: data/steps/**/*__seed5*.parquet
22
+ ---
23
+
24
+ # scoring_data
25
+
26
+ **At a state: several action chunks proposed from it, and how each one actually ended.**
27
+ A branch the search dropped was cut off mid-episode, so it is resumed from its own snapshot
28
+ and carried to a finish — the action nobody executed still gets an answer to *would this
29
+ have worked*.
30
+
31
+ 6 searches · 6 tasks · 253 nodes, each with its own
32
+ state and image.
33
+
34
+ This repo hosts the data. **What it means, how it was produced and how to use it live in
35
+ the code that wrote it:** [https://github.com/EAI-RSM/rewind](https://github.com/EAI-RSM/rewind) — see its README for the format, the
36
+ search strategies, and worked examples of loading a record.
37
+
38
+ ## Splits
39
+
40
+ Both halves live here, told apart by the `split` column of `meta/searches` rather than by
41
+ path. The blocks are disjoint by construction, so a scorer trained on one can be measured
42
+ on the other without having seen it.
43
+
44
+ | split | seeds | in this repo |
45
+ |---|---|---|
46
+ | `train` | collection seeds (50000+) — fans to learn from | 6 searches |
47
+ | `test` | the benchmark's own evaluation seeds (40000+) — what a scorer is measured on | **not collected yet** |
48
+
49
+ ```python
50
+ from rewind.record.hub import index
51
+ runs = index("mahgoobi/scoring_data")
52
+ train = [r for r in runs if r["split"] == "train"]
53
+ test = [r for r in runs if r["split"] == "test"]
54
+ ```
55
+
56
+ ## Tasks
57
+
58
+ One row per task: how many searches it contributed, which splits, which scene configs, the
59
+ seeds, and the **benchmark commit** whose code built those scenes.
60
+
61
+ That last column is not bookkeeping. The benchmark's success criteria change over time —
62
+ `put_milktea_on_shelf` gained an upright requirement, `put_milktea_next_to_laptop` a 15°
63
+ tolerance — so two runs of one task under different commits are scored by different rules
64
+ and should not be pooled. Runs of a task the change did not touch stay comparable.
65
+
66
+ | task | runs | splits | configs | seeds | benchmark commit |
67
+ |---|---|---|---|---|---|
68
+ | `drop_apple_in_bin_ks` | 1 | train | kitchens_clean | 50000 | [RoboPRO @ `2a1adee`](https://github.com/EAI-RSM/RoboPRO/commit/2a1adee49dbaebe06379398745233b8f0b43c85f) |
69
+ | `move_cup_put_pen_in_cup` | 1 | train | study_clean | 50000 | [RoboPRO @ `2a1adee`](https://github.com/EAI-RSM/RoboPRO/commit/2a1adee49dbaebe06379398745233b8f0b43c85f) |
70
+ | `put_can_in_cabinet` | 1 | train | kitchenl_clean | 50000 | [RoboPRO @ `2a1adee`](https://github.com/EAI-RSM/RoboPRO/commit/2a1adee49dbaebe06379398745233b8f0b43c85f) |
71
+ | `put_milktea_on_shelf` | 1 | train | office_clean | 50000 | [RoboPRO @ `2a1adee`](https://github.com/EAI-RSM/RoboPRO/commit/2a1adee49dbaebe06379398745233b8f0b43c85f) |
72
+ | `put_mouse_on_pad` | 1 | train | office_clean | 50000 | [RoboPRO @ `2a1adee`](https://github.com/EAI-RSM/RoboPRO/commit/2a1adee49dbaebe06379398745233b8f0b43c85f) |
73
+ | `put_stapler_next_to_mouse` | 1 | train | office_clean | 50000 | [RoboPRO @ `2a1adee`](https://github.com/EAI-RSM/RoboPRO/commit/2a1adee49dbaebe06379398745233b8f0b43c85f) |
74
+
75
+ ## Contents
76
+
77
+ | | |
78
+ |---|---|
79
+ | tasks | `drop_apple_in_bin_ks`, `move_cup_put_pen_in_cup`, `put_can_in_cabinet`, `put_milktea_on_shelf`, `put_mouse_on_pad`, `put_stapler_next_to_mouse` |
80
+ | scene seeds | 50000 |
81
+ | search | `branch_once`, fan of 5, horizon 7 |
82
+ | policy | `roboresearch_policy` — None @ 0 |
83
+ | cameras | countertop_camera, right_camera, left_camera |
84
+ | action chunk | 50 steps |
85
+
86
+ | table | rows | files | columns |
87
+ |---|---|---|---|
88
+ | `nodes` | 253 | 6 | 10 |
89
+ | `steps` | 12,350 | 6 | 5 |
90
+
91
+ Outcomes, best to worst: `hard_success` solved it cleanly, `soft_success` solved it after
92
+ a collision, `soft_failure` missed, `hard_failure` missed and collided. `terminal` says
93
+ whether the episode had ended when the outcome was read — `tier` is an outcome only where
94
+ it is true, and only those are counted here.
95
+
96
+ | outcome | branches |
97
+ |---|---|
98
+ | `hard_success` | 16 |
99
+ | `soft_failure` | 14 |
100
+
101
+ ## Loading it
102
+
103
+ ```python
104
+ from datasets import load_dataset
105
+ train = load_dataset("mahgoobi/scoring_data", "nodes", split="train") # the collection seeds
106
+ ```
107
+
108
+ The library's splits ARE the `split` column of `meta/searches`: the frontmatter above
109
+ names each run's shard under the block that column puts it in, so the two cannot drift.
110
+ Only the blocks this repo actually holds are declared.
111
+
112
+ Every node carries its own state — poses, the robot's command, and one JPEG per camera —
113
+ so `nodes` alone answers most questions. `steps` is what happened between two nodes.
114
+ There is no video: `rewind video` builds one from these frames when you want to watch a
115
+ branch.
116
+
117
+ Data is partitioned as `data/<table>/task=<task>/<search_id>.parquet`, so one task is one
118
+ directory:
119
+
120
+ ```python
121
+ from huggingface_hub import snapshot_download
122
+ snapshot_download("mahgoobi/scoring_data", repo_type="dataset",
123
+ allow_patterns=["meta/**", "data/*/task=drop_apple_in_bin_ks/*"])
124
+ ```
125
+
126
+ Each run's config is stored verbatim at `meta/configs/<search_id>.yml`, so any run can be
127
+ repeated from the record itself.
128
+
129
+ Full format, and everything else: [https://github.com/EAI-RSM/rewind](https://github.com/EAI-RSM/rewind).
data/nodes/task=drop_apple_in_bin_ks/drop_apple_in_bin_ks__bench_demo_kitchens_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5556937c20b1cd8e7dcd39353be87821868281f1a29cd992378b1f4fabaded65
3
+ size 1191308
data/nodes/task=move_cup_put_pen_in_cup/move_cup_put_pen_in_cup__bench_demo_study_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c3d1d415f78ab34bd9e69c27d0db4c6dee2744074bfac78a38c6fccd5b868efe
3
+ size 2289882
data/nodes/task=put_can_in_cabinet/put_can_in_cabinet__bench_demo_kitchenl_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b9ae5028bdf3b1e5e9e07001d552f9a0ab391601dcc4ce037b672516b84ebec4
3
+ size 913061
data/nodes/task=put_milktea_on_shelf/put_milktea_on_shelf__bench_demo_office_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:013c7bc75defdf868a09de53372095ab5898e592427acea5704a40ba0b22585b
3
+ size 975140
data/nodes/task=put_mouse_on_pad/put_mouse_on_pad__bench_demo_office_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:237bad3c26f5ab6e8a169981256aeec6db08d76b6d038bce64eaa4f96f54c35c
3
+ size 1987575
data/nodes/task=put_stapler_next_to_mouse/put_stapler_next_to_mouse__bench_demo_office_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5457c8258f5e13ffb48b73ed9e7571f624705936762643c8915acd685b0a103
3
+ size 1833692
data/steps/task=drop_apple_in_bin_ks/drop_apple_in_bin_ks__bench_demo_kitchens_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:709a6ed17fb193557d67a1f46a73f588a635e373de1f503986e7118421a33027
3
+ size 536751
data/steps/task=move_cup_put_pen_in_cup/move_cup_put_pen_in_cup__bench_demo_study_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:93fe7660528797c4e1aeea7f5b71c835c555782cd9335e7f02927f27ac6224c7
3
+ size 1212530
data/steps/task=put_can_in_cabinet/put_can_in_cabinet__bench_demo_kitchenl_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aaa3e69d42218de3b71189b543fad41c985d0ec32ba7431e24ec70ed9b316e80
3
+ size 445438
data/steps/task=put_milktea_on_shelf/put_milktea_on_shelf__bench_demo_office_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b93ab8382e2815f1f30c66c3ce10941873cf89e3e3bfde6d5dd25c9b50a58f01
3
+ size 450637
data/steps/task=put_mouse_on_pad/put_mouse_on_pad__bench_demo_office_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aea5887fb42ed08c2a6554c2bcd93ce2adb67d73c1f8fa005cf1bdc33f41f49b
3
+ size 915676
data/steps/task=put_stapler_next_to_mouse/put_stapler_next_to_mouse__bench_demo_office_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4972547a16b23228418a0bda7c86d744aff7b68af07cda76636388af73040fa6
3
+ size 910852
meta/configs/drop_apple_in_bin_ks__bench_demo_kitchens_clean__seed50000.yml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ scene:
2
+ task: drop_apple_in_bin_ks
3
+ task_config: bench_demo_kitchens_clean
4
+ seed: 50000
5
+ seeds: null
6
+ eval_mode: true
7
+ policy:
8
+ name: roboresearch_policy
9
+ config: /work/mohammed/roboresearch/critic_fans/deploy_fan5.yml
10
+ instruction: null
11
+ instruction_type: unseen
12
+ candidate_opt: {}
13
+ overrides: {}
14
+ search:
15
+ strategy: branch_once
16
+ k: 5
17
+ depth: -1
18
+ top_m: 1
19
+ stop_on_success: false
20
+ params: {}
21
+ fitness:
22
+ name: oracle
23
+ dist_tiebreak: true
24
+ verify:
25
+ enabled: false
26
+ atol: 1.0e-05
27
+ output:
28
+ plans: /work/mohammed/roboresearch/critic_fans/drop_apple_in_bin_ks/plans
29
+ episodes: null
30
+ record:
31
+ dir: /work/mohammed/roboresearch/critic_fans/record
32
+ save_intermediate: false
33
+ cameras: []
34
+ carry_branches: true
35
+ branch_every: 0
meta/configs/move_cup_put_pen_in_cup__bench_demo_study_clean__seed50000.yml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ scene:
2
+ task: move_cup_put_pen_in_cup
3
+ task_config: bench_demo_study_clean
4
+ seed: 50000
5
+ seeds: null
6
+ eval_mode: true
7
+ policy:
8
+ name: roboresearch_policy
9
+ config: /work/mohammed/roboresearch/critic_fans/deploy_fan5.yml
10
+ instruction: null
11
+ instruction_type: unseen
12
+ candidate_opt: {}
13
+ overrides: {}
14
+ search:
15
+ strategy: branch_once
16
+ k: 5
17
+ depth: -1
18
+ top_m: 1
19
+ stop_on_success: false
20
+ params: {}
21
+ fitness:
22
+ name: oracle
23
+ dist_tiebreak: true
24
+ verify:
25
+ enabled: false
26
+ atol: 1.0e-05
27
+ output:
28
+ plans: /work/mohammed/roboresearch/critic_fans/move_cup_put_pen_in_cup/plans
29
+ episodes: null
30
+ record:
31
+ dir: /work/mohammed/roboresearch/critic_fans/record
32
+ save_intermediate: false
33
+ cameras: []
34
+ carry_branches: true
35
+ branch_every: 0
meta/configs/put_can_in_cabinet__bench_demo_kitchenl_clean__seed50000.yml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ scene:
2
+ task: put_can_in_cabinet
3
+ task_config: bench_demo_kitchenl_clean
4
+ seed: 50000
5
+ seeds: null
6
+ eval_mode: true
7
+ policy:
8
+ name: roboresearch_policy
9
+ config: /work/mohammed/roboresearch/critic_fans/deploy_fan5.yml
10
+ instruction: null
11
+ instruction_type: unseen
12
+ candidate_opt: {}
13
+ overrides: {}
14
+ search:
15
+ strategy: branch_once
16
+ k: 5
17
+ depth: -1
18
+ top_m: 1
19
+ stop_on_success: false
20
+ params: {}
21
+ fitness:
22
+ name: oracle
23
+ dist_tiebreak: true
24
+ verify:
25
+ enabled: false
26
+ atol: 1.0e-05
27
+ output:
28
+ plans: /work/mohammed/roboresearch/critic_fans/put_can_in_cabinet/plans
29
+ episodes: null
30
+ record:
31
+ dir: /work/mohammed/roboresearch/critic_fans/record
32
+ save_intermediate: false
33
+ cameras: []
34
+ carry_branches: true
35
+ branch_every: 0
meta/configs/put_milktea_on_shelf__bench_demo_office_clean__seed50000.yml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ scene:
2
+ task: put_milktea_on_shelf
3
+ task_config: bench_demo_office_clean
4
+ seed: 50000
5
+ seeds: null
6
+ eval_mode: true
7
+ policy:
8
+ name: roboresearch_policy
9
+ config: /work/mohammed/roboresearch/critic_fans/deploy_fan5.yml
10
+ instruction: null
11
+ instruction_type: unseen
12
+ candidate_opt: {}
13
+ overrides: {}
14
+ search:
15
+ strategy: branch_once
16
+ k: 5
17
+ depth: -1
18
+ top_m: 1
19
+ stop_on_success: false
20
+ params: {}
21
+ fitness:
22
+ name: oracle
23
+ dist_tiebreak: true
24
+ verify:
25
+ enabled: false
26
+ atol: 1.0e-05
27
+ output:
28
+ plans: /work/mohammed/roboresearch/critic_fans/put_milktea_on_shelf/plans
29
+ episodes: null
30
+ record:
31
+ dir: /work/mohammed/roboresearch/critic_fans/record
32
+ save_intermediate: false
33
+ cameras: []
34
+ carry_branches: true
35
+ branch_every: 0
meta/configs/put_mouse_on_pad__bench_demo_office_clean__seed50000.yml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ scene:
2
+ task: put_mouse_on_pad
3
+ task_config: bench_demo_office_clean
4
+ seed: 50000
5
+ seeds: null
6
+ eval_mode: true
7
+ policy:
8
+ name: roboresearch_policy
9
+ config: /work/mohammed/roboresearch/critic_fans/deploy_fan5.yml
10
+ instruction: null
11
+ instruction_type: unseen
12
+ candidate_opt: {}
13
+ overrides: {}
14
+ search:
15
+ strategy: branch_once
16
+ k: 5
17
+ depth: -1
18
+ top_m: 1
19
+ stop_on_success: false
20
+ params: {}
21
+ fitness:
22
+ name: oracle
23
+ dist_tiebreak: true
24
+ verify:
25
+ enabled: false
26
+ atol: 1.0e-05
27
+ output:
28
+ plans: /work/mohammed/roboresearch/critic_fans/put_mouse_on_pad/plans
29
+ episodes: null
30
+ record:
31
+ dir: /work/mohammed/roboresearch/critic_fans/record
32
+ save_intermediate: false
33
+ cameras: []
34
+ carry_branches: true
35
+ branch_every: 0
meta/configs/put_stapler_next_to_mouse__bench_demo_office_clean__seed50000.yml ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ scene:
2
+ task: put_stapler_next_to_mouse
3
+ task_config: bench_demo_office_clean
4
+ seed: 50000
5
+ seeds: null
6
+ eval_mode: true
7
+ policy:
8
+ name: roboresearch_policy
9
+ config: /work/mohammed/roboresearch/critic_fans/deploy_fan5.yml
10
+ instruction: null
11
+ instruction_type: unseen
12
+ candidate_opt: {}
13
+ overrides: {}
14
+ search:
15
+ strategy: branch_once
16
+ k: 5
17
+ depth: -1
18
+ top_m: 1
19
+ stop_on_success: false
20
+ params: {}
21
+ fitness:
22
+ name: oracle
23
+ dist_tiebreak: true
24
+ verify:
25
+ enabled: false
26
+ atol: 1.0e-05
27
+ output:
28
+ plans: /work/mohammed/roboresearch/critic_fans/put_stapler_next_to_mouse/plans
29
+ episodes: null
30
+ record:
31
+ dir: /work/mohammed/roboresearch/critic_fans/record
32
+ save_intermediate: false
33
+ cameras: []
34
+ carry_branches: true
35
+ branch_every: 0
meta/info.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "format": "search_record_v2",
3
+ "cameras": [
4
+ "countertop_camera",
5
+ "right_camera",
6
+ "left_camera"
7
+ ],
8
+ "chunk": 50,
9
+ "state": "named object poses, articulation root/qpos/qvel, the 14-dim robot command, and one JPEG per camera \u2014 all at the node, captured where the search stood"
10
+ }
meta/searches/drop_apple_in_bin_ks__bench_demo_kitchens_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0d40d7483e4dba24a8d6260b601474a0af2d24d47a6d88c93ecd60f2b6e5db9
3
+ size 14066
meta/searches/move_cup_put_pen_in_cup__bench_demo_study_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fed72c4d5922e65501a968a08774d0ff81641082a17a521f91735a07732a47ee
3
+ size 14137
meta/searches/put_can_in_cabinet__bench_demo_kitchenl_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ac1161bdaf4fd27effbfd43d9e51569ab194265013b47ae013a993e51daa43f
3
+ size 14007
meta/searches/put_milktea_on_shelf__bench_demo_office_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ce595c6081f30e4eb3a4b1758f679610c4c685f5d7a58465fca1dad8a78ce1cf
3
+ size 14044
meta/searches/put_mouse_on_pad__bench_demo_office_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:61ecf6744550a058395df1863f4688a1a6dd50c1d4a3803fc06ae4ea8b452b50
3
+ size 13910
meta/searches/put_stapler_next_to_mouse__bench_demo_office_clean__seed50000.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dd6322b62d0257553a8919df907a1d1de7314488bcfdb5c4d064e508359c86cb
3
+ size 14183