yqi19 commited on
Commit
8aa2acf
·
verified ·
1 Parent(s): b3e0bd4

Upload folder using huggingface_hub

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +2 -0
  2. README.md +67 -0
  3. REPRODUCE.md +102 -0
  4. code/gpair_dispatcher.sh +90 -0
  5. code/gpair_dispatcher_watchdog.sh +11 -0
  6. code/groot_client.py +98 -0
  7. code/groot_full_factor_batch.py +201 -0
  8. code/groot_full_factor_main.py +285 -0
  9. code/groot_grid_eval.py +433 -0
  10. code/groot_main.py +746 -0
  11. code/pi0_grid_eval.py +293 -0
  12. code/pi0_pairwise_main.py +747 -0
  13. code/resume_genie.sh +106 -0
  14. code/run_af_one_ckpt.sh +108 -0
  15. code/run_af_one_ckpt_fast.sh +104 -0
  16. code/run_all_groot.sh +135 -0
  17. code/run_full_factor_groot.sh +179 -0
  18. code/run_groot_one_ckpt.sh +127 -0
  19. code/run_one_cat.sh +59 -0
  20. code/run_one_genie.sh +57 -0
  21. code/run_ood_groot_inference.sh +179 -0
  22. code/run_pi0_ckpt_3seed.sh +96 -0
  23. code/run_pi0_one_ckpt.sh +112 -0
  24. code/run_pi0_queue.sh +43 -0
  25. code/run_pi0_seed.sh +76 -0
  26. code/run_tmux_all.sh +37 -0
  27. code/smoke_e2e.sh +48 -0
  28. code/smoke_env.py +37 -0
  29. code/vlm_eval.py +290 -0
  30. code/watchdog_pi0_f18.sh +64 -0
  31. result.md +245 -0
  32. results/genie/conflict_env/genie_color_object_ood_seed42.txt +420 -0
  33. results/genie/conflict_env/genie_color_size_ood_seed42.txt +421 -0
  34. results/genie/conflict_env/genie_color_spatial_ood_seed42.txt +421 -0
  35. results/genie/conflict_env/genie_size_object_ood_seed42.txt +420 -0
  36. results/genie/conflict_env/genie_spatial_object_ood_seed42.txt +420 -0
  37. results/genie/conflict_env/genie_spatial_size_ood_seed42.txt +421 -0
  38. results/genie/conflict_env/genie_verb_color_ood_seed42.txt +421 -0
  39. results/genie/conflict_env/genie_verb_object_ood_seed42.txt +420 -0
  40. results/genie/conflict_env/genie_verb_size_ood_seed42.txt +421 -0
  41. results/genie/conflict_env/genie_verb_spatial_ood_seed42.txt +421 -0
  42. results/gr00t/all_factor/all_factor_Lrandom_f50_n100/SUMMARY.txt +5 -0
  43. results/gr00t/all_factor/all_factor_Lrandom_f50_n100/full_factor_all_factor_Lrandom_f50_n100_seed40.txt +212 -0
  44. results/gr00t/all_factor/all_factor_Lrandom_f50_n100/full_factor_all_factor_Lrandom_f50_n100_seed41.txt +212 -0
  45. results/gr00t/all_factor/all_factor_Lrandom_f50_n100/full_factor_all_factor_Lrandom_f50_n100_seed42.txt +212 -0
  46. results/gr00t/all_factor/all_factor_Lrandom_f50_n200/SUMMARY.txt +5 -0
  47. results/gr00t/all_factor/all_factor_Lrandom_f50_n200/full_factor_all_factor_Lrandom_f50_n200_seed40.txt +212 -0
  48. results/gr00t/all_factor/all_factor_Lrandom_f50_n200/full_factor_all_factor_Lrandom_f50_n200_seed41.txt +212 -0
  49. results/gr00t/all_factor/all_factor_Lrandom_f50_n200/full_factor_all_factor_Lrandom_f50_n200_seed42.txt +212 -0
  50. results/gr00t/all_factor/all_factor_Lrandom_f50_n400/SUMMARY.txt +3 -0
.gitattributes CHANGED
@@ -58,3 +58,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
 
58
  # Video files - compressed
59
  *.mp4 filter=lfs diff=lfs merge=lfs -text
60
  *.webm filter=lfs diff=lfs merge=lfs -text
61
+ simulation/Maniskill_gen_new/asset/car.obj filter=lfs diff=lfs merge=lfs -text
62
+ simulation/eval_simulation/simulation/mani_skill/utils/visualization/UbuntuSansMono-Regular.ttf filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Manipulation VLA 评测全集 (GR00T N1.7 · pi0 · Genie-Envisioner)
2
+
3
+ ManiSkill 仿真上对多个 VLA 模型做的 **pairwise-OOD / all-factor / conflict / VLM** 评测的
4
+ **可复现全集**:代码 + 仿真 + 全部评测结果(逐 ckpt 逐 seed)+ 复现步骤。**不含 ckpt 权重**(见下方 HF 链接)。
5
+
6
+ 怎么跑 → 见 [`REPRODUCE.md`](REPRODUCE.md)。
7
+
8
+ ---
9
+
10
+ ## 目录结构
11
+
12
+ ```
13
+ README.md ← 本文件:总览 + 结果 + 导航
14
+ REPRODUCE.md ← 怎么跑每一类评测(环境/ckpt/命令)
15
+ code/ ← 全部评测代码(client / runner / dispatcher)
16
+ results/
17
+ ├─ gr00t/
18
+ │ ├─ pairgrid_hard/ 6 实验 × 9 ckpt,硬口径(同色同形干扰项)
19
+ │ │ {color_size, color_spatial, verb_spatial, spatial_size, spatial_object, verb_size}/
20
+ │ ├─ pairgrid_easy/color_size/ 软口径对照(1 干扰项, ~2× 尺寸对比)
21
+ │ ├─ all_factor/ 16 ckpt,full-factor(对齐 pi0.5 协议)
22
+ │ └─ conflict_env/ 10 实验,双轴 env success(seed42)
23
+ ├─ pi0/pairgrid_hard/ color_spatial(9 ckpt)+ color_size(3 ckpt),硬口径
24
+ ├─ genie/conflict_env/ 10 实验,双轴 env success
25
+ └─ vlm_gemini-2.5-flash/ Gemini-2.5-flash 看视频判 factor_followed + FDR_summary.txt
26
+ simulation/
27
+ ├─ eval_simulation/ ManiSkill 仿真代码(VerbObjectColor-v1 环境)
28
+ ├─ Maniskill_gen_new/ 数据采集/环境定义(get_env_id_and_color)
29
+ └─ eval_simulation_ASSETS.tar.gz 二进制 3D 资源(解开覆盖回 eval_simulation/)
30
+ ```
31
+
32
+ 每个 ckpt 目录里:`*_seed42.txt / _seed40.txt / _seed41.txt`(逐 episode 明细)+ `SUMMARY.txt`(3-seed 均)。
33
+
34
+ ## checkpoint 权重(本仓库不含)
35
+ - pair-grid(f6/f12/f18):HF `yqi19/gr00t_public_pair_ckpt`
36
+ - all_factor(f50/n*):HF `yqi19/gr00t_all_factor_evaluation`
37
+
38
+ ---
39
+
40
+ ## 评测协议(一句话)
41
+ - **pairgrid 硬口径**:同色(或同形)cube 干扰项,强制模型靠目标因子区分;task_difficulty=1.5,gpu-sim,150 步,replan=10,210 ep/seed,seeds 42/40/41。
42
+ - **pairgrid 软口径(EASY)**:仅 color_size,1 干扰项 + ~2× 尺寸对比。
43
+ - **all_factor**:单指令全因子采样(pi0.5 对齐),200 ep,500 步,no_distractor=0.70。
44
+ - **conflict env**:双轴成功率(因子A / 因子B 各自命中)。
45
+ - **VLM**:Gemini-2.5-flash 看视频判模型跟了哪个因子,算 FDR。
46
+ > 每个实验的 target/distractor 尺寸、spatial 坐标等**精确配置**见本文件末尾「附:干扰项明细」。
47
+
48
+ ---
49
+
50
+ ## 关键结果(3-seed 均,各实验最强 ckpt)
51
+
52
+ | 实验 | 模型 | 最强 ckpt | 成功率 |
53
+ |---|---|---|---|
54
+ | color_spatial | pi0 | stair_f18 | **54.9%** |
55
+ | color_spatial | GR00T | stair_f18 | 51.1% |
56
+ | spatial_size | GR00T | stair_f18 | 48.1% |
57
+ | all_factor | GR00T | Lrandom_f50_n400 | 47.0% |
58
+ | spatial_object | GR00T | Lrandom_f12 | 39.5% |
59
+ | color_size (EASY) | GR00T | Lrandom_f18 | 37.2% |
60
+ | verb_spatial | GR00T | stair_f18 | 35.5% |
61
+ | color_size (HARD) | GR00T | Lrandom_f18 | 34.9% |
62
+ | verb_size | GR00T | random_f12 | 24.2% |
63
+
64
+ **结论:** 任务难度 color_spatial > spatial_size > spatial_object > verb_spatial > color_size ≈ verb_size;
65
+ **含 size 的任务对 VLA 最难**(8–35%);空间类任务里 **stair_f18 普遍最强**;`random_f18` 多实验偏弱。
66
+
67
+ 完整逐 ckpt 表见 [`result.md`](result.md)(或各 `results/.../SUMMARY.txt`)。
REPRODUCE.md ADDED
@@ -0,0 +1,102 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # 可复现评测全集 — 使用说明 (REPRODUCE)
2
+
3
+ 本仓库是 GR00T N1.7 / pi0 / Genie-Envisioner 在 ManiSkill 上的 pairwise-OOD、
4
+ all-factor、conflict、VLM 评测的**可复现全集**(除 checkpoint 权重外的全部:
5
+ 代码、仿真、评测结果、复现步骤)。
6
+
7
+ ## 目录结构
8
+ ```
9
+ .
10
+ ├── README.md # 全部实验结果总表(7 节)+ 附录:干扰项/口径明细
11
+ ├── result.md # GR00T pair-grid + all_factor 结果(精简版)
12
+ ├── REPRODUCE.md # 本文件:怎么跑
13
+ ├── code/ # 全部评测代码(client + runner + dispatcher)
14
+ ├── eval_results/ # 每个 ckpt 的逐 seed 明细 txt/jsonl
15
+ │ ├── results_gr00t_pair_*/ # GR00T pair-grid 硬口径(+color_size_easy)
16
+ │ ├── results_af/ # GR00T all_factor full-factor
17
+ │ ├── results_pi0_pairwise/ # pi0 pair-grid
18
+ │ ├── conflict_env_{gr00t,genie}/ # conflict 双轴 env success
19
+ │ └── vlm_eval/ # Gemini-2.5-flash VLM 判定 + FDR_summary
20
+ └── simulation/
21
+ ├── eval_simulation_src.tar.gz # ManiSkill 仿真(VerbObjectColor-v1 环境)
22
+ ├── Maniskill_gen_new.tar.gz # 数据采集定义(get_env_id_and_color 等)
23
+ └── VERSION.txt # 仿真 git commit
24
+ ```
25
+
26
+ ## 0. 准备
27
+
28
+ ### 0.1 仿真就位(代码已是文件夹,可在线浏览;仅二进制 3D 资源是 tar)
29
+ ```bash
30
+ # 代码已在 simulation/eval_simulation/ 与 simulation/Maniskill_gen_new/(文件夹,可直接看)
31
+ # 把二进制资源(网格/贴图/hdr,382 个)解开,覆盖回 eval_simulation/ 即补全可跑:
32
+ tar xzf simulation/eval_simulation_ASSETS.tar.gz -C simulation/ # 解出 eval_simulation/.../*.stl,*.glb,*.hdr ...
33
+ # 然后把整个 simulation/eval_simulation 与 simulation/Maniskill_gen_new 放到 /workspace/ 下
34
+ cp -r simulation/eval_simulation /workspace/
35
+ cp -r simulation/Maniskill_gen_new /workspace/
36
+ ```
37
+ > 说明:代码(.py/.urdf/.xml/.mtl/.json/.sh,864 文件 7.9M)放成文件夹便于浏览/复现;
38
+ > 二进制 3D 资源(.stl/.glb/.obj/.png/.hdr 等 382 文件 110M)单独 tar,因为它们本就不可读、
39
+ > 且文件数多会撞 HF 提交限流。解压后 eval_simulation 即与原始一致(1246 文件)。
40
+
41
+ ### 0.2 venv(三套,互相隔离)
42
+ - `/workspace/groot_eval/.venv_ms` ManiSkill 物理/渲染 + 评测 client(numpy/torch/mani_skill/zmq)
43
+ - `/workspace/groot_eval/.venv_groot` GR00T N1.7 推理服务器(gr00t 包 + transformers)
44
+ - `/venv/pi0_eval` pi0 openpi 推理服务器(仅 pi0 评测需要)
45
+
46
+ ### 0.3 checkpoint(本仓库**不含**权重,从 HF 拉)
47
+ - pair-grid(f6/f12/f18):`yqi19/gr00t_public_pair_ckpt` → 放到 `/workspace/gr00t_pair_ckpt/<ckpt>/`
48
+ - all_factor(f50/n*):`yqi19/gr00t_all_factor_evaluation` → `/workspace/groot_eval/gr00t_af_ckpts/<ckpt>/checkpoint-10000/`
49
+ - pi0:`/workspace/pi0_ckpt/<ckpt>/17999/`
50
+
51
+ ## 1. GR00T pair-grid(硬口径,3-seed)
52
+ 单卡单 ckpt(内部跑 seed 42/40/41,起一次 GR00T zmq server):
53
+ ```bash
54
+ cd /workspace/groot_eval
55
+ SEEDS_OVERRIDE="42 40 41" bash code/run_groot_one_ckpt.sh <ckpt_name> <gpu> <port>
56
+ # 例: ... color_spatial_stair_f18 0 5700
57
+ # color_size EASY 口径: 额外 COLOR_SIZE_MODE=easy
58
+ ```
59
+ - 实现:`code/groot_grid_eval.py`(env 构建 + HARD/EASY 干扰项 + 评分)
60
+ - 输出:`results_gr00t_pair_<experiment>/<ckpt>/gr00t_<exp>_<ckpt>_seed<sd>.txt`
61
+ - 实验由 ckpt 名前缀解析(color_size/color_spatial/verb_spatial/spatial_size/spatial_object/verb_size)
62
+
63
+ ### 多 ckpt 并行(8 卡常驻调度器)
64
+ ```bash
65
+ tmux new-session -d -s gpair_dispatcher "bash code/gpair_dispatcher.sh"
66
+ # 把 "<ckpt>:<seed>[:easy]" 逐行写进 logs/gr00t_pair/vs_queue.txt 即可;
67
+ # all_factor 用 "af:<ckpt>" 写进 af_queue.txt
68
+ ```
69
+
70
+ ## 2. GR00T all_factor(full-factor,对齐 pi0.5)
71
+ ```bash
72
+ bash code/run_af_one_ckpt_fast.sh <af_ckpt> <gpu> <port>
73
+ # 内部:run_full_factor_groot.sh + groot_full_factor_main.py,seeds 40/41/42,
74
+ # sample_n=200, 200ep, max_steps=500, no_distractor=0.70
75
+ # 输出: results_af/<ckpt>/full_factor_<ckpt>_seed<sd>.txt
76
+ ```
77
+
78
+ ## 3. pi0 pair-grid
79
+ ```bash
80
+ SEEDS_OVERRIDE="42 40 41" bash code/run_pi0_one_ckpt.sh <ckpt> <gpu> <port>
81
+ # sim_backend=cpu(pi0 server 与 GPU-sim 冲突);实现 code/pi0_grid_eval.py
82
+ # 输出: results_pi0_pairwise/<ckpt>/pi0_<exp>_<ckpt>_seed<sd>.txt
83
+ ```
84
+
85
+ ## 4. conflict-experiment(双轴 env success)
86
+ ```bash
87
+ # GR00T: groot_main.py + run_ood_groot_inference.sh(起 GR00T server)
88
+ # 输出 overall_<factorA>_success / overall_<factorB>_success
89
+ ```
90
+
91
+ ## 5. VLM 判定(Gemini-2.5-flash)+ FDR
92
+ - 用 Gemini-2.5-flash 看 conflict 视频判 factor_followed,产出 `vlm_eval/<model>/vlm_eval_<exp>.jsonl`
93
+ - FDR=(S_f1−S_f2)/(S_f1+S_f2),三方对照见 `eval_results/vlm_eval/FDR_summary.txt`
94
+
95
+ ## 6. 干扰项 / 口径明细(可复现关键)
96
+ **见 `README.md` 末尾「附:可复现配置」** —— 每个实验的 target/distractor 尺寸、
97
+ spatial 锚点坐标、num_distractors、指令模板、task_difficulty / max_steps / replan
98
+ 全部列清。照着即可逐 cell 复现。
99
+
100
+ ## 7. 结果速览
101
+ 最强:color_spatial_stair_f18(GR00T 51.1% / pi0 54.9%);含 size 的任务(color_size/verb_size)
102
+ 对 VLA 最难(~8–35%)。完整 73 ckpt × 3-seed 表见 `README.md`。
code/gpair_dispatcher.sh ADDED
@@ -0,0 +1,90 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ # gpair_dispatcher.sh — long-running tmux-resident dispatcher for GR00T pair eval.
3
+ # Polls every 30s: for each free GPU (no gpair_g<g> tmux session), pop the next
4
+ # job from a priority list of queue files and launch it. Independent of Claude
5
+ # wakeups — runs until all queue files are empty (and then continues idle, in
6
+ # case new queues get added).
7
+ #
8
+ # Queue file priority order (first non-empty wins):
9
+ # 1) cs_queue.txt — HARD color_size残余 (highest)
10
+ # 2) vs_queue.txt — verb_spatial
11
+ # 3) ecs_queue.txt — EASY color_size
12
+ # 4) any *_queue.txt below LOG_DIR (lex-sorted)
13
+ #
14
+ # Each line: "<ckpt>:<seed>". After successful dispatch, line is removed.
15
+ # Logs each dispatch to dispatcher.log.
16
+
17
+ set -u
18
+ ROOT=/workspace/groot_eval
19
+ H="$ROOT/harness"
20
+ LD="$ROOT/logs/gr00t_pair"
21
+ DLOG="$LD/dispatcher.log"
22
+ PRIORITY=(cs_queue.txt vs_queue.txt ecs_queue.txt af_queue.txt)
23
+ INTERVAL=30
24
+ PORT_BASE=5700
25
+
26
+ mkdir -p "$LD"
27
+ echo "[$(date +%F\ %H:%M:%S)] dispatcher start (pid $$, interval ${INTERVAL}s)" >> "$DLOG"
28
+
29
+ # log-rotation: cap at 5000 lines
30
+ trim_log() { [[ -f "$DLOG" ]] && [[ "$(wc -l < "$DLOG")" -gt 5000 ]] && tail -3000 "$DLOG" > "$DLOG.tmp" && mv "$DLOG.tmp" "$DLOG"; }
31
+
32
+ pop_one() {
33
+ # echo "<ckpt>:<seed> <queue_file>" or nothing
34
+ local f
35
+ for f in "${PRIORITY[@]}"; do
36
+ local qf="$LD/$f"
37
+ [[ -s "$qf" ]] || continue
38
+ local line; line=$(head -1 "$qf")
39
+ [[ -n "$line" ]] && { echo "$line $qf"; return 0; }
40
+ done
41
+ # any other *_queue.txt
42
+ for qf in "$LD"/*_queue.txt; do
43
+ [[ -s "$qf" ]] || continue
44
+ case "$(basename "$qf")" in cs_queue.txt|vs_queue.txt|ecs_queue.txt) continue;; esac
45
+ local line; line=$(head -1 "$qf")
46
+ [[ -n "$line" ]] && { echo "$line $qf"; return 0; }
47
+ done
48
+ return 1
49
+ }
50
+
51
+ while true; do
52
+ for g in 0 1 2 3 4 5 6 7; do
53
+ if tmux has-session -t "gpair_g$g" 2>/dev/null; then continue; fi
54
+ # GPU free — try to grab next job
55
+ pair=$(pop_one) || continue
56
+ job=${pair%% *}; qf=${pair##* }
57
+ port=$((PORT_BASE + g))
58
+ # all-factor job: "af:<ckpt>" → runs run_af_one_ckpt_fast.sh (3 seeds in one launch)
59
+ if [[ "$job" == af:* ]]; then
60
+ ck=${job#af:}
61
+ if [[ ! -d "/workspace/groot_eval/gr00t_af_ckpts/$ck" ]]; then
62
+ echo "[$(date +%H:%M:%S)] WAIT af $ck not present in gr00t_af_ckpts/" >> "$DLOG"
63
+ continue
64
+ fi
65
+ tmux new-session -d -s "gpair_g$g" \
66
+ "bash $H/run_af_one_ckpt_fast.sh $ck $g $port > $LD/r_af_${ck}.log 2>&1"
67
+ sed -i '1d' "$qf"
68
+ echo "[$(date +%H:%M:%S)] DISPATCH AF $ck → g$g (port $port) from $(basename $qf)" >> "$DLOG"
69
+ continue
70
+ fi
71
+ # pair-grid job: "ckpt:seed" or "ckpt:seed:mode"
72
+ IFS=':' read -r ck sd mode <<<"$job"
73
+ mode=${mode:-hard}
74
+ if [[ ! -d "/workspace/gr00t_pair_ckpt/$ck" ]]; then
75
+ echo "[$(date +%H:%M:%S)] WAIT $ck:$sd not yet downloaded (skip this round)" >> "$DLOG"
76
+ continue
77
+ fi
78
+ if [[ "$mode" == "easy" ]]; then
79
+ tag="${ck}_EASY_seed${sd}"
80
+ else
81
+ tag="${ck}_seed${sd}"
82
+ fi
83
+ tmux new-session -d -s "gpair_g$g" \
84
+ "COLOR_SIZE_MODE=$mode SEEDS_OVERRIDE=$sd bash $H/run_groot_one_ckpt.sh $ck $g $port > $LD/r_${tag}.log 2>&1"
85
+ sed -i '1d' "$qf"
86
+ echo "[$(date +%H:%M:%S)] DISPATCH $ck:$sd:$mode → g$g (port $port) from $(basename $qf)" >> "$DLOG"
87
+ done
88
+ trim_log
89
+ sleep "$INTERVAL"
90
+ done
code/gpair_dispatcher_watchdog.sh ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ # 每 5min 检测 gpair_dispatcher tmux 是否存活,死了就重起
3
+ ROOT=/workspace/groot_eval
4
+ while true; do
5
+ if ! tmux has-session -t gpair_dispatcher 2>/dev/null; then
6
+ tmux new-session -d -s gpair_dispatcher \
7
+ "while true; do bash $ROOT/harness/gpair_dispatcher.sh; echo \"[\$(date +%F\\ %H:%M:%S)] dispatcher exited rc=\$? — restart in 10s\" >> $ROOT/logs/gr00t_pair/dispatcher.log; sleep 10; done"
8
+ echo "[$(date +%F\ %H:%M:%S)] watchdog re-spawned gpair_dispatcher" >> $ROOT/logs/gr00t_pair/dispatcher.log
9
+ fi
10
+ sleep 300
11
+ done
code/groot_client.py ADDED
@@ -0,0 +1,98 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ Minimal stand-alone client for the GR00T zmq PolicyServer
4
+ (gr00t/policy/server_client.py :: PolicyServer).
5
+
6
+ Lives in the ManiSkill venv, which deliberately does NOT have the heavy
7
+ `gr00t` package installed. It re-implements exactly the wire format used by
8
+ `gr00t.policy.server_client.MsgSerializer`:
9
+
10
+ * msgpack for the envelope
11
+ * numpy arrays serialised with ``np.save`` into ``{"__ndarray_class__": True,
12
+ "as_npy": <bytes>}``
13
+
14
+ Only the ``get_action`` / ``reset`` / ``ping`` endpoints are used here, none of
15
+ which return a ``ModalityConfig``, so we do not need to model that class.
16
+ """
17
+ from __future__ import annotations
18
+
19
+ import io
20
+ from typing import Any
21
+
22
+ import msgpack
23
+ import numpy as np
24
+ import zmq
25
+
26
+
27
+ def _encode(obj: Any):
28
+ if isinstance(obj, np.ndarray):
29
+ buf = io.BytesIO()
30
+ np.save(buf, obj, allow_pickle=False)
31
+ return {"__ndarray_class__": True, "as_npy": buf.getvalue()}
32
+ return obj
33
+
34
+
35
+ def _decode(obj):
36
+ if isinstance(obj, dict) and "__ndarray_class__" in obj:
37
+ return np.load(io.BytesIO(obj["as_npy"]), allow_pickle=False)
38
+ return obj
39
+
40
+
41
+ class GrootClient:
42
+ """REQ-socket client mirroring gr00t.policy.server_client.PolicyClient."""
43
+
44
+ def __init__(self, host: str = "127.0.0.1", port: int = 5555,
45
+ timeout_ms: int = 120_000):
46
+ self._ctx = zmq.Context.instance()
47
+ self._host = host
48
+ self._port = port
49
+ self._timeout_ms = timeout_ms
50
+ self._connect()
51
+
52
+ def _connect(self):
53
+ self._sock = self._ctx.socket(zmq.REQ)
54
+ self._sock.setsockopt(zmq.RCVTIMEO, self._timeout_ms)
55
+ self._sock.setsockopt(zmq.SNDTIMEO, self._timeout_ms)
56
+ self._sock.setsockopt(zmq.LINGER, 0)
57
+ self._sock.connect(f"tcp://{self._host}:{self._port}")
58
+
59
+ def _call(self, endpoint: str, data: dict | None = None,
60
+ requires_input: bool = True):
61
+ req: dict = {"endpoint": endpoint}
62
+ if requires_input:
63
+ req["data"] = data
64
+ try:
65
+ self._sock.send(msgpack.packb(req, default=_encode))
66
+ msg = self._sock.recv()
67
+ except zmq.error.Again:
68
+ self._sock.close()
69
+ self._connect()
70
+ raise
71
+ resp = msgpack.unpackb(msg, object_hook=_decode, raw=False)
72
+ if isinstance(resp, dict) and "error" in resp:
73
+ raise RuntimeError(f"GR00T server error: {resp['error']}")
74
+ return resp
75
+
76
+ def ping(self) -> bool:
77
+ try:
78
+ self._call("ping", requires_input=False)
79
+ return True
80
+ except zmq.error.ZMQError:
81
+ self._sock.close()
82
+ self._connect()
83
+ return False
84
+
85
+ def get_action(self, observation: dict, options: dict | None = None):
86
+ """Returns (action_dict, info_dict)."""
87
+ resp = self._call("get_action",
88
+ {"observation": observation, "options": options})
89
+ return tuple(resp) # msgpack list -> (action, info)
90
+
91
+ def reset(self, options: dict | None = None):
92
+ return self._call("reset", {"options": options})
93
+
94
+ def kill_server(self):
95
+ try:
96
+ self._call("kill", requires_input=False)
97
+ except Exception:
98
+ pass
code/groot_full_factor_batch.py ADDED
@@ -0,0 +1,201 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ GR00T full-factor eval — SINGLE-PROCESS batch (method A, conflict-style).
4
+
5
+ Functionally identical to running run_full_factor_groot.sh + groot_full_factor_main.py
6
+ per cell, but the 200 cells run in ONE python process: torch/mani_skill import,
7
+ GR00T zmq connection and GPU-sim context are initialised ONCE instead of 200×.
8
+ All per-cell logic (cell sampling, RNG sequence, env build, success, video,
9
+ result-line / header / overall_success format) is reused VERBATIM from
10
+ groot_full_factor_main.py so results match the per-cell harness exactly.
11
+
12
+ Usage:
13
+ groot_full_factor_batch.py --host H --port P --results-txt PATH --video-root DIR \
14
+ [--sample-n 200] [--sample-seed 42] [--seed-base 40] [--total-episodes 200] \
15
+ [--max-episode-steps 500] [--no-distractor-prob 0.70] [--replan-steps 5] \
16
+ [--sim-backend gpu] [--render-backend gpu]
17
+ """
18
+ from __future__ import annotations
19
+
20
+ import argparse
21
+ import itertools
22
+ import math
23
+ import pathlib
24
+ import random
25
+ import sys
26
+
27
+ import gymnasium as gym
28
+ import imageio.v2 as imageio
29
+ import mani_skill.envs # noqa: F401
30
+ import numpy as np
31
+
32
+ # Reuse EVERY piece of per-cell logic from the per-cell harness → guaranteed parity.
33
+ from groot_full_factor_main import (
34
+ SIZE_CONFIG,
35
+ COLOR_TO_ID,
36
+ _query_groot,
37
+ _spatial_xy,
38
+ _state8,
39
+ _success,
40
+ _to_numpy_hwc,
41
+ make_instruction,
42
+ )
43
+ from groot_client import GrootClient
44
+
45
+ # Identical ordering to run_full_factor_groot.sh's sampler.
46
+ VERBS = ["lift", "grasp", "push", "pull", "rotate", "slide"]
47
+ COLORS = ["red", "yellow", "blue", "orange", "green", "black"]
48
+ SHAPES = ["cube", "sphere", "cup", "car", "pyramid", "star"]
49
+ SPATIALS = ["left", "right", "middle", "front", "behind"]
50
+ SIZES = ["small", "large", "smaller", "larger"]
51
+
52
+
53
+ def sample_cells(sample_n: int, sample_seed: int):
54
+ all_tasks = list(itertools.product(VERBS, COLORS, SHAPES, SPATIALS, SIZES))
55
+ if sample_n > 0:
56
+ rng = random.Random(sample_seed)
57
+ rng.shuffle(all_tasks)
58
+ all_tasks = all_tasks[:sample_n]
59
+ return all_tasks
60
+
61
+
62
+ def run_cell(client, verb, color, shape, spatial, size, cell_seed, n_eps,
63
+ no_distractor_prob, max_steps, replan_steps, sim_backend,
64
+ render_backend, video_dir, save_wrist=True):
65
+ """Mirror groot_full_factor_main.eval_full_factor for ONE cell, 1 process."""
66
+ prompt = make_instruction(verb, size, color, shape, spatial)
67
+ size_cfg = SIZE_CONFIG[size]
68
+ object_color_id = COLOR_TO_ID[color]
69
+ has_comparison = size_cfg["distractor_size_scales"] is not None
70
+ distractor_max = 1 if has_comparison else 0
71
+
72
+ make_kw = dict(
73
+ obs_mode="rgb",
74
+ control_mode="pd_joint_pos",
75
+ sim_backend=sim_backend,
76
+ render_backend=render_backend,
77
+ max_episode_steps=max_steps,
78
+ verb=verb,
79
+ object_shape=shape,
80
+ object_color_id=object_color_id,
81
+ distractor_max=distractor_max,
82
+ object_size_jiggle=0.0,
83
+ )
84
+ env = gym.make("VerbObjectColor-v1", **make_kw)
85
+ video_dir.mkdir(parents=True, exist_ok=True)
86
+
87
+ rng = random.Random(cell_seed) # same as per-cell main.py (rng=Random(args.seed))
88
+ successes = 0
89
+ try:
90
+ for ep in range(n_eps):
91
+ no_distractor = rng.random() < no_distractor_prob
92
+ reset_options = {
93
+ "obj_xy": _spatial_xy(spatial, rng),
94
+ "target_size_scale": size_cfg["target_size_scale"],
95
+ }
96
+ if size_cfg["distractor_size_scales"] is not None:
97
+ reset_options["distractor_size_scales"] = size_cfg["distractor_size_scales"]
98
+ if no_distractor:
99
+ reset_options["num_distractors"] = 0
100
+
101
+ obs, _ = env.reset(seed=cell_seed + ep, options=reset_options)
102
+ client.reset()
103
+ plan = []
104
+ base_w = imageio.get_writer(video_dir / f"ep{ep:03d}.mp4", fps=30)
105
+ wrist_w = imageio.get_writer(video_dir / f"ep{ep:03d}_wrist.mp4", fps=30) if save_wrist else None
106
+ done = False
107
+ ep_ok = False
108
+ try:
109
+ while not done:
110
+ rgb_b = _to_numpy_hwc(obs["sensor_data"]["base_camera"]["rgb"])
111
+ rgb_h = _to_numpy_hwc(obs["sensor_data"]["hand_camera"]["rgb"])
112
+ base_w.append_data(rgb_b)
113
+ if wrist_w is not None:
114
+ wrist_w.append_data(rgb_h)
115
+ if not plan:
116
+ chunk = _query_groot(client, rgb_b, rgb_h, _state8(env), prompt)
117
+ nn = min(replan_steps, len(chunk))
118
+ if nn < 1:
119
+ break
120
+ plan = list(chunk[:nn])
121
+ action = np.asarray(plan.pop(0), dtype=np.float32).ravel()[:8]
122
+ obs, _r, term, trunc, info = env.step(action)
123
+ if _success(info):
124
+ ep_ok = True
125
+ done = bool(term or trunc) or ep_ok
126
+ finally:
127
+ base_w.close()
128
+ if wrist_w is not None:
129
+ wrist_w.close()
130
+ if ep_ok:
131
+ successes += 1
132
+ finally:
133
+ env.close()
134
+ return successes, n_eps, prompt
135
+
136
+
137
+ def main():
138
+ ap = argparse.ArgumentParser()
139
+ ap.add_argument("--host", default="127.0.0.1")
140
+ ap.add_argument("--port", type=int, default=5555)
141
+ ap.add_argument("--results-txt", required=True)
142
+ ap.add_argument("--video-root", required=True)
143
+ ap.add_argument("--sample-n", type=int, default=200)
144
+ ap.add_argument("--sample-seed", type=int, default=42)
145
+ ap.add_argument("--seed-base", type=int, default=40)
146
+ ap.add_argument("--total-episodes", type=int, default=200)
147
+ ap.add_argument("--max-episode-steps", type=int, default=500)
148
+ ap.add_argument("--no-distractor-prob", type=float, default=0.70)
149
+ ap.add_argument("--replan-steps", type=int, default=5)
150
+ ap.add_argument("--sim-backend", default="gpu")
151
+ ap.add_argument("--render-backend", default="gpu")
152
+ a = ap.parse_args()
153
+
154
+ cells = sample_cells(a.sample_n, a.sample_seed)
155
+ total_cells = len(cells)
156
+ n_eps = max(1, math.ceil(a.total_episodes / total_cells))
157
+
158
+ rt = pathlib.Path(a.results_txt)
159
+ rt.parent.mkdir(parents=True, exist_ok=True)
160
+ with rt.open("w") as f:
161
+ f.write("# Full-factor inference (GR00T N1.7) [single-process batch]\n")
162
+ f.write(f"sample_n={a.sample_n} sample_seed={a.sample_seed} total_cells={total_cells}\n")
163
+ f.write(f"total_episodes_target={a.total_episodes} num_episodes_per_cell={n_eps}\n")
164
+ f.write(f"total_episodes_actual={total_cells * n_eps}\n")
165
+ f.write(f"host={a.host} port={a.port}\n")
166
+ f.write(f"sim_backend={a.sim_backend} render_backend={a.render_backend}\n")
167
+ f.write(f"max_episode_steps={a.max_episode_steps} seed_base={a.seed_base}\n")
168
+ f.write(f"no_distractor_prob={a.no_distractor_prob} replan_steps={a.replan_steps}\n\n")
169
+ f.write("index verb color shape spatial size prompt successes/total\n")
170
+
171
+ client = GrootClient(a.host, a.port)
172
+ tot_s = tot_n = 0
173
+ for i, (verb, color, shape, spatial, size) in enumerate(cells, start=1):
174
+ cell_seed = a.seed_base + i
175
+ vdir = pathlib.Path(a.video_root) / f"{verb}_{size}_{color}_{shape}_{spatial}"
176
+ print(f"[{i}/{total_cells}] {make_instruction(verb,size,color,shape,spatial)}", flush=True)
177
+ try:
178
+ s, n, prompt = run_cell(
179
+ client, verb, color, shape, spatial, size, cell_seed, n_eps,
180
+ a.no_distractor_prob, a.max_episode_steps, a.replan_steps,
181
+ a.sim_backend, a.render_backend, vdir)
182
+ cell_res = f"{s}/{n}"
183
+ tot_s += s
184
+ tot_n += n
185
+ except Exception as e: # noqa: BLE001
186
+ print(f" !! cell {i} failed: {e}", flush=True)
187
+ prompt = make_instruction(verb, size, color, shape, spatial)
188
+ cell_res = "NA"
189
+ with rt.open("a") as f:
190
+ f.write(f'{i} {verb} {color} {shape} {spatial} {size} "{prompt}" {cell_res}\n')
191
+
192
+ rate = 100.0 * tot_s / tot_n if tot_n else 0.0
193
+ with rt.open("a") as f:
194
+ f.write(f"\noverall_success={tot_s}/{tot_n} ({rate:.1f}%)\n")
195
+ print(f"\nDone: {tot_n} episodes across {total_cells} cells")
196
+ print(f"Overall: {tot_s}/{tot_n} ({rate:.1f}%)")
197
+ print(f"Results: {rt}")
198
+
199
+
200
+ if __name__ == "__main__":
201
+ main()
code/groot_full_factor_main.py ADDED
@@ -0,0 +1,285 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ GR00T N1.7 full-factor eval — aligned 1:1 with the pi0.5 protocol in
4
+ eval_pi0_5/examples/maniskill_full_factor/main.py.
5
+
6
+ The ENVIRONMENT, cell vocabulary, instruction format, distractor / size /
7
+ spatial logic, success criterion and the `Success rate: X / Y (Z%)` stdout
8
+ line are COPIED VERBATIM from the pi0.5 harness so the numbers are directly
9
+ comparable. The only thing that differs is the policy boundary: instead of
10
+ the openpi websocket client we drive a fine-tuned GR00T N1.7 checkpoint
11
+ served over zmq by gr00t.eval.run_gr00t_server (same wire format the conflict
12
+ harness uses — see groot_main.py::_query_groot).
13
+ """
14
+ from __future__ import annotations
15
+
16
+ import collections
17
+ import dataclasses
18
+ import logging
19
+ import pathlib
20
+ import random
21
+
22
+ import gymnasium as gym
23
+ import imageio.v2 as imageio
24
+ import mani_skill.envs # noqa: F401
25
+ import numpy as np
26
+ import torch
27
+ import tqdm
28
+ import tyro
29
+
30
+ from groot_client import GrootClient
31
+
32
+ # ── Vocabularies (VERBATIM from pi0.5 main.py) ────────────────────────────────
33
+ TRAINING_VERBS = ("lift", "grasp", "push", "pull", "rotate", "slide")
34
+ TRAINING_COLORS = ("red", "yellow", "blue", "orange", "green", "black")
35
+ TRAINING_SHAPES = ("cube", "sphere", "cup", "car", "pyramid", "star")
36
+ TRAINING_SPATIALS = ("left", "right", "middle", "front", "behind")
37
+ TRAINING_SIZES = ("small", "large", "smaller", "larger")
38
+
39
+ COLOR_TO_ID = {c: i for i, c in enumerate(TRAINING_COLORS)}
40
+
41
+ VERB_TO_EN = {
42
+ "lift": "Lift", "grasp": "Grasp", "push": "Push",
43
+ "pull": "Pull", "rotate": "Rotate", "slide": "Slide",
44
+ }
45
+ SPATIAL_TO_PHRASE = {
46
+ "left": "on the left", "right": "on the right", "middle": "in the middle",
47
+ "front": "in front", "behind": "at the back",
48
+ }
49
+ SPATIAL_XY_ANCHOR = {
50
+ "left": (-0.10, 0.00),
51
+ "right": ( 0.10, 0.00),
52
+ "middle": ( 0.00, 0.00),
53
+ "front": ( 0.00, 0.10),
54
+ "behind": ( 0.00, -0.10),
55
+ }
56
+ SIZE_CONFIG = {
57
+ "small": dict(target_size_scale=0.72, distractor_size_scales=None),
58
+ "large": dict(target_size_scale=1.34, distractor_size_scales=None),
59
+ "smaller": dict(target_size_scale=0.82, distractor_size_scales=[1.08]),
60
+ "larger": dict(target_size_scale=1.18, distractor_size_scales=[0.92]),
61
+ }
62
+
63
+
64
+ def make_instruction(verb: str, size: str, color: str, shape: str, spatial: str) -> str:
65
+ return f"{VERB_TO_EN[verb]} the {size} {color} {shape} {SPATIAL_TO_PHRASE[spatial]}."
66
+
67
+
68
+ @dataclasses.dataclass
69
+ class Args:
70
+ # GR00T zmq policy server
71
+ host: str = "127.0.0.1"
72
+ port: int = 5555
73
+ replan_steps: int = 5
74
+
75
+ # Task specification (5 factors)
76
+ verb: str = "lift"
77
+ color: str = "red"
78
+ shape: str = "cube"
79
+ spatial: str = "left"
80
+ size: str = "small"
81
+ prompt: str = ""
82
+ """Override language instruction; if empty, auto-built from the 5 factors."""
83
+
84
+ no_distractor_prob: float = 0.70
85
+ """Probability per episode of forcing num_distractors=0 (pi0.5: 0.70)."""
86
+
87
+ # ManiSkill
88
+ num_episodes: int = 50
89
+ max_episode_steps: int = 500
90
+ sim_backend: str = "cpu"
91
+ render_backend: str = "cpu"
92
+ obs_mode: str = "rgb"
93
+ render_mode: str | None = None
94
+ seed: int = 0
95
+
96
+ # Output
97
+ video_out_path: str = "data/maniskill_full_factor/videos"
98
+ save_wrist_video: bool = True
99
+
100
+
101
+ # ── Helpers (VERBATIM from pi0.5 main.py) ─────────────────────────────────────
102
+ def _to_numpy_hwc(x: np.ndarray | torch.Tensor) -> np.ndarray:
103
+ if torch.is_tensor(x):
104
+ x = x.detach().float().cpu().numpy()
105
+ x = np.asarray(x)
106
+ if x.ndim == 4:
107
+ x = x[0]
108
+ if x.shape[0] in (1, 3) and x.shape[-1] != 3 and x.ndim == 3:
109
+ x = np.transpose(x, (1, 2, 0))
110
+ if np.issubdtype(x.dtype, np.floating) and x.max() <= 1.0:
111
+ x = (np.clip(x, 0, 1) * 255).astype(np.uint8)
112
+ else:
113
+ x = x.astype(np.uint8)
114
+ return np.ascontiguousarray(x)
115
+
116
+
117
+ def _state8(env: gym.Env) -> np.ndarray:
118
+ qpos = env.unwrapped.agent.robot.get_qpos()
119
+ if torch.is_tensor(qpos):
120
+ qpos = qpos[0].detach().cpu().numpy()
121
+ qpos = np.asarray(qpos, dtype=np.float32).ravel()
122
+ if qpos.size >= 8:
123
+ return qpos[:8].copy()
124
+ out = np.zeros(8, dtype=np.float32)
125
+ out[: qpos.size] = qpos
126
+ return out
127
+
128
+
129
+ def _success(info: dict) -> bool:
130
+ if "success" not in info:
131
+ return False
132
+ s = info["success"]
133
+ if torch.is_tensor(s):
134
+ return bool(s.squeeze().item())
135
+ return bool(np.asarray(s).squeeze())
136
+
137
+
138
+ def _spatial_xy(spatial: str, rng: random.Random) -> list[float]:
139
+ ax, ay = SPATIAL_XY_ANCHOR[spatial]
140
+ return [ax + rng.uniform(-0.012, 0.012), ay + rng.uniform(-0.012, 0.012)]
141
+
142
+
143
+ # ── GR00T policy boundary (VERBATIM from groot_main.py::_query_groot) ──────────
144
+ def _query_groot(client: GrootClient, img_base: np.ndarray, img_wrist: np.ndarray,
145
+ state8: np.ndarray, instruction: str) -> np.ndarray:
146
+ """Build the nested GR00T observation, query the server, return an
147
+ (action_horizon, 8) float32 chunk = [7 joint-pos targets, 1 gripper]."""
148
+ obs = {
149
+ "video": {
150
+ "image": img_base[None, None, ...],
151
+ "wrist_image": img_wrist[None, None, ...],
152
+ },
153
+ "state": {
154
+ "arm": state8[:7][None, None, :].astype(np.float32),
155
+ "gripper": state8[7:8][None, None, :].astype(np.float32),
156
+ },
157
+ "language": {
158
+ "annotation.human.task_description": [[instruction]],
159
+ },
160
+ }
161
+ action, _info = client.get_action(obs)
162
+ arm = np.asarray(action["arm"], dtype=np.float32) # (1, Th, 7)
163
+ grip = np.asarray(action["gripper"], dtype=np.float32) # (1, Th, 1)
164
+ return np.concatenate([arm[0], grip[0]], axis=-1) # (Th, 8)
165
+
166
+
167
+ # ── Main eval loop (env / sampling logic VERBATIM from pi0.5 main.py) ──────────
168
+ def eval_full_factor(args: Args) -> None:
169
+ logging.basicConfig(level=logging.INFO, force=True)
170
+
171
+ verb = args.verb.lower().strip()
172
+ color = args.color.lower().strip()
173
+ shape = args.shape.lower().strip()
174
+ spatial = args.spatial.lower().strip()
175
+ size = args.size.lower().strip()
176
+
177
+ for val, vocab, name in [
178
+ (verb, TRAINING_VERBS, "verb"),
179
+ (color, TRAINING_COLORS, "color"),
180
+ (shape, TRAINING_SHAPES, "shape"),
181
+ (spatial, TRAINING_SPATIALS, "spatial"),
182
+ (size, TRAINING_SIZES, "size"),
183
+ ]:
184
+ if val not in vocab:
185
+ raise ValueError(f"{name}={val!r} not in {vocab}")
186
+
187
+ prompt = args.prompt.strip() or make_instruction(verb, size, color, shape, spatial)
188
+ logging.info("prompt=%r", prompt)
189
+
190
+ size_cfg = SIZE_CONFIG[size]
191
+ object_color_id = COLOR_TO_ID[color]
192
+
193
+ has_comparison = size_cfg["distractor_size_scales"] is not None
194
+ distractor_max = 1 if has_comparison else 0
195
+
196
+ make_kw: dict = dict(
197
+ obs_mode=args.obs_mode,
198
+ control_mode="pd_joint_pos",
199
+ sim_backend=args.sim_backend,
200
+ render_backend=args.render_backend,
201
+ max_episode_steps=args.max_episode_steps,
202
+ verb=verb,
203
+ object_shape=shape,
204
+ object_color_id=object_color_id,
205
+ distractor_max=distractor_max,
206
+ object_size_jiggle=0.0,
207
+ )
208
+ if args.render_mode is not None:
209
+ make_kw["render_mode"] = args.render_mode
210
+
211
+ env = gym.make("VerbObjectColor-v1", **make_kw)
212
+
213
+ video_out_path = pathlib.Path(args.video_out_path)
214
+ video_out_path.mkdir(parents=True, exist_ok=True)
215
+
216
+ client = GrootClient(args.host, args.port)
217
+ rng = random.Random(args.seed)
218
+
219
+ successes = 0
220
+ for ep in tqdm.tqdm(range(args.num_episodes)):
221
+ no_distractor = rng.random() < args.no_distractor_prob
222
+ reset_options: dict = {
223
+ "obj_xy": _spatial_xy(spatial, rng),
224
+ "target_size_scale": size_cfg["target_size_scale"],
225
+ }
226
+ if size_cfg["distractor_size_scales"] is not None:
227
+ reset_options["distractor_size_scales"] = size_cfg["distractor_size_scales"]
228
+ if no_distractor:
229
+ reset_options["num_distractors"] = 0
230
+
231
+ obs, _ = env.reset(seed=args.seed + ep, options=reset_options)
232
+ client.reset()
233
+ plan: collections.deque = collections.deque()
234
+
235
+ base_path = video_out_path / f"ep{ep:03d}.mp4"
236
+ wrist_path = video_out_path / f"ep{ep:03d}_wrist.mp4"
237
+ writer = imageio.get_writer(base_path, fps=30)
238
+ wrist_writer = imageio.get_writer(wrist_path, fps=30) if args.save_wrist_video else None
239
+
240
+ done = False
241
+ ep_success = False
242
+ try:
243
+ while not done:
244
+ rgb_b = _to_numpy_hwc(obs["sensor_data"]["base_camera"]["rgb"])
245
+ rgb_h = _to_numpy_hwc(obs["sensor_data"]["hand_camera"]["rgb"])
246
+ writer.append_data(rgb_b)
247
+ if wrist_writer is not None:
248
+ wrist_writer.append_data(rgb_h)
249
+
250
+ if not plan:
251
+ st = _state8(env)
252
+ chunk = _query_groot(client, rgb_b, rgb_h, st, prompt)
253
+ n = min(args.replan_steps, len(chunk))
254
+ if n < 1:
255
+ logging.warning("Empty action chunk from policy")
256
+ break
257
+ plan.extend(chunk[:n])
258
+
259
+ action = np.asarray(plan.popleft(), dtype=np.float32).ravel()[:8]
260
+ obs, _reward, term, trunc, info = env.step(action)
261
+ if _success(info):
262
+ ep_success = True
263
+ done = bool(term or trunc) or ep_success
264
+ finally:
265
+ try:
266
+ writer.close()
267
+ finally:
268
+ if wrist_writer is not None:
269
+ wrist_writer.close()
270
+
271
+ if ep_success:
272
+ successes += 1
273
+ logging.info("Episode %d success=%s no_distractor=%s", ep, ep_success, no_distractor)
274
+
275
+ env.close()
276
+ rate = successes / max(args.num_episodes, 1)
277
+ logging.info("Success rate: %d / %d (%.1f%%)", successes, args.num_episodes, 100.0 * rate)
278
+
279
+
280
+ def main() -> None:
281
+ eval_full_factor(tyro.cli(Args))
282
+
283
+
284
+ if __name__ == "__main__":
285
+ main()
code/groot_grid_eval.py ADDED
@@ -0,0 +1,433 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ GR00T PAIRWISE-GRID eval (HARD口径) — mirrors pi0_grid_eval.py exactly, with
4
+ the policy boundary swapped from openpi-websocket to GR00T zmq (GrootClient).
5
+ Same HARD color_size / color_spatial cell construction; same env reset
6
+ options; same per-cell scoring & results-txt format; same 3-seed protocol.
7
+ """
8
+ from __future__ import annotations
9
+
10
+ import argparse
11
+ import os
12
+ import pathlib
13
+ import random
14
+ import sys
15
+
16
+ import numpy as np
17
+
18
+ MGEN_ROOT = os.environ.get("MGEN_ROOT", "/workspace/Maniskill_gen_new")
19
+ SIM_ROOT = os.environ.get("SIM_ROOT", "/workspace/eval_simulation/simulation")
20
+ HARN_DIR = pathlib.Path(__file__).resolve().parent
21
+ for _p in (str(HARN_DIR), SIM_ROOT, MGEN_ROOT):
22
+ if _p not in sys.path:
23
+ sys.path.insert(0, _p)
24
+
25
+ import gymnasium as gym # noqa: E402
26
+ import mani_skill.envs # noqa: E402,F401 (registers VerbObjectColor-v1)
27
+ from groot_client import GrootClient # noqa: E402
28
+ # Repo's own canonical env-id/color resolver (handles legacy routing exactly).
29
+ from scripts.run_verb_color_shape_motion_planning import get_env_id_and_color # noqa: E402
30
+
31
+ COLORS = ("red", "yellow", "blue", "orange", "green", "black")
32
+ SIZES = ("small", "large", "smaller", "larger", "smallest", "largest")
33
+ SPATIALS = ("left", "right", "middle", "front", "behind")
34
+ SHAPES = ("cube", "sphere", "cup", "car", "pyramid", "star")
35
+ VERB_POOL = ("lift", "grasp", "push")
36
+ VERB_CAP = {"lift": "Lift", "grasp": "Grasp", "push": "Push",
37
+ "pull": "Pull", "rotate": "Rotate", "slide": "Slide"}
38
+ SPATIAL_PHRASE = {"left": "on the left", "right": "on the right",
39
+ "middle": "in the middle", "front": "in front",
40
+ "behind": "at the back"}
41
+ SPATIAL_ANCHOR = {"left": (-0.10, 0.0), "right": (0.10, 0.0),
42
+ "middle": (0.0, 0.0), "front": (0.0, 0.10),
43
+ "behind": (0.0, -0.10)}
44
+
45
+
46
+ def _spatial_xy(spatial, rng):
47
+ ax, ay = SPATIAL_ANCHOR[spatial]
48
+ return [ax + rng.uniform(-0.012, 0.012), ay + rng.uniform(-0.012, 0.012)]
49
+
50
+
51
+ def _to_hwc_uint8(x):
52
+ import torch
53
+ if torch.is_tensor(x):
54
+ x = x.detach().float().cpu().numpy()
55
+ x = np.asarray(x)
56
+ if x.ndim == 4:
57
+ x = x[0]
58
+ if x.ndim == 3 and x.shape[0] in (1, 3) and x.shape[-1] != 3:
59
+ x = np.transpose(x, (1, 2, 0))
60
+ if np.issubdtype(x.dtype, np.floating) and x.max() <= 1.0 + 1e-6:
61
+ x = (np.clip(x, 0, 1) * 255).astype(np.uint8)
62
+ else:
63
+ x = x.astype(np.uint8)
64
+ return np.ascontiguousarray(x)
65
+
66
+
67
+ def _state8(env):
68
+ import torch
69
+ q = env.unwrapped.agent.robot.get_qpos()
70
+ if torch.is_tensor(q):
71
+ q = q[0].detach().cpu().numpy()
72
+ q = np.asarray(q, dtype=np.float32).ravel()
73
+ out = np.zeros(8, dtype=np.float32)
74
+ out[: min(8, q.size)] = q[: min(8, q.size)]
75
+ return out
76
+
77
+
78
+ def _success(info):
79
+ import torch
80
+ s = info.get("success", False)
81
+ if torch.is_tensor(s):
82
+ return bool(s.squeeze().item())
83
+ return bool(np.asarray(s).squeeze())
84
+
85
+
86
+ # HARD口径 — same as pi0_grid_eval.HARD_SIZE
87
+ HARD_SIZE = {
88
+ "small": (0.72, [1.20], 1),
89
+ "large": (1.34, [0.80], 1),
90
+ "smaller": (0.82, [1.08], 1),
91
+ "larger": (1.18, [0.92], 1),
92
+ "smallest": (0.78, [1.00, 1.24], 2),
93
+ "largest": (1.26, [1.00, 0.80], 2),
94
+ }
95
+
96
+ # EASY口径 — 1 distractor only, ~2x contrast, drops smallest/largest double-distractor
97
+ EASY_SIZE = {
98
+ "small": (0.65, [1.35], 1),
99
+ "large": (1.40, [0.65], 1),
100
+ "smaller": (0.70, [1.30], 1),
101
+ "larger": (1.30, [0.70], 1),
102
+ "smallest": (0.65, [1.40], 1),
103
+ "largest": (1.40, [0.65], 1),
104
+ }
105
+
106
+
107
+ def build_color_size_cell(color, size_label, *, distractor_max_arg, task_difficulty, mode="hard"):
108
+ verb, shape = "lift", "cube"
109
+ table = HARD_SIZE if mode == "hard" else EASY_SIZE
110
+ t_scale, d_scales, n_d = table[size_label]
111
+ env_id, color_id, extra = get_env_id_and_color(
112
+ verb, color, shape, distractor_max=max(int(distractor_max_arg), n_d),
113
+ task_difficulty=task_difficulty)
114
+ make_kw = dict(obs_mode="rgb", control_mode="pd_joint_pos",
115
+ render_mode="rgb_array")
116
+ if env_id == "VerbObjectColor-v1":
117
+ make_kw.update(extra)
118
+ make_kw["object_size_jiggle"] = 0.0
119
+ make_kw["distractor_specs"] = [("cube", int(color_id))] * n_d + \
120
+ [None] * (3 - n_d)
121
+ else:
122
+ make_kw["object_color_id"] = color_id
123
+ reset_opts = {"num_distractors": int(n_d),
124
+ "target_size_scale": float(t_scale),
125
+ "distractor_size_scales": [float(x) for x in d_scales]}
126
+ instruction = f"Lift the {size_label} {color} cube."
127
+ return env_id, make_kw, reset_opts, instruction
128
+
129
+
130
+ def build_color_spatial_cell(color, spatial, *, rng, distractor_max_arg, task_difficulty):
131
+ verb = rng.choice(VERB_POOL)
132
+ shape = "cube"
133
+ others = [s for s in SPATIALS if s != spatial]
134
+ d_spatial = rng.choice(others)
135
+ env_id, color_id, extra = get_env_id_and_color(
136
+ verb, color, shape, distractor_max=1, task_difficulty=task_difficulty)
137
+ make_kw = dict(obs_mode="rgb", control_mode="pd_joint_pos",
138
+ render_mode="rgb_array")
139
+ if env_id == "VerbObjectColor-v1":
140
+ make_kw.update(extra)
141
+ make_kw["object_size_jiggle"] = 0.0
142
+ make_kw["distractor_specs"] = [("cube", int(color_id)), None, None]
143
+ else:
144
+ make_kw["object_color_id"] = color_id
145
+ reset_opts = {"num_distractors": 1, "target_size_scale": 1.0,
146
+ "obj_xy": _spatial_xy(spatial, rng),
147
+ "distractor_xy": [_spatial_xy(d_spatial, rng)],
148
+ "distractor_size_scales": [1.0]}
149
+ instruction = f"{VERB_CAP[verb]} the {color} cube {SPATIAL_PHRASE[spatial]}."
150
+ return env_id, make_kw, reset_opts, instruction
151
+
152
+
153
+ def build_verb_spatial_cell(verb, spatial, *, rng, distractor_max_arg, task_difficulty):
154
+ """HARD: 2 same-color same-shape(cube) cubes at DIFFERENT spatial anchors.
155
+ Color sampled per-cell (third factor); instruction uses verb + spatial."""
156
+ color = rng.choice(COLORS)
157
+ shape = "cube"
158
+ others = [s for s in SPATIALS if s != spatial]
159
+ d_spatial = rng.choice(others)
160
+ env_id, color_id, extra = get_env_id_and_color(
161
+ verb, color, shape, distractor_max=1, task_difficulty=task_difficulty)
162
+ make_kw = dict(obs_mode="rgb", control_mode="pd_joint_pos",
163
+ render_mode="rgb_array")
164
+ if env_id == "VerbObjectColor-v1":
165
+ make_kw.update(extra)
166
+ make_kw["object_size_jiggle"] = 0.0
167
+ make_kw["distractor_specs"] = [("cube", int(color_id)), None, None]
168
+ else:
169
+ make_kw["object_color_id"] = color_id
170
+ reset_opts = {"num_distractors": 1, "target_size_scale": 1.0,
171
+ "obj_xy": _spatial_xy(spatial, rng),
172
+ "distractor_xy": [_spatial_xy(d_spatial, rng)],
173
+ "distractor_size_scales": [1.0]}
174
+ instruction = f"{VERB_CAP[verb]} the cube {SPATIAL_PHRASE[spatial]}."
175
+ return env_id, make_kw, reset_opts, instruction
176
+
177
+
178
+ def build_spatial_object_cell(spatial, shape, *, rng, distractor_max_arg, task_difficulty):
179
+ """HARD: target shape at spatial; distractor = DIFFERENT shape, same color,
180
+ at a DIFFERENT spatial. Instruction uses shape + spatial phrase."""
181
+ color = rng.choice(COLORS)
182
+ verb = rng.choice(VERB_POOL)
183
+ d_shape = rng.choice([s for s in SHAPES if s != shape])
184
+ d_spatial = rng.choice([s for s in SPATIALS if s != spatial])
185
+ env_id, color_id, extra = get_env_id_and_color(
186
+ verb, color, shape, distractor_max=1, task_difficulty=task_difficulty)
187
+ make_kw = dict(obs_mode="rgb", control_mode="pd_joint_pos",
188
+ render_mode="rgb_array")
189
+ if env_id == "VerbObjectColor-v1":
190
+ make_kw.update(extra)
191
+ make_kw["object_size_jiggle"] = 0.0
192
+ make_kw["distractor_specs"] = [(d_shape, int(color_id)), None, None]
193
+ else:
194
+ make_kw["object_color_id"] = color_id
195
+ reset_opts = {"num_distractors": 1, "target_size_scale": 1.0,
196
+ "obj_xy": _spatial_xy(spatial, rng),
197
+ "distractor_xy": [_spatial_xy(d_spatial, rng)],
198
+ "distractor_size_scales": [1.0]}
199
+ instruction = f"{VERB_CAP[verb]} the {shape} {SPATIAL_PHRASE[spatial]}."
200
+ return env_id, make_kw, reset_opts, instruction
201
+
202
+
203
+ def build_verb_size_cell(verb, size_label, *, rng, distractor_max_arg, task_difficulty):
204
+ """HARD: target cube of size; distractor(s) = same-color cube differing
205
+ ONLY in size. Instruction uses verb + size word."""
206
+ color = rng.choice(COLORS)
207
+ shape = "cube"
208
+ t_scale, d_scales, n_d = HARD_SIZE[size_label]
209
+ env_id, color_id, extra = get_env_id_and_color(
210
+ verb, color, shape, distractor_max=max(int(distractor_max_arg), n_d),
211
+ task_difficulty=task_difficulty)
212
+ make_kw = dict(obs_mode="rgb", control_mode="pd_joint_pos",
213
+ render_mode="rgb_array")
214
+ if env_id == "VerbObjectColor-v1":
215
+ make_kw.update(extra)
216
+ make_kw["object_size_jiggle"] = 0.0
217
+ make_kw["distractor_specs"] = [("cube", int(color_id))] * n_d + \
218
+ [None] * (3 - n_d)
219
+ else:
220
+ make_kw["object_color_id"] = color_id
221
+ reset_opts = {"num_distractors": int(n_d),
222
+ "target_size_scale": float(t_scale),
223
+ "distractor_size_scales": [float(x) for x in d_scales]}
224
+ instruction = f"{VERB_CAP[verb]} the {size_label} cube."
225
+ return env_id, make_kw, reset_opts, instruction
226
+
227
+
228
+ def build_spatial_size_cell(spatial, size_label, *, rng, distractor_max_arg, task_difficulty):
229
+ """HARD: 2 same-color same-shape(cube) cubes at DIFFERENT spatial AND
230
+ DIFFERENT size. Instruction uses both spatial phrase + size word."""
231
+ color = rng.choice(COLORS)
232
+ verb = rng.choice(VERB_POOL)
233
+ shape = "cube"
234
+ other_spatials = [s for s in SPATIALS if s != spatial]
235
+ d_spatial = rng.choice(other_spatials)
236
+ t_scale, _, _ = HARD_SIZE[size_label]
237
+ # distractor: opposite-extreme scale
238
+ if size_label in ("small", "smaller", "smallest"):
239
+ d_scale = 1.25
240
+ else:
241
+ d_scale = 0.75
242
+ env_id, color_id, extra = get_env_id_and_color(
243
+ verb, color, shape, distractor_max=1, task_difficulty=task_difficulty)
244
+ make_kw = dict(obs_mode="rgb", control_mode="pd_joint_pos",
245
+ render_mode="rgb_array")
246
+ if env_id == "VerbObjectColor-v1":
247
+ make_kw.update(extra)
248
+ make_kw["object_size_jiggle"] = 0.0
249
+ make_kw["distractor_specs"] = [("cube", int(color_id)), None, None]
250
+ else:
251
+ make_kw["object_color_id"] = color_id
252
+ reset_opts = {"num_distractors": 1,
253
+ "target_size_scale": float(t_scale),
254
+ "obj_xy": _spatial_xy(spatial, rng),
255
+ "distractor_xy": [_spatial_xy(d_spatial, rng)],
256
+ "distractor_size_scales": [float(d_scale)]}
257
+ instruction = f"{VERB_CAP[verb]} the {size_label} cube {SPATIAL_PHRASE[spatial]}."
258
+ return env_id, make_kw, reset_opts, instruction
259
+
260
+
261
+ def _groot_action_chunk(client: GrootClient, img_base, img_wrist, state8, instruction):
262
+ """Build GR00T obs, call get_action, return (Th, 8) float32 chunk."""
263
+ obs = {
264
+ "video": {
265
+ "image": img_base[None, None, ...],
266
+ "wrist_image": img_wrist[None, None, ...],
267
+ },
268
+ "state": {
269
+ "arm": state8[:7][None, None, :].astype(np.float32),
270
+ "gripper": state8[7:8][None, None, :].astype(np.float32),
271
+ },
272
+ "language": {
273
+ "annotation.human.task_description": [[instruction]],
274
+ },
275
+ }
276
+ action, _info = client.get_action(obs)
277
+ arm = np.asarray(action["arm"], dtype=np.float32) # (1, Th, 7) or (Th, 7)
278
+ grip = np.asarray(action["gripper"], dtype=np.float32) # (1, Th, 1) or (Th, 1)
279
+ if arm.ndim == 3:
280
+ arm = arm[0]
281
+ if grip.ndim == 3:
282
+ grip = grip[0]
283
+ if grip.ndim == 1:
284
+ grip = grip[:, None]
285
+ return np.concatenate([arm, grip], axis=-1).astype(np.float32) # (Th, 8)
286
+
287
+
288
+ def run_cell(client, env_id, make_kw, reset_opts, instruction, *,
289
+ seed, sim_backend, max_steps, replan):
290
+ mk = dict(make_kw)
291
+ mk["sim_backend"] = sim_backend
292
+ mk["render_backend"] = sim_backend
293
+ env = gym.make(env_id, **mk)
294
+ obs, _ = env.reset(seed=seed, options=reset_opts)
295
+ plan = []
296
+ done = ok = False
297
+ steps = 0
298
+ try:
299
+ while not done and steps < max_steps:
300
+ b = _to_hwc_uint8(obs["sensor_data"]["base_camera"]["rgb"])
301
+ h = _to_hwc_uint8(obs["sensor_data"]["hand_camera"]["rgb"])
302
+ if not plan:
303
+ chunk = _groot_action_chunk(client, b, h, _state8(env), instruction)
304
+ n = min(replan, len(chunk))
305
+ if n < 1:
306
+ break
307
+ plan = list(chunk[:n])
308
+ act = np.asarray(plan.pop(0), dtype=np.float32).ravel()[:8]
309
+ obs, _r, term, trunc, info = env.step(act)
310
+ steps += 1
311
+ if _success(info):
312
+ ok = True
313
+ done = bool(term or trunc) or ok
314
+ finally:
315
+ env.close()
316
+ return ok
317
+
318
+
319
+ def main():
320
+ ap = argparse.ArgumentParser()
321
+ ap.add_argument("--experiment", required=True,
322
+ choices=["color_size", "color_spatial", "verb_spatial",
323
+ "spatial_size", "spatial_object", "verb_size"])
324
+ ap.add_argument("--host", default="127.0.0.1")
325
+ ap.add_argument("--port", type=int, default=5600)
326
+ ap.add_argument("--seed", type=int, default=42)
327
+ ap.add_argument("--results-txt", required=True)
328
+ ap.add_argument("--sim-backend", default="gpu")
329
+ ap.add_argument("--task-difficulty", type=float, default=1.5)
330
+ ap.add_argument("--max-episode-steps", type=int, default=300)
331
+ ap.add_argument("--replan-steps", type=int, default=5)
332
+ ap.add_argument("--distractor-max", type=int, default=2)
333
+ ap.add_argument("--max-cells", type=int, default=0)
334
+ ap.add_argument("--target-episodes", type=int, default=0)
335
+ ap.add_argument("--color-size-mode", choices=["hard", "easy"], default="hard")
336
+ a = ap.parse_args()
337
+
338
+ if a.experiment == "color_size":
339
+ f1vals, f1name = COLORS, "color"
340
+ f2vals, f2name = SIZES, "size"
341
+ meta = f"fixed verb=lift shape=cube {a.color_size_mode.upper()} same-color cube distractor"
342
+ elif a.experiment == "color_spatial":
343
+ f1vals, f1name = COLORS, "color"
344
+ f2vals, f2name = SPATIALS, "spatial"
345
+ meta = "fixed shape=cube; verb~{lift,grasp,push}; HARD same-color cube distractor"
346
+ elif a.experiment == "verb_spatial":
347
+ f1vals, f1name = VERB_POOL, "verb"
348
+ f2vals, f2name = SPATIALS, "spatial"
349
+ meta = "fixed shape=cube; color~{COLORS}; HARD same-color cube distractor at different spatial"
350
+ elif a.experiment == "spatial_size":
351
+ f1vals, f1name = SPATIALS, "spatial"
352
+ f2vals, f2name = SIZES, "size"
353
+ meta = "fixed shape=cube; color&verb~random; HARD same-color cube distractor at different spatial & different size"
354
+ elif a.experiment == "spatial_object":
355
+ f1vals, f1name = SPATIALS, "spatial"
356
+ f2vals, f2name = SHAPES, "shape"
357
+ meta = "color&verb~random; HARD same-color different-shape distractor at different spatial"
358
+ else: # verb_size
359
+ f1vals, f1name = VERB_POOL, "verb"
360
+ f2vals, f2name = SIZES, "size"
361
+ meta = "fixed shape=cube; color~random; HARD same-color cube distractor differing only in size"
362
+ cells = [(c, x) for c in f1vals for x in f2vals]
363
+ if a.max_cells > 0:
364
+ cells = cells[: a.max_cells]
365
+
366
+ client = GrootClient(a.host, a.port)
367
+ # one ping to fail fast if server isn't up
368
+ if not client.ping():
369
+ raise SystemExit(f"GR00T server not reachable at {a.host}:{a.port}")
370
+ rt = pathlib.Path(a.results_txt)
371
+ rt.parent.mkdir(parents=True, exist_ok=True)
372
+ with rt.open("w") as f:
373
+ f.write(f"# gr00t {a.experiment} grid {meta} "
374
+ f"seed={a.seed} task_difficulty={a.task_difficulty} "
375
+ f"sim={a.sim_backend} cells={len(cells)}\n")
376
+ f.write(f"idx {f1name} {f2name} success prompt\n")
377
+
378
+ import math as _m
379
+ ncells = len(cells)
380
+ reps = max(1, _m.ceil(a.target_episodes / ncells)) if a.target_episodes > 0 else 1
381
+ print(f"cells={ncells} reps/cell={reps} → {ncells*reps} episodes/seed", flush=True)
382
+
383
+ succ = tot = 0
384
+ for idx, (f1, f2) in enumerate(cells, 1):
385
+ for r in range(reps):
386
+ rng = random.Random(a.seed * 100003 + idx * 131 + r)
387
+ try:
388
+ if a.experiment == "color_size":
389
+ env_id, mk, ro, instr = build_color_size_cell(
390
+ f1, f2, distractor_max_arg=a.distractor_max,
391
+ task_difficulty=a.task_difficulty, mode=a.color_size_mode)
392
+ elif a.experiment == "color_spatial":
393
+ env_id, mk, ro, instr = build_color_spatial_cell(
394
+ f1, f2, rng=rng, distractor_max_arg=a.distractor_max,
395
+ task_difficulty=a.task_difficulty)
396
+ elif a.experiment == "verb_spatial":
397
+ env_id, mk, ro, instr = build_verb_spatial_cell(
398
+ f1, f2, rng=rng, distractor_max_arg=a.distractor_max,
399
+ task_difficulty=a.task_difficulty)
400
+ elif a.experiment == "spatial_size":
401
+ env_id, mk, ro, instr = build_spatial_size_cell(
402
+ f1, f2, rng=rng, distractor_max_arg=a.distractor_max,
403
+ task_difficulty=a.task_difficulty)
404
+ elif a.experiment == "spatial_object":
405
+ env_id, mk, ro, instr = build_spatial_object_cell(
406
+ f1, f2, rng=rng, distractor_max_arg=a.distractor_max,
407
+ task_difficulty=a.task_difficulty)
408
+ else: # verb_size
409
+ env_id, mk, ro, instr = build_verb_size_cell(
410
+ f1, f2, rng=rng, distractor_max_arg=a.distractor_max,
411
+ task_difficulty=a.task_difficulty)
412
+ ok = run_cell(client, env_id, mk, ro, instr,
413
+ seed=a.seed + idx * 1000 + r,
414
+ sim_backend=a.sim_backend,
415
+ max_steps=a.max_episode_steps, replan=a.replan_steps)
416
+ except Exception as e: # noqa: BLE001
417
+ print(f"[{idx}/{ncells} r{r}] FAIL {f1},{f2}: {e}", flush=True)
418
+ ok, instr = False, f"ERROR:{e}"
419
+ succ += int(ok)
420
+ tot += 1
421
+ with rt.open("a") as f:
422
+ f.write(f'{idx} {f1} {f2} rep{r} {int(ok)} "{instr}"\n')
423
+ print(f"[{idx}/{ncells}] {f1} {f2} {reps}reps → cum {succ}/{tot}",
424
+ flush=True)
425
+
426
+ rate = 100.0 * succ / tot if tot else 0.0
427
+ with rt.open("a") as f:
428
+ f.write(f"\noverall_success={succ}/{tot} ({rate:.1f}%)\n")
429
+ print(f"\nDone {a.experiment}: overall_success={succ}/{tot} ({rate:.1f}%)")
430
+
431
+
432
+ if __name__ == "__main__":
433
+ main()
code/groot_main.py ADDED
@@ -0,0 +1,746 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ Roll out a fine-tuned GR00T N1.7 policy on OOD pairwise conflict experiments.
4
+
5
+ This is the GR00T counterpart to genie-inference-maniskill's
6
+ ``genie_envisioner/main.py``. The environment-construction logic
7
+ (`_build_env_and_instruction`, all 10 experiment types incl. size / spatial),
8
+ the rollout loop, dual-success metrics, video saving and results-file format
9
+ are kept *verbatim* from the Genie-Envisioner version so results are directly
10
+ comparable. The only difference is the policy: instead of an in-process
11
+ MVActor we query an out-of-process GR00T inference server
12
+ (`gr00t/eval/run_gr00t_server.py`) over zmq, which keeps GR00T's heavy
13
+ dependency set isolated from ManiSkill's.
14
+
15
+ Supports all 10 experiment types:
16
+ verb_color | verb_object | color_object
17
+ verb_size | verb_spatial
18
+ size_object | color_size | color_spatial | spatial_size | spatial_object
19
+
20
+ Batch mode (used by run_ood_groot_inference.sh): a single process, GR00T server
21
+ loaded once, all jobs from a JSON file executed sequentially.
22
+ """
23
+ from __future__ import annotations
24
+
25
+ import collections
26
+ import dataclasses
27
+ import datetime as _dt
28
+ import logging
29
+ import os
30
+ import pathlib
31
+ import sys
32
+
33
+ import gymnasium as gym
34
+ import numpy as np
35
+ import tqdm
36
+ import tyro
37
+
38
+ # ── repo roots ─────────────────────────────────────────────────────────────────
39
+ # maniskill_conflict provides both the `mani_skill` package (pip-installed) and
40
+ # the top-level `collection_strategy` package (NOT installed; needs sys.path).
41
+ _MANISKILL_CONFLICT_ROOT = pathlib.Path(
42
+ os.environ.get(
43
+ "MANISKILL_CONFLICT_ROOT",
44
+ "/workspace/groot_eval/genie_repo/maniskill_conflict",
45
+ )
46
+ ).resolve()
47
+
48
+ # Same meta_path redirect trick as openpi / genie (harmless if no such finder).
49
+ for _f in sys.meta_path:
50
+ _fmod = sys.modules.get(getattr(type(_f), "__module__", ""), None)
51
+ if _fmod is not None and "mani_skill" in getattr(_fmod, "MAPPING", {}):
52
+ _fmod.MAPPING["mani_skill"] = str(_MANISKILL_CONFLICT_ROOT / "mani_skill")
53
+ break
54
+
55
+ if _MANISKILL_CONFLICT_ROOT.exists():
56
+ _s = str(_MANISKILL_CONFLICT_ROOT)
57
+ if _s in sys.path:
58
+ sys.path.remove(_s)
59
+ sys.path.insert(0, _s)
60
+
61
+ # groot_client.py lives next to this file
62
+ sys.path.insert(0, str(pathlib.Path(__file__).resolve().parent))
63
+
64
+ import mani_skill.envs # noqa: F401 — registers VerbObjectColor-v1
65
+
66
+ from collection_strategy.lib.pairwise_task_language import VERB_TO_EN
67
+ from collection_strategy.lib.training_vocab import (
68
+ THIRD_COLORS_FOR_VERB_OBJECT,
69
+ THIRD_OBJECTS_FOR_VERB_COLOR,
70
+ THIRD_VERBS_FOR_COLOR_OBJECT,
71
+ TRAINING_COLORS,
72
+ TRAINING_SHAPES,
73
+ TRAINING_VERBS,
74
+ )
75
+ from groot_client import GrootClient
76
+
77
+ COLOR_TO_ID = {c: i for i, c in enumerate(TRAINING_COLORS)}
78
+
79
+ # ── size / spatial vocabularies (verbatim from genie main.py) ──────────────────
80
+ SIZES: tuple[str, ...] = ("small", "large", "smaller", "larger", "smallest", "largest")
81
+ SIZE_SCALES: dict[str, float] = {
82
+ "small": 0.72, "large": 1.34,
83
+ "smaller": 0.82, "larger": 1.18,
84
+ "smallest": 0.78, "largest": 1.26,
85
+ }
86
+ SPATIALS: tuple[str, ...] = ("left", "right", "middle", "front", "behind")
87
+ SPATIAL_ANCHORS: dict[str, tuple[float, float]] = {
88
+ "left": (-0.10, 0.00), "right": (0.10, 0.00),
89
+ "middle": (0.00, 0.00), "front": (0.00, 0.10), "behind": (0.00, -0.10),
90
+ }
91
+ SPATIAL_TO_PHRASE: dict[str, str] = {
92
+ "left": "on the left", "right": "on the right",
93
+ "middle": "in the middle", "front": "in front", "behind": "at the back",
94
+ }
95
+ _VERB_CAPS: dict[str, str] = {
96
+ "lift": "Lift", "grasp": "Grasp", "push": "Push",
97
+ "pull": "Pull", "rotate": "Rotate", "slide": "Slide",
98
+ }
99
+
100
+
101
+ # ──────────────────────────────────────────────────────────────────────────────
102
+ # Args
103
+ # ──────────────────────────────────────────────────────────────────────────────
104
+
105
+ @dataclasses.dataclass
106
+ class Args:
107
+ # ── GR00T inference server ──
108
+ host: str = "127.0.0.1"
109
+ port: int = 5555
110
+ replan_steps: int = 5
111
+ """Execute this many env steps before querying the model again."""
112
+
113
+ # ── OOD pair spec ──
114
+ experiment: str = "verb_color"
115
+ """verb_color | verb_object | color_object | verb_size | verb_spatial |
116
+ size_object | color_size | color_spatial | spatial_size | spatial_object."""
117
+ pair_i: int = 0
118
+ pair_j: int = 1
119
+ run_type: str = "verb"
120
+ third_seed: int = 0
121
+ third_indices: str = "0,1"
122
+ """Comma-separated indices into THIRD_* list (default '0,1' matches conflict training)."""
123
+
124
+ # ── Episode settings ──
125
+ num_episodes: int = 20
126
+ max_episode_steps: int = 300
127
+ sim_backend: str = "gpu"
128
+ seed: int = 0
129
+
130
+ # ── Output ──
131
+ experiment_root: str = "data/conflict_groot/experiments"
132
+ experiment_name: str = ""
133
+ save_wrist_video: bool = True
134
+
135
+ # ── Batch mode (server loaded once, all runs executed in-process) ──
136
+ batch_jobs_file: str = ""
137
+ batch_results_txt: str = ""
138
+ batch_skip_to: int = 0
139
+
140
+
141
+ # ──────────────────────────────────────────────────────────────────────────────
142
+ # Helpers (verbatim from genie main.py)
143
+ # ──────────────────────────────────────────────────────────────────────────────
144
+
145
+ def _to_hwc_uint8(x) -> np.ndarray:
146
+ try:
147
+ import torch
148
+ if torch.is_tensor(x):
149
+ x = x.detach().float().cpu().numpy()
150
+ except Exception:
151
+ pass
152
+ x = np.asarray(x)
153
+ if x.ndim == 4:
154
+ x = x[0]
155
+ if x.ndim == 3 and x.shape[0] in (1, 3) and x.shape[-1] != 3:
156
+ x = np.transpose(x, (1, 2, 0))
157
+ if np.issubdtype(x.dtype, np.floating) and x.max() <= 1.0 + 1e-6:
158
+ x = (np.clip(x, 0.0, 1.0) * 255).astype(np.uint8)
159
+ else:
160
+ x = x.astype(np.uint8)
161
+ return np.ascontiguousarray(x)
162
+
163
+
164
+ def _state8(env: gym.Env) -> np.ndarray:
165
+ qpos = env.unwrapped.agent.robot.get_qpos()
166
+ try:
167
+ import torch
168
+ if torch.is_tensor(qpos):
169
+ qpos = qpos[0].detach().cpu().numpy()
170
+ except Exception:
171
+ pass
172
+ qpos = np.asarray(qpos, dtype=np.float32).ravel()
173
+ out = np.zeros(8, dtype=np.float32)
174
+ out[: min(8, len(qpos))] = qpos[: min(8, len(qpos))]
175
+ return out
176
+
177
+
178
+ def _bool_info(info: dict, key: str) -> bool:
179
+ v = info.get(key, False)
180
+ try:
181
+ import torch
182
+ if torch.is_tensor(v):
183
+ return bool(v.squeeze().item())
184
+ except Exception:
185
+ pass
186
+ return bool(np.asarray(v).squeeze())
187
+
188
+
189
+ def _parse_third_pool(full: tuple, spec: str) -> tuple:
190
+ idxs = [int(x.strip()) for x in spec.split(",") if x.strip()]
191
+ return tuple(full[i] for i in idxs)
192
+
193
+
194
+ # ──────────────────────────────────────────────────────────────────────────────
195
+ # Environment factory (VERBATIM from genie_envisioner/main.py)
196
+ # ──────────────────────────────────────────────────────────────────────────────
197
+
198
+ def _build_env_and_instruction(args: Args) -> tuple[gym.Env, str]:
199
+ """Create VerbObjectColor-v1 for the given OOD pair. Returns (env, instruction)."""
200
+ import random as _random
201
+ rng = _random.Random(args.third_seed)
202
+
203
+ i, j = args.pair_i, args.pair_j
204
+ assert i != j, f"pair_i must differ from pair_j, got ({i}, {j})"
205
+
206
+ verb_i = TRAINING_VERBS[i]
207
+ verb_j = TRAINING_VERBS[j]
208
+
209
+ _shape_pool = _parse_third_pool(THIRD_OBJECTS_FOR_VERB_COLOR, args.third_indices)
210
+ _color_pool = _parse_third_pool(THIRD_COLORS_FOR_VERB_OBJECT, args.third_indices)
211
+ _verb_pool = _parse_third_pool(THIRD_VERBS_FOR_COLOR_OBJECT, args.third_indices)
212
+
213
+ make_kw: dict = dict(
214
+ obs_mode="rgb",
215
+ control_mode="pd_joint_pos",
216
+ sim_backend=args.sim_backend,
217
+ render_backend=args.sim_backend,
218
+ max_episode_steps=args.max_episode_steps,
219
+ )
220
+
221
+ if args.experiment == "verb_color":
222
+ shape = rng.choice(_shape_pool)
223
+ color_i = TRAINING_COLORS[i]; color_j = TRAINING_COLORS[j]
224
+ instruction = VERB_TO_EN[verb_i].format(color=color_j, shape=shape)
225
+ if args.run_type == "verb":
226
+ make_kw.update(
227
+ verb=verb_i, object_shape=shape, object_color_id=COLOR_TO_ID[color_i],
228
+ distractor_max=3, distractor_specs=[(shape, COLOR_TO_ID[color_j]), None, None],
229
+ )
230
+ elif args.run_type == "color":
231
+ make_kw.update(
232
+ verb=verb_j, object_shape=shape, object_color_id=COLOR_TO_ID[color_j],
233
+ distractor_max=3, distractor_specs=[(shape, COLOR_TO_ID[color_i]), None, None],
234
+ )
235
+ else:
236
+ raise ValueError(f"run_type must be 'verb' or 'color' for verb_color, got {args.run_type!r}")
237
+
238
+ elif args.experiment == "verb_object":
239
+ color = rng.choice(_color_pool)
240
+ shape_i = TRAINING_SHAPES[i]; shape_j = TRAINING_SHAPES[j]
241
+ instruction = VERB_TO_EN[verb_i].format(color=color, shape=shape_j)
242
+ if args.run_type == "verb":
243
+ make_kw.update(
244
+ verb=verb_i, object_shape=shape_i, object_color_id=COLOR_TO_ID[color],
245
+ distractor_max=3, distractor_specs=[(shape_j, COLOR_TO_ID[color]), None, None],
246
+ )
247
+ elif args.run_type == "shape":
248
+ make_kw.update(
249
+ verb=verb_j, object_shape=shape_j, object_color_id=COLOR_TO_ID[color],
250
+ distractor_max=3, distractor_specs=[(shape_i, COLOR_TO_ID[color]), None, None],
251
+ )
252
+ else:
253
+ raise ValueError(f"run_type must be 'verb' or 'shape' for verb_object, got {args.run_type!r}")
254
+
255
+ elif args.experiment == "color_object":
256
+ third_verb = rng.choice(_verb_pool)
257
+ color_i, shape_i = TRAINING_COLORS[i], TRAINING_SHAPES[i]
258
+ color_j, shape_j = TRAINING_COLORS[j], TRAINING_SHAPES[j]
259
+ instruction = VERB_TO_EN[third_verb].format(color=color_i, shape=shape_j)
260
+ if args.run_type == "color":
261
+ make_kw.update(
262
+ verb=third_verb, object_shape=shape_i, object_color_id=COLOR_TO_ID[color_i],
263
+ distractor_max=3, distractor_specs=[(shape_j, COLOR_TO_ID[color_j]), None, None],
264
+ )
265
+ elif args.run_type == "shape":
266
+ make_kw.update(
267
+ verb=third_verb, object_shape=shape_j, object_color_id=COLOR_TO_ID[color_j],
268
+ distractor_max=3, distractor_specs=[(shape_i, COLOR_TO_ID[color_i]), None, None],
269
+ )
270
+ else:
271
+ raise ValueError(f"run_type must be 'color' or 'shape' for color_object, got {args.run_type!r}")
272
+
273
+ elif args.experiment == "verb_size":
274
+ size_i = SIZES[i]; size_j = SIZES[j]
275
+ scale_i = SIZE_SCALES[size_i]; scale_j = SIZE_SCALES[size_j]
276
+ _superlative = (i // 2 == 2)
277
+ third_shape = rng.choice(_shape_pool)
278
+ instruction = f"{_VERB_CAPS[verb_i]} the {size_j} {third_shape}."
279
+ if args.run_type == "verb":
280
+ make_kw.update(
281
+ verb=verb_i, object_shape=third_shape, object_color_id=0,
282
+ target_size_scale=scale_i,
283
+ distractor_specs=[(third_shape, 0), (third_shape, 0) if _superlative else None, None],
284
+ distractor_size_scales=[scale_j, 1.00] if _superlative else [scale_j],
285
+ distractor_max=2 if _superlative else 1, object_size_jiggle=0.0,
286
+ )
287
+ elif args.run_type == "size":
288
+ make_kw.update(
289
+ verb=verb_j, object_shape=third_shape, object_color_id=0,
290
+ target_size_scale=scale_j,
291
+ distractor_specs=[(third_shape, 0), (third_shape, 0) if _superlative else None, None],
292
+ distractor_size_scales=[scale_i, 1.00] if _superlative else [scale_i],
293
+ distractor_max=2 if _superlative else 1, object_size_jiggle=0.0,
294
+ )
295
+ else:
296
+ raise ValueError(f"run_type must be 'verb' or 'size' for verb_size, got {args.run_type!r}")
297
+
298
+ elif args.experiment == "verb_spatial":
299
+ spatial_i = SPATIALS[i]; spatial_j = SPATIALS[j]
300
+ third_shape = rng.choice(_shape_pool)
301
+ instruction = f"{_VERB_CAPS[verb_i]} the {third_shape} {SPATIAL_TO_PHRASE[spatial_j]}."
302
+ if args.run_type == "verb":
303
+ make_kw.update(
304
+ verb=verb_i, object_shape=third_shape, object_color_id=0,
305
+ target_size_scale=1.0,
306
+ distractor_specs=[(third_shape, 0), None, None],
307
+ distractor_max=1, object_size_jiggle=0.0,
308
+ )
309
+ elif args.run_type == "spatial":
310
+ make_kw.update(
311
+ verb=verb_j, object_shape=third_shape, object_color_id=0,
312
+ target_size_scale=1.0,
313
+ distractor_specs=[(third_shape, 0), None, None],
314
+ distractor_max=1, object_size_jiggle=0.0,
315
+ )
316
+ else:
317
+ raise ValueError(f"run_type must be 'verb' or 'spatial' for verb_spatial, got {args.run_type!r}")
318
+
319
+ elif args.experiment == "size_object":
320
+ size_i = SIZES[i]; size_j = SIZES[j]
321
+ shape_i = TRAINING_SHAPES[i]; shape_j = TRAINING_SHAPES[j]
322
+ _superlative = (i // 2 == 2)
323
+ third_verb = rng.choice(_verb_pool)
324
+ instruction = f"{_VERB_CAPS[third_verb]} the {size_i} {shape_j}."
325
+ if args.run_type == "size":
326
+ make_kw.update(
327
+ verb=third_verb, object_shape=shape_i, object_color_id=0,
328
+ target_size_scale=SIZE_SCALES[size_i],
329
+ distractor_specs=[(shape_j, 0), (shape_i, 0) if _superlative else None, None],
330
+ distractor_size_scales=[SIZE_SCALES[size_j], 1.00] if _superlative else [SIZE_SCALES[size_j]],
331
+ distractor_max=2 if _superlative else 1, object_size_jiggle=0.0,
332
+ )
333
+ elif args.run_type == "shape":
334
+ make_kw.update(
335
+ verb=third_verb, object_shape=shape_j, object_color_id=0,
336
+ target_size_scale=SIZE_SCALES[size_j],
337
+ distractor_specs=[(shape_i, 0), (shape_i, 0) if _superlative else None, None],
338
+ distractor_size_scales=[SIZE_SCALES[size_i], 1.00] if _superlative else [SIZE_SCALES[size_i]],
339
+ distractor_max=2 if _superlative else 1, object_size_jiggle=0.0,
340
+ )
341
+ else:
342
+ raise ValueError(f"run_type must be 'size' or 'shape' for size_object, got {args.run_type!r}")
343
+
344
+ elif args.experiment == "color_size":
345
+ color_i = TRAINING_COLORS[i]; color_j = TRAINING_COLORS[j]
346
+ size_i = SIZES[i]; size_j = SIZES[j]
347
+ _superlative = (i // 2 == 2)
348
+ third_verb = rng.choice(_verb_pool)
349
+ if _superlative:
350
+ _neutral_color_pool = [c for c in TRAINING_COLORS if c not in (color_i, color_j)]
351
+ _neutral_color = rng.choice(_neutral_color_pool)
352
+ instruction = f"{_VERB_CAPS[third_verb]} the {color_i} {size_j} cube."
353
+ if args.run_type == "color":
354
+ make_kw.update(
355
+ verb=third_verb, object_shape="cube", object_color_id=COLOR_TO_ID[color_i],
356
+ target_size_scale=SIZE_SCALES[size_i],
357
+ distractor_specs=[("cube", COLOR_TO_ID[color_j]),
358
+ ("cube", COLOR_TO_ID[_neutral_color]) if _superlative else None, None],
359
+ distractor_size_scales=[SIZE_SCALES[size_j], 1.00] if _superlative else [SIZE_SCALES[size_j]],
360
+ distractor_max=2 if _superlative else 1, object_size_jiggle=0.0,
361
+ )
362
+ elif args.run_type == "size":
363
+ make_kw.update(
364
+ verb=third_verb, object_shape="cube", object_color_id=COLOR_TO_ID[color_j],
365
+ target_size_scale=SIZE_SCALES[size_j],
366
+ distractor_specs=[("cube", COLOR_TO_ID[color_i]),
367
+ ("cube", COLOR_TO_ID[_neutral_color]) if _superlative else None, None],
368
+ distractor_size_scales=[SIZE_SCALES[size_i], 1.00] if _superlative else [SIZE_SCALES[size_i]],
369
+ distractor_max=2 if _superlative else 1, object_size_jiggle=0.0,
370
+ )
371
+ else:
372
+ raise ValueError(f"run_type must be 'color' or 'size' for color_size, got {args.run_type!r}")
373
+
374
+ elif args.experiment == "color_spatial":
375
+ color_i = TRAINING_COLORS[i]; color_j = TRAINING_COLORS[j]
376
+ third_verb = rng.choice(_verb_pool)
377
+ instruction = f"{_VERB_CAPS[third_verb]} the {color_i} cube {SPATIAL_TO_PHRASE[SPATIALS[j]]}."
378
+ if args.run_type == "color":
379
+ make_kw.update(
380
+ verb=third_verb, object_shape="cube", object_color_id=COLOR_TO_ID[color_i],
381
+ target_size_scale=1.0,
382
+ distractor_specs=[("cube", COLOR_TO_ID[color_j]), None, None],
383
+ distractor_max=1, object_size_jiggle=0.0,
384
+ )
385
+ elif args.run_type == "spatial":
386
+ make_kw.update(
387
+ verb=third_verb, object_shape="cube", object_color_id=COLOR_TO_ID[color_j],
388
+ target_size_scale=1.0,
389
+ distractor_specs=[("cube", COLOR_TO_ID[color_i]), None, None],
390
+ distractor_max=1, object_size_jiggle=0.0,
391
+ )
392
+ else:
393
+ raise ValueError(f"run_type must be 'color' or 'spatial' for color_spatial, got {args.run_type!r}")
394
+
395
+ elif args.experiment == "spatial_size":
396
+ size_i = SIZES[i]; size_j = SIZES[j]
397
+ third_shape = rng.choice(_shape_pool)
398
+ instruction = f"Lift the {size_j} {third_shape} {SPATIAL_TO_PHRASE[SPATIALS[i]]}."
399
+ if args.run_type == "spatial":
400
+ make_kw.update(
401
+ verb="lift", object_shape=third_shape, object_color_id=0,
402
+ target_size_scale=SIZE_SCALES[size_i],
403
+ distractor_specs=[(third_shape, 0), None, None],
404
+ distractor_size_scales=[SIZE_SCALES[size_j]],
405
+ distractor_max=1, object_size_jiggle=0.0,
406
+ )
407
+ elif args.run_type == "size":
408
+ make_kw.update(
409
+ verb="lift", object_shape=third_shape, object_color_id=0,
410
+ target_size_scale=SIZE_SCALES[size_j],
411
+ distractor_specs=[(third_shape, 0), None, None],
412
+ distractor_size_scales=[SIZE_SCALES[size_i]],
413
+ distractor_max=1, object_size_jiggle=0.0,
414
+ )
415
+ else:
416
+ raise ValueError(f"run_type must be 'spatial' or 'size' for spatial_size, got {args.run_type!r}")
417
+
418
+ elif args.experiment == "spatial_object":
419
+ shape_i = TRAINING_SHAPES[i]; shape_j = TRAINING_SHAPES[j]
420
+ third_verb = rng.choice(_verb_pool)
421
+ instruction = f"{_VERB_CAPS[third_verb]} the {shape_j} {SPATIAL_TO_PHRASE[SPATIALS[i]]}."
422
+ if args.run_type == "spatial":
423
+ make_kw.update(
424
+ verb=third_verb, object_shape=shape_i, object_color_id=0,
425
+ target_size_scale=1.0,
426
+ distractor_specs=[(shape_j, 0), None, None],
427
+ distractor_max=1, object_size_jiggle=0.0,
428
+ )
429
+ elif args.run_type == "shape":
430
+ make_kw.update(
431
+ verb=third_verb, object_shape=shape_j, object_color_id=0,
432
+ target_size_scale=1.0,
433
+ distractor_specs=[(shape_i, 0), None, None],
434
+ distractor_max=1, object_size_jiggle=0.0,
435
+ )
436
+ else:
437
+ raise ValueError(f"run_type must be 'spatial' or 'shape' for spatial_object, got {args.run_type!r}")
438
+
439
+ else:
440
+ raise ValueError(f"Unknown experiment {args.experiment!r}")
441
+
442
+ env = gym.make("VerbObjectColor-v1", **make_kw)
443
+ return env, instruction
444
+
445
+
446
+ # ──────────────────────────────────────────────────────────────────────────────
447
+ # GR00T policy boundary
448
+ # ──────────────────────────────────────────────────────────────────────────────
449
+
450
+ def _query_groot(client: GrootClient, img_base: np.ndarray, img_wrist: np.ndarray,
451
+ state8: np.ndarray, instruction: str) -> np.ndarray:
452
+ """Build the nested GR00T observation, query the server, return an
453
+ (action_horizon, 8) float32 chunk = [7 joint-pos targets, 1 gripper]."""
454
+ obs = {
455
+ "video": {
456
+ "image": img_base[None, None, ...], # (1,1,H,W,3) uint8
457
+ "wrist_image": img_wrist[None, None, ...], # (1,1,H,W,3) uint8
458
+ },
459
+ "state": {
460
+ "arm": state8[:7][None, None, :].astype(np.float32), # (1,1,7)
461
+ "gripper": state8[7:8][None, None, :].astype(np.float32), # (1,1,1)
462
+ },
463
+ "language": {
464
+ "annotation.human.task_description": [[instruction]], # (B=1, T=1)
465
+ },
466
+ }
467
+ action, _info = client.get_action(obs)
468
+ arm = np.asarray(action["arm"], dtype=np.float32) # (1, Th, 7)
469
+ grip = np.asarray(action["gripper"], dtype=np.float32) # (1, Th, 1)
470
+ chunk = np.concatenate([arm[0], grip[0]], axis=-1) # (Th, 8)
471
+ return chunk
472
+
473
+
474
+ # ──────────────────────────────────────────────────────────────────────────────
475
+ # Batch eval (mirrors genie_envisioner/main.py :: batch_eval_conflict)
476
+ # ──────────────────────────────────────────────────────────────────────────────
477
+
478
+ def batch_eval_conflict(args: Args) -> None:
479
+ import json
480
+
481
+ logging.basicConfig(level=logging.INFO, force=True)
482
+
483
+ if not args.batch_jobs_file:
484
+ raise ValueError("--batch-jobs-file is required for batch mode")
485
+ if not args.batch_results_txt:
486
+ raise ValueError("--batch-results-txt is required for batch mode")
487
+
488
+ all_jobs = json.loads(pathlib.Path(args.batch_jobs_file).read_text())
489
+ if args.batch_skip_to > 0:
490
+ jobs = all_jobs[args.batch_skip_to:]
491
+ logging.info("Resuming from job %d (skipping first %d)",
492
+ args.batch_skip_to + 1, args.batch_skip_to)
493
+ else:
494
+ jobs = all_jobs
495
+ results_path = pathlib.Path(args.batch_results_txt)
496
+ total = len(all_jobs)
497
+ logging.info("Batch mode: %d/%d jobs remaining, experiment=%s, server=%s:%d",
498
+ len(jobs), total, args.experiment, args.host, args.port)
499
+
500
+ # ── Connect to the GR00T inference server (loaded once, reused for all jobs) ──
501
+ client = GrootClient(host=args.host, port=args.port)
502
+ for _ in range(120):
503
+ if client.ping():
504
+ break
505
+ import time
506
+ time.sleep(2.0)
507
+ else:
508
+ raise RuntimeError(f"GR00T server not reachable at {args.host}:{args.port}")
509
+ logging.info("GR00T server ready at %s:%d", args.host, args.port)
510
+
511
+ try:
512
+ import imageio.v2 as imageio
513
+ except ImportError:
514
+ import imageio # type: ignore
515
+
516
+ _run_type_to_label = {
517
+ "verb": "verb_success", "color": "color_success",
518
+ "shape": "shape_success", "size": "size_success", "spatial": "spatial_success",
519
+ }
520
+ _SPATIAL_EXPS = {"verb_spatial", "color_spatial", "spatial_size", "spatial_object"}
521
+ _FIRST_RUN_MAP = {
522
+ "verb_spatial": "verb", "color_spatial": "color",
523
+ "spatial_size": "spatial", "spatial_object": "spatial",
524
+ }
525
+ _run_type_pairs = {
526
+ "verb_color": ("verb", "color"), "verb_object": ("verb", "shape"),
527
+ "verb_size": ("verb", "size"), "verb_spatial": ("verb", "spatial"),
528
+ "color_object": ("color", "shape"), "size_object": ("size", "shape"),
529
+ "color_size": ("color", "size"), "color_spatial": ("color", "spatial"),
530
+ "spatial_size": ("spatial", "size"), "spatial_object": ("spatial", "shape"),
531
+ }
532
+ _f1_label_map = {
533
+ "verb_color": "verb_success", "verb_object": "verb_success",
534
+ "verb_size": "verb_success", "verb_spatial": "verb_success",
535
+ "color_object": "color_success", "size_object": "size_success",
536
+ "color_size": "color_success", "color_spatial": "color_success",
537
+ "spatial_size": "spatial_success", "spatial_object": "spatial_success",
538
+ }
539
+ _f2_label_map = {
540
+ "verb_color": "color_success", "verb_object": "shape_success",
541
+ "verb_size": "size_success", "verb_spatial": "spatial_success",
542
+ "color_object": "shape_success", "size_object": "shape_success",
543
+ "color_size": "size_success", "color_spatial": "spatial_success",
544
+ "spatial_size": "size_success", "spatial_object": "shape_success",
545
+ }
546
+ first_type = _run_type_pairs.get(args.experiment, ("", ""))[0]
547
+
548
+ first_ok = 0; first_total = 0
549
+ second_ok = 0; second_total = 0
550
+ if args.batch_skip_to > 0 and results_path.exists():
551
+ import re as _re
552
+ for line in results_path.read_text().splitlines():
553
+ parts = line.split()
554
+ if not parts or not parts[0].isdigit():
555
+ continue
556
+ if len(parts) >= 5:
557
+ rt = parts[3]
558
+ m = _re.match(r"(\d+)/(\d+)", parts[4])
559
+ if m:
560
+ ok, den = int(m.group(1)), int(m.group(2))
561
+ if rt == first_type:
562
+ first_ok += ok; first_total += den
563
+ else:
564
+ second_ok += ok; second_total += den
565
+
566
+ # ── Loop over jobs ───────────────────────────────────────────────────────
567
+ for job in jobs:
568
+ idx = int(job["index"])
569
+
570
+ job_args = dataclasses.replace(
571
+ args,
572
+ pair_i=int(job["pair_i"]),
573
+ pair_j=int(job["pair_j"]),
574
+ run_type=str(job["run_type"]),
575
+ third_seed=int(job["third_seed"]),
576
+ num_episodes=int(job["num_episodes"]),
577
+ seed=int(job["seed"]),
578
+ experiment_name=str(job["experiment_name"]),
579
+ )
580
+
581
+ logging.info("[%d/%d] pair=(%d,%d) run_type=%s experiment=%s",
582
+ idx, total, job_args.pair_i, job_args.pair_j,
583
+ job_args.run_type, job_args.experiment)
584
+
585
+ env, instruction = _build_env_and_instruction(job_args)
586
+ logging.info("OOD instruction: %r", instruction)
587
+
588
+ timestamp = _dt.datetime.now().strftime("%Y%m%d_%H%M%S")
589
+ run_name = (f"{job_args.experiment_name.strip()}_{timestamp}"
590
+ if job_args.experiment_name.strip()
591
+ else f"{job_args.experiment}_{job_args.pair_i}_{job_args.pair_j}_{job_args.run_type}_{timestamp}")
592
+ exp_dir = pathlib.Path(job_args.experiment_root) / run_name
593
+ video_dir = exp_dir / "video"
594
+ video_dir.mkdir(parents=True, exist_ok=True)
595
+
596
+ if job_args.experiment in _SPATIAL_EXPS:
597
+ _anchor_i = list(SPATIAL_ANCHORS[SPATIALS[job_args.pair_i]])
598
+ _anchor_j = list(SPATIAL_ANCHORS[SPATIALS[job_args.pair_j]])
599
+ if job_args.run_type == _FIRST_RUN_MAP[job_args.experiment]:
600
+ _reset_opts: dict = {"num_distractors": 1, "obj_xy": _anchor_i, "distractor_xy": [_anchor_j]}
601
+ else:
602
+ _reset_opts = {"num_distractors": 1, "obj_xy": _anchor_j, "distractor_xy": [_anchor_i]}
603
+ elif job_args.experiment in (
604
+ "color_object", "verb_object", "verb_color",
605
+ "verb_size", "size_object", "color_size",
606
+ ):
607
+ _reset_opts = {"num_distractors": 1}
608
+ else:
609
+ _reset_opts = {}
610
+
611
+ verb_successes = 0
612
+ factor2_successes = 0
613
+
614
+ for ep in tqdm.tqdm(range(job_args.num_episodes), desc=f"[{idx}/{total}]"):
615
+ obs, _ = env.reset(seed=job_args.seed + ep, options=_reset_opts)
616
+ client.reset()
617
+
618
+ action_plan: collections.deque = collections.deque()
619
+ base_writer = imageio.get_writer(str(video_dir / f"ep{ep:03d}.mp4"), fps=30)
620
+ wrist_writer = (
621
+ imageio.get_writer(str(video_dir / f"ep{ep:03d}_wrist.mp4"), fps=30)
622
+ if job_args.save_wrist_video else None
623
+ )
624
+ ep_verb_ok = False
625
+ ep_factor2_ok = False
626
+ done = False
627
+
628
+ try:
629
+ while not done:
630
+ img_base = _to_hwc_uint8(obs["sensor_data"]["base_camera"]["rgb"])
631
+ img_wrist = _to_hwc_uint8(obs["sensor_data"]["hand_camera"]["rgb"])
632
+
633
+ base_writer.append_data(img_base)
634
+ if wrist_writer is not None:
635
+ wrist_writer.append_data(img_wrist)
636
+
637
+ if not action_plan:
638
+ state = _state8(env)
639
+ chunk = _query_groot(client, img_base, img_wrist, state, instruction)
640
+ n = min(job_args.replan_steps, len(chunk))
641
+ if n < 1:
642
+ break
643
+ action_plan.extend(chunk[:n])
644
+
645
+ action = np.asarray(action_plan.popleft(), dtype=np.float32).ravel()[:8]
646
+ obs, _reward, term, trunc, info = env.step(action)
647
+
648
+ if _bool_info(info, "success_first_axis"):
649
+ ep_verb_ok = True
650
+ elif _bool_info(info, "success"):
651
+ ep_verb_ok = True
652
+ if _bool_info(info, "success_second_axis"):
653
+ ep_factor2_ok = True
654
+
655
+ done = bool(term or trunc) or (ep_verb_ok and ep_factor2_ok)
656
+
657
+ finally:
658
+ base_writer.close()
659
+ if wrist_writer is not None:
660
+ wrist_writer.close()
661
+
662
+ if ep_verb_ok:
663
+ verb_successes += 1
664
+ if ep_factor2_ok:
665
+ factor2_successes += 1
666
+
667
+ logging.info("ep=%d verb_ok=%s factor2_ok=%s", ep, ep_verb_ok, ep_factor2_ok)
668
+
669
+ env.close()
670
+ import gc
671
+ gc.collect()
672
+
673
+ n = max(job_args.num_episodes, 1)
674
+ label1 = _run_type_to_label.get(job_args.run_type, f"{job_args.run_type}_success")
675
+ print(f"Success rate ({label1}): {verb_successes} / {n} ({100.0*verb_successes/n:.1f}%)")
676
+ sys.stdout.flush()
677
+
678
+ run_name_base = job_args.experiment_name.strip() or (
679
+ f"{job_args.experiment}_{job_args.pair_i}_{job_args.pair_j}_{job_args.run_type}")
680
+ with open(results_path, "a") as f:
681
+ f.write(f"{idx} {job_args.pair_i} {job_args.pair_j} {job_args.run_type} "
682
+ f"{verb_successes}/{n} {run_name_base}\n")
683
+
684
+ summary_lines = [
685
+ f"experiment={job_args.experiment}",
686
+ f"pair=({job_args.pair_i},{job_args.pair_j})",
687
+ f"run_type={job_args.run_type}",
688
+ f"instruction={instruction!r}",
689
+ f"num_episodes={job_args.num_episodes}",
690
+ f"{label1}={verb_successes}/{n} ({100.0*verb_successes/n:.1f}%)",
691
+ f"server={job_args.host}:{job_args.port}",
692
+ ]
693
+ (exp_dir / "success_rate.txt").write_text("\n".join(summary_lines) + "\n", encoding="utf-8")
694
+ logging.info("Saved results to %s", str(exp_dir))
695
+
696
+ if job_args.run_type == first_type:
697
+ first_ok += verb_successes; first_total += n
698
+ else:
699
+ second_ok += verb_successes; second_total += n
700
+
701
+ def _rate(s, n):
702
+ return f"{100.0*s/n:.1f}" if n > 0 else "0.0"
703
+
704
+ f1l = _f1_label_map.get(args.experiment, "first_success")
705
+ f2l = _f2_label_map.get(args.experiment, "second_success")
706
+ with open(results_path, "a") as f:
707
+ f.write(f"\noverall_{f1l}={first_ok}/{first_total} ({_rate(first_ok, first_total)}%)\n")
708
+ f.write(f"overall_{f2l}={second_ok}/{second_total} ({_rate(second_ok, second_total)}%)\n")
709
+
710
+ print(f"\noverall_{f1l}={first_ok}/{first_total} ({_rate(first_ok, first_total)}%)")
711
+ print(f"overall_{f2l}={second_ok}/{second_total} ({_rate(second_ok, second_total)}%)")
712
+ print(f"\nSaved summary to {results_path}")
713
+ print(f"Done: {total} runs for {args.experiment}")
714
+
715
+
716
+ def eval_conflict(args: Args) -> None:
717
+ """Single-pair debug mode (mirrors genie eval_conflict, GR00T policy)."""
718
+ import json
719
+ import tempfile
720
+ job = [{
721
+ "index": 1, "pair_i": args.pair_i, "pair_j": args.pair_j,
722
+ "run_type": args.run_type, "seed": args.seed,
723
+ "third_seed": args.third_seed, "num_episodes": args.num_episodes,
724
+ "experiment_name": args.experiment_name or
725
+ f"{args.experiment}_{args.pair_i}_{args.pair_j}_{args.run_type}",
726
+ }]
727
+ jf = tempfile.NamedTemporaryFile("w", suffix=".json", delete=False)
728
+ json.dump(job, jf); jf.close()
729
+ rt = tempfile.NamedTemporaryFile("w", suffix=".txt", delete=False); rt.close()
730
+ args.batch_jobs_file = jf.name
731
+ args.batch_results_txt = rt.name
732
+ batch_eval_conflict(args)
733
+ print("\n--- results file ---")
734
+ print(pathlib.Path(rt.name).read_text())
735
+
736
+
737
+ def main() -> None:
738
+ args = tyro.cli(Args)
739
+ if args.batch_jobs_file:
740
+ batch_eval_conflict(args)
741
+ else:
742
+ eval_conflict(args)
743
+
744
+
745
+ if __name__ == "__main__":
746
+ main()
code/pi0_grid_eval.py ADDED
@@ -0,0 +1,293 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ pi0 PAIRWISE-GRID eval — mirrors yqi19/Maniskill_gen_new data collection
4
+ exactly, with the MP solver replaced by a pi0 openpi-websocket policy.
5
+
6
+ Implemented: color_size (collect_pairwise_attribute.py :: experiment=color_size)
7
+ • sweep color(6) × size(6) full grid (small,large,smaller,larger,smallest,largest)
8
+ • FIXED verb=lift, shape=cube (per collection definition)
9
+ • size→scene preset (verbatim from collect_pairwise_attribute._size_controls /
10
+ _sample_small_large_distractors):
11
+ small 0.72 / no distractor large 1.34 / no distractor
12
+ smaller 0.82 d[1.08] n1 larger 1.18 d[0.92] n1
13
+ smallest 0.78 d[1.00,1.24] n2 largest 1.26 d[1.00,0.80] n2
14
+ • env built via the repo's own get_env_id_and_color(); size scales →
15
+ make_kw, num_distractors → reset options (exactly as the MP runner).
16
+ • instruction: "Lift the {size} {color} cube." (color AND size in language)
17
+ • success = env "success"; task_difficulty configurable (harder).
18
+ """
19
+ from __future__ import annotations
20
+
21
+ import argparse
22
+ import os
23
+ import pathlib
24
+ import random
25
+ import sys
26
+
27
+ import numpy as np
28
+
29
+ MGEN_ROOT = os.environ.get("MGEN_ROOT", "/workspace/Maniskill_gen_new")
30
+ SIM_ROOT = os.environ.get("SIM_ROOT", "/workspace/eval_simulation/simulation")
31
+ for _p in (SIM_ROOT, MGEN_ROOT):
32
+ if _p not in sys.path:
33
+ sys.path.insert(0, _p)
34
+
35
+ import gymnasium as gym # noqa: E402
36
+ import mani_skill.envs # noqa: E402,F401 (registers VerbObjectColor-v1)
37
+ from openpi_client import image_tools # noqa: E402
38
+ from openpi_client import websocket_client_policy as _wcp # noqa: E402
39
+ # Repo's own canonical env-id/color resolver (handles legacy routing exactly).
40
+ from scripts.run_verb_color_shape_motion_planning import get_env_id_and_color # noqa: E402
41
+
42
+ COLORS = ("red", "yellow", "blue", "orange", "green", "black")
43
+ SIZES = ("small", "large", "smaller", "larger", "smallest", "largest")
44
+ SPATIALS = ("left", "right", "middle", "front", "behind")
45
+ VERB_POOL = ("lift", "grasp", "push") # training_vocab THIRD_VERBS (first 3)
46
+ VERB_CAP = {"lift": "Lift", "grasp": "Grasp", "push": "Push",
47
+ "pull": "Pull", "rotate": "Rotate", "slide": "Slide"}
48
+ SPATIAL_PHRASE = {"left": "on the left", "right": "on the right",
49
+ "middle": "in the middle", "front": "in front",
50
+ "behind": "at the back"}
51
+ SPATIAL_ANCHOR = {"left": (-0.10, 0.0), "right": (0.10, 0.0),
52
+ "middle": (0.0, 0.0), "front": (0.0, 0.10),
53
+ "behind": (0.0, -0.10)}
54
+
55
+
56
+ def _spatial_xy(spatial, rng):
57
+ ax, ay = SPATIAL_ANCHOR[spatial]
58
+ return [ax + rng.uniform(-0.012, 0.012), ay + rng.uniform(-0.012, 0.012)]
59
+
60
+
61
+ # ── size presets: VERBATIM from collect_pairwise_attribute.py ───────────────
62
+ def _sample_small_large(size_label):
63
+ if size_label == "small":
64
+ return 0.72, None, 0
65
+ if size_label == "large":
66
+ return 1.34, None, 0
67
+ raise ValueError(size_label)
68
+
69
+
70
+ def _size_controls(size_label):
71
+ if size_label == "smaller":
72
+ return 0.82, [1.08], 1
73
+ if size_label == "larger":
74
+ return 1.18, [0.92], 1
75
+ if size_label == "smallest":
76
+ return 0.78, [1.00, 1.24], 2
77
+ if size_label == "largest":
78
+ return 1.26, [1.00, 0.80], 2
79
+ raise ValueError(size_label)
80
+
81
+
82
+ def _to_hwc_uint8(x):
83
+ import torch
84
+ if torch.is_tensor(x):
85
+ x = x.detach().float().cpu().numpy()
86
+ x = np.asarray(x)
87
+ if x.ndim == 4:
88
+ x = x[0]
89
+ if x.ndim == 3 and x.shape[0] in (1, 3) and x.shape[-1] != 3:
90
+ x = np.transpose(x, (1, 2, 0))
91
+ if np.issubdtype(x.dtype, np.floating) and x.max() <= 1.0 + 1e-6:
92
+ x = (np.clip(x, 0, 1) * 255).astype(np.uint8)
93
+ else:
94
+ x = x.astype(np.uint8)
95
+ return np.ascontiguousarray(x)
96
+
97
+
98
+ def _state8(env):
99
+ import torch
100
+ q = env.unwrapped.agent.robot.get_qpos()
101
+ if torch.is_tensor(q):
102
+ q = q[0].detach().cpu().numpy()
103
+ q = np.asarray(q, dtype=np.float32).ravel()
104
+ out = np.zeros(8, dtype=np.float32)
105
+ out[: min(8, q.size)] = q[: min(8, q.size)]
106
+ return out
107
+
108
+
109
+ def _success(info):
110
+ import torch
111
+ s = info.get("success", False)
112
+ if torch.is_tensor(s):
113
+ return bool(s.squeeze().item())
114
+ return bool(np.asarray(s).squeeze())
115
+
116
+
117
+ # HARD color_size: EVERY cell has same-color same-shape(cube) distractor(s)
118
+ # differing ONLY in size → model MUST use the size word to disambiguate.
119
+ # (target_scale, [distractor_scales], n_d). small/large now also forced a
120
+ # contrasting same-color cube distractor (no more single-object gift cells).
121
+ HARD_SIZE = {
122
+ "small": (0.72, [1.20], 1),
123
+ "large": (1.34, [0.80], 1),
124
+ "smaller": (0.82, [1.08], 1),
125
+ "larger": (1.18, [0.92], 1),
126
+ "smallest": (0.78, [1.00, 1.24], 2),
127
+ "largest": (1.26, [1.00, 0.80], 2),
128
+ }
129
+
130
+
131
+ def build_color_size_cell(color, size_label, *, distractor_max_arg, task_difficulty):
132
+ """HARD: ≥1 same-color cube distractor, size-only difference."""
133
+ verb, shape = "lift", "cube"
134
+ t_scale, d_scales, n_d = HARD_SIZE[size_label]
135
+ env_id, color_id, extra = get_env_id_and_color(
136
+ verb, color, shape, distractor_max=max(int(distractor_max_arg), n_d),
137
+ task_difficulty=task_difficulty)
138
+ make_kw = dict(obs_mode="rgb", control_mode="pd_joint_pos",
139
+ render_mode="rgb_array")
140
+ if env_id == "VerbObjectColor-v1":
141
+ make_kw.update(extra)
142
+ make_kw["object_size_jiggle"] = 0.0
143
+ # distractor_specs is an env CONSTRUCTOR arg: force cube + target color
144
+ make_kw["distractor_specs"] = [("cube", int(color_id))] * n_d + \
145
+ [None] * (3 - n_d)
146
+ else:
147
+ make_kw["object_color_id"] = color_id
148
+ reset_opts = {"num_distractors": int(n_d),
149
+ "target_size_scale": float(t_scale),
150
+ "distractor_size_scales": [float(x) for x in d_scales]}
151
+ instruction = f"Lift the {size_label} {color} cube."
152
+ return env_id, make_kw, reset_opts, instruction
153
+
154
+
155
+ def build_color_spatial_cell(color, spatial, *, rng, distractor_max_arg, task_difficulty):
156
+ """HARD: same-color same-shape(cube) distractor at a DIFFERENT spatial
157
+ anchor → model MUST use the spatial phrase to disambiguate."""
158
+ verb = rng.choice(VERB_POOL)
159
+ shape = "cube"
160
+ others = [s for s in SPATIALS if s != spatial]
161
+ d_spatial = rng.choice(others)
162
+ env_id, color_id, extra = get_env_id_and_color(
163
+ verb, color, shape, distractor_max=1, task_difficulty=task_difficulty)
164
+ make_kw = dict(obs_mode="rgb", control_mode="pd_joint_pos",
165
+ render_mode="rgb_array")
166
+ if env_id == "VerbObjectColor-v1":
167
+ make_kw.update(extra)
168
+ make_kw["object_size_jiggle"] = 0.0
169
+ make_kw["distractor_specs"] = [("cube", int(color_id)), None, None]
170
+ else:
171
+ make_kw["object_color_id"] = color_id
172
+ reset_opts = {"num_distractors": 1, "target_size_scale": 1.0,
173
+ "obj_xy": _spatial_xy(spatial, rng),
174
+ "distractor_xy": [_spatial_xy(d_spatial, rng)],
175
+ "distractor_size_scales": [1.0]}
176
+ instruction = f"{VERB_CAP[verb]} the {color} cube {SPATIAL_PHRASE[spatial]}."
177
+ return env_id, make_kw, reset_opts, instruction
178
+
179
+
180
+ def run_cell(client, env_id, make_kw, reset_opts, instruction, *,
181
+ seed, sim_backend, max_steps, replan, resize=224):
182
+ mk = dict(make_kw)
183
+ mk["sim_backend"] = sim_backend
184
+ mk["render_backend"] = sim_backend
185
+ env = gym.make(env_id, **mk)
186
+ obs, _ = env.reset(seed=seed, options=reset_opts)
187
+ plan = []
188
+ done = ok = False
189
+ try:
190
+ while not done:
191
+ b = _to_hwc_uint8(obs["sensor_data"]["base_camera"]["rgb"])
192
+ h = _to_hwc_uint8(obs["sensor_data"]["hand_camera"]["rgb"])
193
+ if not plan:
194
+ img = image_tools.convert_to_uint8(image_tools.resize_with_pad(b, resize, resize))
195
+ wri = image_tools.convert_to_uint8(image_tools.resize_with_pad(h, resize, resize))
196
+ chunk = client.infer({
197
+ "observation/image": img,
198
+ "observation/wrist_image": wri,
199
+ "observation/state": _state8(env).astype(np.float32),
200
+ "prompt": instruction,
201
+ })["actions"]
202
+ chunk = np.asarray(chunk, dtype=np.float32)
203
+ n = min(replan, len(chunk))
204
+ if n < 1:
205
+ break
206
+ plan = list(chunk[:n])
207
+ act = np.asarray(plan.pop(0), dtype=np.float32).ravel()[:8]
208
+ obs, _r, term, trunc, info = env.step(act)
209
+ if _success(info):
210
+ ok = True
211
+ done = bool(term or trunc) or ok
212
+ finally:
213
+ env.close()
214
+ return ok
215
+
216
+
217
+ def main():
218
+ ap = argparse.ArgumentParser()
219
+ ap.add_argument("--experiment", required=True,
220
+ choices=["color_size", "color_spatial"])
221
+ ap.add_argument("--host", default="127.0.0.1")
222
+ ap.add_argument("--port", type=int, default=8000)
223
+ ap.add_argument("--seed", type=int, default=42)
224
+ ap.add_argument("--results-txt", required=True)
225
+ ap.add_argument("--sim-backend", default="cpu")
226
+ ap.add_argument("--task-difficulty", type=float, default=1.3)
227
+ ap.add_argument("--max-episode-steps", type=int, default=150)
228
+ ap.add_argument("--replan-steps", type=int, default=10)
229
+ ap.add_argument("--distractor-max", type=int, default=2)
230
+ ap.add_argument("--max-cells", type=int, default=0)
231
+ ap.add_argument("--target-episodes", type=int, default=0,
232
+ help=">0: run ceil(target/ncells) reps per cell (~target total)")
233
+ a = ap.parse_args()
234
+
235
+ if a.experiment == "color_size":
236
+ f2vals, f2name = SIZES, "size"
237
+ meta = "fixed verb=lift shape=cube"
238
+ else: # color_spatial
239
+ f2vals, f2name = SPATIALS, "spatial"
240
+ meta = "fixed shape=cube; verb~{lift,grasp,push}; no distractor"
241
+ cells = [(c, x) for c in COLORS for x in f2vals] # full grid
242
+ if a.max_cells > 0:
243
+ cells = cells[: a.max_cells]
244
+
245
+ client = _wcp.WebsocketClientPolicy(a.host, a.port)
246
+ rt = pathlib.Path(a.results_txt)
247
+ rt.parent.mkdir(parents=True, exist_ok=True)
248
+ with rt.open("w") as f:
249
+ f.write(f"# pi0 {a.experiment} grid {meta} "
250
+ f"seed={a.seed} task_difficulty={a.task_difficulty} "
251
+ f"sim={a.sim_backend} cells={len(cells)}\n")
252
+ f.write(f"idx color {f2name} success prompt\n")
253
+
254
+ import math as _m
255
+ ncells = len(cells)
256
+ reps = max(1, _m.ceil(a.target_episodes / ncells)) if a.target_episodes > 0 else 1
257
+ print(f"cells={ncells} reps/cell={reps} → {ncells*reps} episodes/seed", flush=True)
258
+
259
+ succ = tot = 0
260
+ for idx, (color, f2) in enumerate(cells, 1):
261
+ for r in range(reps):
262
+ rng = random.Random(a.seed * 100003 + idx * 131 + r)
263
+ try:
264
+ if a.experiment == "color_size":
265
+ env_id, mk, ro, instr = build_color_size_cell(
266
+ color, f2, distractor_max_arg=a.distractor_max,
267
+ task_difficulty=a.task_difficulty)
268
+ else:
269
+ env_id, mk, ro, instr = build_color_spatial_cell(
270
+ color, f2, rng=rng, distractor_max_arg=a.distractor_max,
271
+ task_difficulty=a.task_difficulty)
272
+ ok = run_cell(client, env_id, mk, ro, instr,
273
+ seed=a.seed + idx * 1000 + r,
274
+ sim_backend=a.sim_backend,
275
+ max_steps=a.max_episode_steps, replan=a.replan_steps)
276
+ except Exception as e: # noqa: BLE001
277
+ print(f"[{idx}/{ncells} r{r}] FAIL {color},{f2}: {e}", flush=True)
278
+ ok, instr = False, f"ERROR:{e}"
279
+ succ += int(ok)
280
+ tot += 1
281
+ with rt.open("a") as f:
282
+ f.write(f'{idx} {color} {f2} rep{r} {int(ok)} "{instr}"\n')
283
+ print(f"[{idx}/{ncells}] {color} {f2} {reps}reps → cum {succ}/{tot}",
284
+ flush=True)
285
+
286
+ rate = 100.0 * succ / tot if tot else 0.0
287
+ with rt.open("a") as f:
288
+ f.write(f"\noverall_success={succ}/{tot} ({rate:.1f}%)\n")
289
+ print(f"\nDone {a.experiment}: overall_success={succ}/{tot} ({rate:.1f}%)")
290
+
291
+
292
+ if __name__ == "__main__":
293
+ main()
code/pi0_pairwise_main.py ADDED
@@ -0,0 +1,747 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """
3
+ Roll out a fine-tuned GR00T N1.7 policy on OOD pairwise conflict experiments.
4
+
5
+ This is the GR00T counterpart to genie-inference-maniskill's
6
+ ``genie_envisioner/main.py``. The environment-construction logic
7
+ (`_build_env_and_instruction`, all 10 experiment types incl. size / spatial),
8
+ the rollout loop, dual-success metrics, video saving and results-file format
9
+ are kept *verbatim* from the Genie-Envisioner version so results are directly
10
+ comparable. The only difference is the policy: instead of an in-process
11
+ MVActor we query an out-of-process GR00T inference server
12
+ (`gr00t/eval/run_gr00t_server.py`) over zmq, which keeps GR00T's heavy
13
+ dependency set isolated from ManiSkill's.
14
+
15
+ Supports all 10 experiment types:
16
+ verb_color | verb_object | color_object
17
+ verb_size | verb_spatial
18
+ size_object | color_size | color_spatial | spatial_size | spatial_object
19
+
20
+ Batch mode (used by run_ood_groot_inference.sh): a single process, GR00T server
21
+ loaded once, all jobs from a JSON file executed sequentially.
22
+ """
23
+ from __future__ import annotations
24
+
25
+ import collections
26
+ import dataclasses
27
+ import datetime as _dt
28
+ import logging
29
+ import os
30
+ import pathlib
31
+ import sys
32
+
33
+ import gymnasium as gym
34
+ import numpy as np
35
+ import tqdm
36
+ import tyro
37
+
38
+ # ── repo roots ─────────────────────────────────────────────────────────────────
39
+ # maniskill_conflict provides both the `mani_skill` package (pip-installed) and
40
+ # the top-level `collection_strategy` package (NOT installed; needs sys.path).
41
+ _MANISKILL_CONFLICT_ROOT = pathlib.Path(
42
+ os.environ.get(
43
+ "MANISKILL_CONFLICT_ROOT",
44
+ "/workspace/groot_eval/genie_repo/maniskill_conflict",
45
+ )
46
+ ).resolve()
47
+
48
+ # Same meta_path redirect trick as openpi / genie (harmless if no such finder).
49
+ for _f in sys.meta_path:
50
+ _fmod = sys.modules.get(getattr(type(_f), "__module__", ""), None)
51
+ if _fmod is not None and "mani_skill" in getattr(_fmod, "MAPPING", {}):
52
+ _fmod.MAPPING["mani_skill"] = str(_MANISKILL_CONFLICT_ROOT / "mani_skill")
53
+ break
54
+
55
+ if _MANISKILL_CONFLICT_ROOT.exists():
56
+ _s = str(_MANISKILL_CONFLICT_ROOT)
57
+ if _s in sys.path:
58
+ sys.path.remove(_s)
59
+ sys.path.insert(0, _s)
60
+
61
+ # groot_client.py lives next to this file
62
+ sys.path.insert(0, str(pathlib.Path(__file__).resolve().parent))
63
+
64
+ import mani_skill.envs # noqa: F401 — registers VerbObjectColor-v1
65
+
66
+ from collection_strategy.lib.pairwise_task_language import VERB_TO_EN
67
+ from collection_strategy.lib.training_vocab import (
68
+ THIRD_COLORS_FOR_VERB_OBJECT,
69
+ THIRD_OBJECTS_FOR_VERB_COLOR,
70
+ THIRD_VERBS_FOR_COLOR_OBJECT,
71
+ TRAINING_COLORS,
72
+ TRAINING_SHAPES,
73
+ TRAINING_VERBS,
74
+ )
75
+ from openpi_client import image_tools
76
+ from openpi_client import websocket_client_policy as _websocket_client_policy
77
+
78
+ COLOR_TO_ID = {c: i for i, c in enumerate(TRAINING_COLORS)}
79
+
80
+ # ── size / spatial vocabularies (verbatim from genie main.py) ──────────────────
81
+ SIZES: tuple[str, ...] = ("small", "large", "smaller", "larger", "smallest", "largest")
82
+ SIZE_SCALES: dict[str, float] = {
83
+ "small": 0.72, "large": 1.34,
84
+ "smaller": 0.82, "larger": 1.18,
85
+ "smallest": 0.78, "largest": 1.26,
86
+ }
87
+ SPATIALS: tuple[str, ...] = ("left", "right", "middle", "front", "behind")
88
+ SPATIAL_ANCHORS: dict[str, tuple[float, float]] = {
89
+ "left": (-0.10, 0.00), "right": (0.10, 0.00),
90
+ "middle": (0.00, 0.00), "front": (0.00, 0.10), "behind": (0.00, -0.10),
91
+ }
92
+ SPATIAL_TO_PHRASE: dict[str, str] = {
93
+ "left": "on the left", "right": "on the right",
94
+ "middle": "in the middle", "front": "in front", "behind": "at the back",
95
+ }
96
+ _VERB_CAPS: dict[str, str] = {
97
+ "lift": "Lift", "grasp": "Grasp", "push": "Push",
98
+ "pull": "Pull", "rotate": "Rotate", "slide": "Slide",
99
+ }
100
+
101
+
102
+ # ──────────────────────────────────────────────────────────────────────────────
103
+ # Args
104
+ # ──────────────────────────────────────────────────────────────────────────────
105
+
106
+ @dataclasses.dataclass
107
+ class Args:
108
+ # ── GR00T inference server ──
109
+ host: str = "127.0.0.1"
110
+ port: int = 5555
111
+ replan_steps: int = 5
112
+ """Execute this many env steps before querying the model again."""
113
+
114
+ # ── OOD pair spec ──
115
+ experiment: str = "verb_color"
116
+ """verb_color | verb_object | color_object | verb_size | verb_spatial |
117
+ size_object | color_size | color_spatial | spatial_size | spatial_object."""
118
+ pair_i: int = 0
119
+ pair_j: int = 1
120
+ run_type: str = "verb"
121
+ third_seed: int = 0
122
+ third_indices: str = "0,1"
123
+ """Comma-separated indices into THIRD_* list (default '0,1' matches conflict training)."""
124
+
125
+ # ── Episode settings ──
126
+ num_episodes: int = 20
127
+ max_episode_steps: int = 300
128
+ sim_backend: str = "gpu"
129
+ seed: int = 0
130
+ task_difficulty: float = 1.0
131
+ """VerbObjectColor-v1 difficulty (default 1.0; >1 harder, clamped [0.5,3.0])."""
132
+
133
+ # ── Output ──
134
+ experiment_root: str = "data/conflict_groot/experiments"
135
+ experiment_name: str = ""
136
+ save_wrist_video: bool = True
137
+
138
+ # ── Batch mode (server loaded once, all runs executed in-process) ──
139
+ batch_jobs_file: str = ""
140
+ batch_results_txt: str = ""
141
+ batch_skip_to: int = 0
142
+
143
+
144
+ # ──────────────────────────────────────────────────────────────────────────────
145
+ # Helpers (verbatim from genie main.py)
146
+ # ──────────────────────────────────────────────────────────────────────────────
147
+
148
+ def _to_hwc_uint8(x) -> np.ndarray:
149
+ try:
150
+ import torch
151
+ if torch.is_tensor(x):
152
+ x = x.detach().float().cpu().numpy()
153
+ except Exception:
154
+ pass
155
+ x = np.asarray(x)
156
+ if x.ndim == 4:
157
+ x = x[0]
158
+ if x.ndim == 3 and x.shape[0] in (1, 3) and x.shape[-1] != 3:
159
+ x = np.transpose(x, (1, 2, 0))
160
+ if np.issubdtype(x.dtype, np.floating) and x.max() <= 1.0 + 1e-6:
161
+ x = (np.clip(x, 0.0, 1.0) * 255).astype(np.uint8)
162
+ else:
163
+ x = x.astype(np.uint8)
164
+ return np.ascontiguousarray(x)
165
+
166
+
167
+ def _state8(env: gym.Env) -> np.ndarray:
168
+ qpos = env.unwrapped.agent.robot.get_qpos()
169
+ try:
170
+ import torch
171
+ if torch.is_tensor(qpos):
172
+ qpos = qpos[0].detach().cpu().numpy()
173
+ except Exception:
174
+ pass
175
+ qpos = np.asarray(qpos, dtype=np.float32).ravel()
176
+ out = np.zeros(8, dtype=np.float32)
177
+ out[: min(8, len(qpos))] = qpos[: min(8, len(qpos))]
178
+ return out
179
+
180
+
181
+ def _bool_info(info: dict, key: str) -> bool:
182
+ v = info.get(key, False)
183
+ try:
184
+ import torch
185
+ if torch.is_tensor(v):
186
+ return bool(v.squeeze().item())
187
+ except Exception:
188
+ pass
189
+ return bool(np.asarray(v).squeeze())
190
+
191
+
192
+ def _parse_third_pool(full: tuple, spec: str) -> tuple:
193
+ idxs = [int(x.strip()) for x in spec.split(",") if x.strip()]
194
+ return tuple(full[i] for i in idxs)
195
+
196
+
197
+ # ──────────────────────────────────────────────────────────────────────────────
198
+ # Environment factory (VERBATIM from genie_envisioner/main.py)
199
+ # ──────────────────────────────────────────────────────────────────────────────
200
+
201
+ def _build_env_and_instruction(args: Args) -> tuple[gym.Env, str]:
202
+ """Create VerbObjectColor-v1 for the given OOD pair. Returns (env, instruction)."""
203
+ import random as _random
204
+ rng = _random.Random(args.third_seed)
205
+
206
+ i, j = args.pair_i, args.pair_j
207
+ assert i != j, f"pair_i must differ from pair_j, got ({i}, {j})"
208
+
209
+ verb_i = TRAINING_VERBS[i]
210
+ verb_j = TRAINING_VERBS[j]
211
+
212
+ _shape_pool = _parse_third_pool(THIRD_OBJECTS_FOR_VERB_COLOR, args.third_indices)
213
+ _color_pool = _parse_third_pool(THIRD_COLORS_FOR_VERB_OBJECT, args.third_indices)
214
+ _verb_pool = _parse_third_pool(THIRD_VERBS_FOR_COLOR_OBJECT, args.third_indices)
215
+
216
+ make_kw: dict = dict(
217
+ obs_mode="rgb",
218
+ control_mode="pd_joint_pos",
219
+ sim_backend=args.sim_backend,
220
+ render_backend=args.sim_backend,
221
+ max_episode_steps=args.max_episode_steps,
222
+ task_difficulty=args.task_difficulty,
223
+ )
224
+
225
+ if args.experiment == "verb_color":
226
+ shape = rng.choice(_shape_pool)
227
+ color_i = TRAINING_COLORS[i]; color_j = TRAINING_COLORS[j]
228
+ instruction = VERB_TO_EN[verb_i].format(color=color_j, shape=shape)
229
+ if args.run_type == "verb":
230
+ make_kw.update(
231
+ verb=verb_i, object_shape=shape, object_color_id=COLOR_TO_ID[color_i],
232
+ distractor_max=3, distractor_specs=[(shape, COLOR_TO_ID[color_j]), None, None],
233
+ )
234
+ elif args.run_type == "color":
235
+ make_kw.update(
236
+ verb=verb_j, object_shape=shape, object_color_id=COLOR_TO_ID[color_j],
237
+ distractor_max=3, distractor_specs=[(shape, COLOR_TO_ID[color_i]), None, None],
238
+ )
239
+ else:
240
+ raise ValueError(f"run_type must be 'verb' or 'color' for verb_color, got {args.run_type!r}")
241
+
242
+ elif args.experiment == "verb_object":
243
+ color = rng.choice(_color_pool)
244
+ shape_i = TRAINING_SHAPES[i]; shape_j = TRAINING_SHAPES[j]
245
+ instruction = VERB_TO_EN[verb_i].format(color=color, shape=shape_j)
246
+ if args.run_type == "verb":
247
+ make_kw.update(
248
+ verb=verb_i, object_shape=shape_i, object_color_id=COLOR_TO_ID[color],
249
+ distractor_max=3, distractor_specs=[(shape_j, COLOR_TO_ID[color]), None, None],
250
+ )
251
+ elif args.run_type == "shape":
252
+ make_kw.update(
253
+ verb=verb_j, object_shape=shape_j, object_color_id=COLOR_TO_ID[color],
254
+ distractor_max=3, distractor_specs=[(shape_i, COLOR_TO_ID[color]), None, None],
255
+ )
256
+ else:
257
+ raise ValueError(f"run_type must be 'verb' or 'shape' for verb_object, got {args.run_type!r}")
258
+
259
+ elif args.experiment == "color_object":
260
+ third_verb = rng.choice(_verb_pool)
261
+ color_i, shape_i = TRAINING_COLORS[i], TRAINING_SHAPES[i]
262
+ color_j, shape_j = TRAINING_COLORS[j], TRAINING_SHAPES[j]
263
+ instruction = VERB_TO_EN[third_verb].format(color=color_i, shape=shape_j)
264
+ if args.run_type == "color":
265
+ make_kw.update(
266
+ verb=third_verb, object_shape=shape_i, object_color_id=COLOR_TO_ID[color_i],
267
+ distractor_max=3, distractor_specs=[(shape_j, COLOR_TO_ID[color_j]), None, None],
268
+ )
269
+ elif args.run_type == "shape":
270
+ make_kw.update(
271
+ verb=third_verb, object_shape=shape_j, object_color_id=COLOR_TO_ID[color_j],
272
+ distractor_max=3, distractor_specs=[(shape_i, COLOR_TO_ID[color_i]), None, None],
273
+ )
274
+ else:
275
+ raise ValueError(f"run_type must be 'color' or 'shape' for color_object, got {args.run_type!r}")
276
+
277
+ elif args.experiment == "verb_size":
278
+ size_i = SIZES[i]; size_j = SIZES[j]
279
+ scale_i = SIZE_SCALES[size_i]; scale_j = SIZE_SCALES[size_j]
280
+ _superlative = (i // 2 == 2)
281
+ third_shape = rng.choice(_shape_pool)
282
+ instruction = f"{_VERB_CAPS[verb_i]} the {size_j} {third_shape}."
283
+ if args.run_type == "verb":
284
+ make_kw.update(
285
+ verb=verb_i, object_shape=third_shape, object_color_id=0,
286
+ target_size_scale=scale_i,
287
+ distractor_specs=[(third_shape, 0), (third_shape, 0) if _superlative else None, None],
288
+ distractor_size_scales=[scale_j, 1.00] if _superlative else [scale_j],
289
+ distractor_max=2 if _superlative else 1, object_size_jiggle=0.0,
290
+ )
291
+ elif args.run_type == "size":
292
+ make_kw.update(
293
+ verb=verb_j, object_shape=third_shape, object_color_id=0,
294
+ target_size_scale=scale_j,
295
+ distractor_specs=[(third_shape, 0), (third_shape, 0) if _superlative else None, None],
296
+ distractor_size_scales=[scale_i, 1.00] if _superlative else [scale_i],
297
+ distractor_max=2 if _superlative else 1, object_size_jiggle=0.0,
298
+ )
299
+ else:
300
+ raise ValueError(f"run_type must be 'verb' or 'size' for verb_size, got {args.run_type!r}")
301
+
302
+ elif args.experiment == "verb_spatial":
303
+ spatial_i = SPATIALS[i]; spatial_j = SPATIALS[j]
304
+ third_shape = rng.choice(_shape_pool)
305
+ instruction = f"{_VERB_CAPS[verb_i]} the {third_shape} {SPATIAL_TO_PHRASE[spatial_j]}."
306
+ if args.run_type == "verb":
307
+ make_kw.update(
308
+ verb=verb_i, object_shape=third_shape, object_color_id=0,
309
+ target_size_scale=1.0,
310
+ distractor_specs=[(third_shape, 0), None, None],
311
+ distractor_max=1, object_size_jiggle=0.0,
312
+ )
313
+ elif args.run_type == "spatial":
314
+ make_kw.update(
315
+ verb=verb_j, object_shape=third_shape, object_color_id=0,
316
+ target_size_scale=1.0,
317
+ distractor_specs=[(third_shape, 0), None, None],
318
+ distractor_max=1, object_size_jiggle=0.0,
319
+ )
320
+ else:
321
+ raise ValueError(f"run_type must be 'verb' or 'spatial' for verb_spatial, got {args.run_type!r}")
322
+
323
+ elif args.experiment == "size_object":
324
+ size_i = SIZES[i]; size_j = SIZES[j]
325
+ shape_i = TRAINING_SHAPES[i]; shape_j = TRAINING_SHAPES[j]
326
+ _superlative = (i // 2 == 2)
327
+ third_verb = rng.choice(_verb_pool)
328
+ instruction = f"{_VERB_CAPS[third_verb]} the {size_i} {shape_j}."
329
+ if args.run_type == "size":
330
+ make_kw.update(
331
+ verb=third_verb, object_shape=shape_i, object_color_id=0,
332
+ target_size_scale=SIZE_SCALES[size_i],
333
+ distractor_specs=[(shape_j, 0), (shape_i, 0) if _superlative else None, None],
334
+ distractor_size_scales=[SIZE_SCALES[size_j], 1.00] if _superlative else [SIZE_SCALES[size_j]],
335
+ distractor_max=2 if _superlative else 1, object_size_jiggle=0.0,
336
+ )
337
+ elif args.run_type == "shape":
338
+ make_kw.update(
339
+ verb=third_verb, object_shape=shape_j, object_color_id=0,
340
+ target_size_scale=SIZE_SCALES[size_j],
341
+ distractor_specs=[(shape_i, 0), (shape_i, 0) if _superlative else None, None],
342
+ distractor_size_scales=[SIZE_SCALES[size_i], 1.00] if _superlative else [SIZE_SCALES[size_i]],
343
+ distractor_max=2 if _superlative else 1, object_size_jiggle=0.0,
344
+ )
345
+ else:
346
+ raise ValueError(f"run_type must be 'size' or 'shape' for size_object, got {args.run_type!r}")
347
+
348
+ elif args.experiment == "color_size":
349
+ color_i = TRAINING_COLORS[i]; color_j = TRAINING_COLORS[j]
350
+ size_i = SIZES[i]; size_j = SIZES[j]
351
+ _superlative = (i // 2 == 2)
352
+ third_verb = rng.choice(_verb_pool)
353
+ if _superlative:
354
+ _neutral_color_pool = [c for c in TRAINING_COLORS if c not in (color_i, color_j)]
355
+ _neutral_color = rng.choice(_neutral_color_pool)
356
+ instruction = f"{_VERB_CAPS[third_verb]} the {color_i} {size_j} cube."
357
+ if args.run_type == "color":
358
+ make_kw.update(
359
+ verb=third_verb, object_shape="cube", object_color_id=COLOR_TO_ID[color_i],
360
+ target_size_scale=SIZE_SCALES[size_i],
361
+ distractor_specs=[("cube", COLOR_TO_ID[color_j]),
362
+ ("cube", COLOR_TO_ID[_neutral_color]) if _superlative else None, None],
363
+ distractor_size_scales=[SIZE_SCALES[size_j], 1.00] if _superlative else [SIZE_SCALES[size_j]],
364
+ distractor_max=2 if _superlative else 1, object_size_jiggle=0.0,
365
+ )
366
+ elif args.run_type == "size":
367
+ make_kw.update(
368
+ verb=third_verb, object_shape="cube", object_color_id=COLOR_TO_ID[color_j],
369
+ target_size_scale=SIZE_SCALES[size_j],
370
+ distractor_specs=[("cube", COLOR_TO_ID[color_i]),
371
+ ("cube", COLOR_TO_ID[_neutral_color]) if _superlative else None, None],
372
+ distractor_size_scales=[SIZE_SCALES[size_i], 1.00] if _superlative else [SIZE_SCALES[size_i]],
373
+ distractor_max=2 if _superlative else 1, object_size_jiggle=0.0,
374
+ )
375
+ else:
376
+ raise ValueError(f"run_type must be 'color' or 'size' for color_size, got {args.run_type!r}")
377
+
378
+ elif args.experiment == "color_spatial":
379
+ color_i = TRAINING_COLORS[i]; color_j = TRAINING_COLORS[j]
380
+ third_verb = rng.choice(_verb_pool)
381
+ instruction = f"{_VERB_CAPS[third_verb]} the {color_i} cube {SPATIAL_TO_PHRASE[SPATIALS[j]]}."
382
+ if args.run_type == "color":
383
+ make_kw.update(
384
+ verb=third_verb, object_shape="cube", object_color_id=COLOR_TO_ID[color_i],
385
+ target_size_scale=1.0,
386
+ distractor_specs=[("cube", COLOR_TO_ID[color_j]), None, None],
387
+ distractor_max=1, object_size_jiggle=0.0,
388
+ )
389
+ elif args.run_type == "spatial":
390
+ make_kw.update(
391
+ verb=third_verb, object_shape="cube", object_color_id=COLOR_TO_ID[color_j],
392
+ target_size_scale=1.0,
393
+ distractor_specs=[("cube", COLOR_TO_ID[color_i]), None, None],
394
+ distractor_max=1, object_size_jiggle=0.0,
395
+ )
396
+ else:
397
+ raise ValueError(f"run_type must be 'color' or 'spatial' for color_spatial, got {args.run_type!r}")
398
+
399
+ elif args.experiment == "spatial_size":
400
+ size_i = SIZES[i]; size_j = SIZES[j]
401
+ third_shape = rng.choice(_shape_pool)
402
+ instruction = f"Lift the {size_j} {third_shape} {SPATIAL_TO_PHRASE[SPATIALS[i]]}."
403
+ if args.run_type == "spatial":
404
+ make_kw.update(
405
+ verb="lift", object_shape=third_shape, object_color_id=0,
406
+ target_size_scale=SIZE_SCALES[size_i],
407
+ distractor_specs=[(third_shape, 0), None, None],
408
+ distractor_size_scales=[SIZE_SCALES[size_j]],
409
+ distractor_max=1, object_size_jiggle=0.0,
410
+ )
411
+ elif args.run_type == "size":
412
+ make_kw.update(
413
+ verb="lift", object_shape=third_shape, object_color_id=0,
414
+ target_size_scale=SIZE_SCALES[size_j],
415
+ distractor_specs=[(third_shape, 0), None, None],
416
+ distractor_size_scales=[SIZE_SCALES[size_i]],
417
+ distractor_max=1, object_size_jiggle=0.0,
418
+ )
419
+ else:
420
+ raise ValueError(f"run_type must be 'spatial' or 'size' for spatial_size, got {args.run_type!r}")
421
+
422
+ elif args.experiment == "spatial_object":
423
+ shape_i = TRAINING_SHAPES[i]; shape_j = TRAINING_SHAPES[j]
424
+ third_verb = rng.choice(_verb_pool)
425
+ instruction = f"{_VERB_CAPS[third_verb]} the {shape_j} {SPATIAL_TO_PHRASE[SPATIALS[i]]}."
426
+ if args.run_type == "spatial":
427
+ make_kw.update(
428
+ verb=third_verb, object_shape=shape_i, object_color_id=0,
429
+ target_size_scale=1.0,
430
+ distractor_specs=[(shape_j, 0), None, None],
431
+ distractor_max=1, object_size_jiggle=0.0,
432
+ )
433
+ elif args.run_type == "shape":
434
+ make_kw.update(
435
+ verb=third_verb, object_shape=shape_j, object_color_id=0,
436
+ target_size_scale=1.0,
437
+ distractor_specs=[(shape_i, 0), None, None],
438
+ distractor_max=1, object_size_jiggle=0.0,
439
+ )
440
+ else:
441
+ raise ValueError(f"run_type must be 'spatial' or 'shape' for spatial_object, got {args.run_type!r}")
442
+
443
+ else:
444
+ raise ValueError(f"Unknown experiment {args.experiment!r}")
445
+
446
+ env = gym.make("VerbObjectColor-v1", **make_kw)
447
+ return env, instruction
448
+
449
+
450
+ # ──────────────────────────────────────────────────────────────────────────────
451
+ # pi0 policy boundary (openpi websocket) — mirrors
452
+ # eval_pi0/examples/maniskill_full_factor/main.py
453
+ # ──────────────────────────────────────────────────────────────────────────────
454
+
455
+ def _query_pi0(client, img_base: np.ndarray, img_wrist: np.ndarray,
456
+ state8: np.ndarray, instruction: str,
457
+ resize_size: int = 224) -> np.ndarray:
458
+ """Resize cameras, query the openpi pi0 server, return an action chunk
459
+ (T, action_dim); caller slices [:8] for the env."""
460
+ img = image_tools.convert_to_uint8(
461
+ image_tools.resize_with_pad(img_base, resize_size, resize_size))
462
+ wrist = image_tools.convert_to_uint8(
463
+ image_tools.resize_with_pad(img_wrist, resize_size, resize_size))
464
+ chunk = client.infer({
465
+ "observation/image": img,
466
+ "observation/wrist_image": wrist,
467
+ "observation/state": state8.astype(np.float32),
468
+ "prompt": instruction,
469
+ })["actions"]
470
+ return np.asarray(chunk, dtype=np.float32)
471
+
472
+
473
+ # ──────────────────────────────────────────────────────────────────────────────
474
+ # Batch eval (mirrors genie_envisioner/main.py :: batch_eval_conflict)
475
+ # ──────────────────────────────────────────────────────────────────────────────
476
+
477
+ def batch_eval_conflict(args: Args) -> None:
478
+ import json
479
+
480
+ logging.basicConfig(level=logging.INFO, force=True)
481
+
482
+ if not args.batch_jobs_file:
483
+ raise ValueError("--batch-jobs-file is required for batch mode")
484
+ if not args.batch_results_txt:
485
+ raise ValueError("--batch-results-txt is required for batch mode")
486
+
487
+ all_jobs = json.loads(pathlib.Path(args.batch_jobs_file).read_text())
488
+ if args.batch_skip_to > 0:
489
+ jobs = all_jobs[args.batch_skip_to:]
490
+ logging.info("Resuming from job %d (skipping first %d)",
491
+ args.batch_skip_to + 1, args.batch_skip_to)
492
+ else:
493
+ jobs = all_jobs
494
+ results_path = pathlib.Path(args.batch_results_txt)
495
+ total = len(all_jobs)
496
+ logging.info("Batch mode: %d/%d jobs remaining, experiment=%s, server=%s:%d",
497
+ len(jobs), total, args.experiment, args.host, args.port)
498
+
499
+ # ── Connect to the pi0 openpi websocket policy server (loaded once) ──
500
+ import time as _t
501
+ client = None
502
+ for _ in range(120):
503
+ try:
504
+ client = _websocket_client_policy.WebsocketClientPolicy(args.host, args.port)
505
+ break
506
+ except Exception:
507
+ _t.sleep(2.0)
508
+ if client is None:
509
+ raise RuntimeError(f"pi0 server not reachable at {args.host}:{args.port}")
510
+ logging.info("pi0 server ready at %s:%d", args.host, args.port)
511
+
512
+ try:
513
+ import imageio.v2 as imageio
514
+ except ImportError:
515
+ import imageio # type: ignore
516
+
517
+ _run_type_to_label = {
518
+ "verb": "verb_success", "color": "color_success",
519
+ "shape": "shape_success", "size": "size_success", "spatial": "spatial_success",
520
+ }
521
+ _SPATIAL_EXPS = {"verb_spatial", "color_spatial", "spatial_size", "spatial_object"}
522
+ _FIRST_RUN_MAP = {
523
+ "verb_spatial": "verb", "color_spatial": "color",
524
+ "spatial_size": "spatial", "spatial_object": "spatial",
525
+ }
526
+ _run_type_pairs = {
527
+ "verb_color": ("verb", "color"), "verb_object": ("verb", "shape"),
528
+ "verb_size": ("verb", "size"), "verb_spatial": ("verb", "spatial"),
529
+ "color_object": ("color", "shape"), "size_object": ("size", "shape"),
530
+ "color_size": ("color", "size"), "color_spatial": ("color", "spatial"),
531
+ "spatial_size": ("spatial", "size"), "spatial_object": ("spatial", "shape"),
532
+ }
533
+ _f1_label_map = {
534
+ "verb_color": "verb_success", "verb_object": "verb_success",
535
+ "verb_size": "verb_success", "verb_spatial": "verb_success",
536
+ "color_object": "color_success", "size_object": "size_success",
537
+ "color_size": "color_success", "color_spatial": "color_success",
538
+ "spatial_size": "spatial_success", "spatial_object": "spatial_success",
539
+ }
540
+ _f2_label_map = {
541
+ "verb_color": "color_success", "verb_object": "shape_success",
542
+ "verb_size": "size_success", "verb_spatial": "spatial_success",
543
+ "color_object": "shape_success", "size_object": "shape_success",
544
+ "color_size": "size_success", "color_spatial": "spatial_success",
545
+ "spatial_size": "size_success", "spatial_object": "shape_success",
546
+ }
547
+ first_type = _run_type_pairs.get(args.experiment, ("", ""))[0]
548
+
549
+ first_ok = 0; first_total = 0
550
+ second_ok = 0; second_total = 0
551
+ if args.batch_skip_to > 0 and results_path.exists():
552
+ import re as _re
553
+ for line in results_path.read_text().splitlines():
554
+ parts = line.split()
555
+ if not parts or not parts[0].isdigit():
556
+ continue
557
+ if len(parts) >= 5:
558
+ rt = parts[3]
559
+ m = _re.match(r"(\d+)/(\d+)", parts[4])
560
+ if m:
561
+ ok, den = int(m.group(1)), int(m.group(2))
562
+ if rt == first_type:
563
+ first_ok += ok; first_total += den
564
+ else:
565
+ second_ok += ok; second_total += den
566
+
567
+ # ── Loop over jobs ───────────────────────────────────────────────────────
568
+ for job in jobs:
569
+ idx = int(job["index"])
570
+
571
+ job_args = dataclasses.replace(
572
+ args,
573
+ pair_i=int(job["pair_i"]),
574
+ pair_j=int(job["pair_j"]),
575
+ run_type=str(job["run_type"]),
576
+ third_seed=int(job["third_seed"]),
577
+ num_episodes=int(job["num_episodes"]),
578
+ seed=int(job["seed"]),
579
+ experiment_name=str(job["experiment_name"]),
580
+ )
581
+
582
+ logging.info("[%d/%d] pair=(%d,%d) run_type=%s experiment=%s",
583
+ idx, total, job_args.pair_i, job_args.pair_j,
584
+ job_args.run_type, job_args.experiment)
585
+
586
+ env, instruction = _build_env_and_instruction(job_args)
587
+ logging.info("OOD instruction: %r", instruction)
588
+
589
+ timestamp = _dt.datetime.now().strftime("%Y%m%d_%H%M%S")
590
+ run_name = (f"{job_args.experiment_name.strip()}_{timestamp}"
591
+ if job_args.experiment_name.strip()
592
+ else f"{job_args.experiment}_{job_args.pair_i}_{job_args.pair_j}_{job_args.run_type}_{timestamp}")
593
+ exp_dir = pathlib.Path(job_args.experiment_root) / run_name
594
+ video_dir = exp_dir / "video"
595
+ video_dir.mkdir(parents=True, exist_ok=True)
596
+
597
+ if job_args.experiment in _SPATIAL_EXPS:
598
+ _anchor_i = list(SPATIAL_ANCHORS[SPATIALS[job_args.pair_i]])
599
+ _anchor_j = list(SPATIAL_ANCHORS[SPATIALS[job_args.pair_j]])
600
+ if job_args.run_type == _FIRST_RUN_MAP[job_args.experiment]:
601
+ _reset_opts: dict = {"num_distractors": 1, "obj_xy": _anchor_i, "distractor_xy": [_anchor_j]}
602
+ else:
603
+ _reset_opts = {"num_distractors": 1, "obj_xy": _anchor_j, "distractor_xy": [_anchor_i]}
604
+ elif job_args.experiment in (
605
+ "color_object", "verb_object", "verb_color",
606
+ "verb_size", "size_object", "color_size",
607
+ ):
608
+ _reset_opts = {"num_distractors": 1}
609
+ else:
610
+ _reset_opts = {}
611
+
612
+ verb_successes = 0
613
+ factor2_successes = 0
614
+
615
+ for ep in tqdm.tqdm(range(job_args.num_episodes), desc=f"[{idx}/{total}]"):
616
+ obs, _ = env.reset(seed=job_args.seed + ep, options=_reset_opts)
617
+ client.reset()
618
+
619
+ action_plan: collections.deque = collections.deque()
620
+ base_writer = imageio.get_writer(str(video_dir / f"ep{ep:03d}.mp4"), fps=30)
621
+ wrist_writer = (
622
+ imageio.get_writer(str(video_dir / f"ep{ep:03d}_wrist.mp4"), fps=30)
623
+ if job_args.save_wrist_video else None
624
+ )
625
+ ep_verb_ok = False
626
+ ep_factor2_ok = False
627
+ done = False
628
+
629
+ try:
630
+ while not done:
631
+ img_base = _to_hwc_uint8(obs["sensor_data"]["base_camera"]["rgb"])
632
+ img_wrist = _to_hwc_uint8(obs["sensor_data"]["hand_camera"]["rgb"])
633
+
634
+ base_writer.append_data(img_base)
635
+ if wrist_writer is not None:
636
+ wrist_writer.append_data(img_wrist)
637
+
638
+ if not action_plan:
639
+ state = _state8(env)
640
+ chunk = _query_pi0(client, img_base, img_wrist, state, instruction)
641
+ n = min(job_args.replan_steps, len(chunk))
642
+ if n < 1:
643
+ break
644
+ action_plan.extend(chunk[:n])
645
+
646
+ action = np.asarray(action_plan.popleft(), dtype=np.float32).ravel()[:8]
647
+ obs, _reward, term, trunc, info = env.step(action)
648
+
649
+ if _bool_info(info, "success_first_axis"):
650
+ ep_verb_ok = True
651
+ elif _bool_info(info, "success"):
652
+ ep_verb_ok = True
653
+ if _bool_info(info, "success_second_axis"):
654
+ ep_factor2_ok = True
655
+
656
+ done = bool(term or trunc) or (ep_verb_ok and ep_factor2_ok)
657
+
658
+ finally:
659
+ base_writer.close()
660
+ if wrist_writer is not None:
661
+ wrist_writer.close()
662
+
663
+ if ep_verb_ok:
664
+ verb_successes += 1
665
+ if ep_factor2_ok:
666
+ factor2_successes += 1
667
+
668
+ logging.info("ep=%d verb_ok=%s factor2_ok=%s", ep, ep_verb_ok, ep_factor2_ok)
669
+
670
+ env.close()
671
+ import gc
672
+ gc.collect()
673
+
674
+ n = max(job_args.num_episodes, 1)
675
+ label1 = _run_type_to_label.get(job_args.run_type, f"{job_args.run_type}_success")
676
+ print(f"Success rate ({label1}): {verb_successes} / {n} ({100.0*verb_successes/n:.1f}%)")
677
+ sys.stdout.flush()
678
+
679
+ run_name_base = job_args.experiment_name.strip() or (
680
+ f"{job_args.experiment}_{job_args.pair_i}_{job_args.pair_j}_{job_args.run_type}")
681
+ with open(results_path, "a") as f:
682
+ f.write(f"{idx} {job_args.pair_i} {job_args.pair_j} {job_args.run_type} "
683
+ f"{verb_successes}/{n} {run_name_base}\n")
684
+
685
+ summary_lines = [
686
+ f"experiment={job_args.experiment}",
687
+ f"pair=({job_args.pair_i},{job_args.pair_j})",
688
+ f"run_type={job_args.run_type}",
689
+ f"instruction={instruction!r}",
690
+ f"num_episodes={job_args.num_episodes}",
691
+ f"{label1}={verb_successes}/{n} ({100.0*verb_successes/n:.1f}%)",
692
+ f"server={job_args.host}:{job_args.port}",
693
+ ]
694
+ (exp_dir / "success_rate.txt").write_text("\n".join(summary_lines) + "\n", encoding="utf-8")
695
+ logging.info("Saved results to %s", str(exp_dir))
696
+
697
+ if job_args.run_type == first_type:
698
+ first_ok += verb_successes; first_total += n
699
+ else:
700
+ second_ok += verb_successes; second_total += n
701
+
702
+ def _rate(s, n):
703
+ return f"{100.0*s/n:.1f}" if n > 0 else "0.0"
704
+
705
+ f1l = _f1_label_map.get(args.experiment, "first_success")
706
+ f2l = _f2_label_map.get(args.experiment, "second_success")
707
+ with open(results_path, "a") as f:
708
+ f.write(f"\noverall_{f1l}={first_ok}/{first_total} ({_rate(first_ok, first_total)}%)\n")
709
+ f.write(f"overall_{f2l}={second_ok}/{second_total} ({_rate(second_ok, second_total)}%)\n")
710
+
711
+ print(f"\noverall_{f1l}={first_ok}/{first_total} ({_rate(first_ok, first_total)}%)")
712
+ print(f"overall_{f2l}={second_ok}/{second_total} ({_rate(second_ok, second_total)}%)")
713
+ print(f"\nSaved summary to {results_path}")
714
+ print(f"Done: {total} runs for {args.experiment}")
715
+
716
+
717
+ def eval_conflict(args: Args) -> None:
718
+ """Single-pair debug mode (mirrors genie eval_conflict, GR00T policy)."""
719
+ import json
720
+ import tempfile
721
+ job = [{
722
+ "index": 1, "pair_i": args.pair_i, "pair_j": args.pair_j,
723
+ "run_type": args.run_type, "seed": args.seed,
724
+ "third_seed": args.third_seed, "num_episodes": args.num_episodes,
725
+ "experiment_name": args.experiment_name or
726
+ f"{args.experiment}_{args.pair_i}_{args.pair_j}_{args.run_type}",
727
+ }]
728
+ jf = tempfile.NamedTemporaryFile("w", suffix=".json", delete=False)
729
+ json.dump(job, jf); jf.close()
730
+ rt = tempfile.NamedTemporaryFile("w", suffix=".txt", delete=False); rt.close()
731
+ args.batch_jobs_file = jf.name
732
+ args.batch_results_txt = rt.name
733
+ batch_eval_conflict(args)
734
+ print("\n--- results file ---")
735
+ print(pathlib.Path(rt.name).read_text())
736
+
737
+
738
+ def main() -> None:
739
+ args = tyro.cli(Args)
740
+ if args.batch_jobs_file:
741
+ batch_eval_conflict(args)
742
+ else:
743
+ eval_conflict(args)
744
+
745
+
746
+ if __name__ == "__main__":
747
+ main()
code/resume_genie.sh ADDED
@@ -0,0 +1,106 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # Resume an OOM-truncated genie experiment WITHOUT redoing completed runs.
4
+ # Job index is deterministic (seed 42) so a run with index K is the same job
5
+ # regardless of which attempt produced it. We pool every completed ood_<idx>
6
+ # dir across all experiments_partial_*/ + current experiments/, then run ONLY
7
+ # the missing indices in a FRESH low-memory process (won't hit the ~step280 OOM
8
+ # ceiling because it only does the ~70-150 missing runs).
9
+ #
10
+ # Usage: resume_genie.sh <experiment> <gpu>
11
+ ROOT=/workspace/groot_eval
12
+ GENIE="${ROOT}/genie_repo/genie_envisioner"
13
+ CONDA=/opt/miniforge3/condabin/conda
14
+ ENV=genie_envisioner
15
+ exp="${1:?experiment}"; gpu="${2:?gpu}"
16
+ SEED=42; TOTAL=200; SEED_BASE=0; THIRD_SEED=42
17
+ EXPDIR="${ROOT}/results_genie/${exp}/experiments"
18
+ RESULTS_TXT="${ROOT}/results_genie/${exp}/genie_${exp}_ood_seed${SEED}.txt"
19
+ LOG="${ROOT}/logs/genie/resume_${exp}.log"
20
+ WEIGHT="${ROOT}/genie_ckpts/${exp}"; LTX="${ROOT}/LTX-Video"
21
+
22
+ case "${EXPDIR}" in "${ROOT}/results_genie/"*) : ;; *) echo REFUSING; exit 2;; esac
23
+ mkdir -p "${EXPDIR}"
24
+
25
+ # 1) Consolidate: bring one dir per index from every partial backup into EXPDIR
26
+ for bk in "${ROOT}/results_genie/${exp}"/experiments_partial_*/; do
27
+ [ -d "$bk" ] || continue
28
+ for d in "$bk"ood_*/; do
29
+ [ -d "$d" ] || continue
30
+ idx=$(basename "$d" | grep -oE '^ood_[0-9]+')
31
+ ls -d "${EXPDIR}/${idx}_"*/ >/dev/null 2>&1 || cp -r "$d" "${EXPDIR}/"
32
+ done
33
+ done
34
+
35
+ # 2) Full deterministic 400-job list
36
+ python - "$exp" "$SEED" "$TOTAL" "$SEED_BASE" "$THIRD_SEED" > /tmp/jobs_${exp}_full.json <<'PY'
37
+ import random, sys, json, math
38
+ experiment=sys.argv[1]; seed=int(sys.argv[2]); n_episodes=int(sys.argv[3])
39
+ seed_base=int(sys.argv[4]); third_seed=int(sys.argv[5])
40
+ rng=random.Random(seed)
41
+ def _ss(n):
42
+ p=[]
43
+ for a,b in ((0,1),(2,3),(4,5)):
44
+ if a<n and b<n: p+=[(a,b),(b,a)]
45
+ return p
46
+ _SZ={"verb_size","size_object","color_size"}
47
+ _SP={"verb_spatial","color_spatial","spatial_size","spatial_object"}
48
+ if experiment in _SZ: all_pairs=_ss(6)
49
+ elif experiment=="spatial_size": all_pairs=_ss(5)
50
+ elif experiment in _SP: n=5; all_pairs=[(i,j) for i in range(n) for j in range(n) if i!=j]
51
+ else: n=6; all_pairs=[(i,j) for i in range(n) for j in range(n) if i!=j]
52
+ _rt={"verb_color":("verb","color"),"verb_object":("verb","shape"),"verb_size":("verb","size"),
53
+ "verb_spatial":("verb","spatial"),"color_object":("color","shape"),"size_object":("size","shape"),
54
+ "color_size":("color","size"),"color_spatial":("color","spatial"),"spatial_size":("spatial","size"),
55
+ "spatial_object":("spatial","shape")}
56
+ first,second=_rt[experiment]
57
+ raw=[]
58
+ for ep in range(n_episodes):
59
+ i,j=rng.choice(all_pairs); raw.append((i,j,first,ep)); raw.append((i,j,second,ep))
60
+ total=len(raw); num_ep=math.ceil(n_episodes/total)
61
+ jobs=[]
62
+ for k,(i,j,rt,ep) in enumerate(raw):
63
+ idx=k+1; rn=f"ood_{idx:03d}_{experiment}_{i}_{j}_{rt}"
64
+ if experiment=="verb_object": rs=seed_base+ep; ets=ep
65
+ else: rs=seed_base+idx; ets=third_seed
66
+ jobs.append({"index":idx,"pair_i":i,"pair_j":j,"run_type":rt,"seed":rs,
67
+ "third_seed":ets,"num_episodes":num_ep,"experiment_name":rn})
68
+ print(json.dumps(jobs))
69
+ PY
70
+
71
+ # 3) Filter to MISSING indices only
72
+ python - "$exp" "$EXPDIR" > /tmp/jobs_${exp}_missing.json <<'PY'
73
+ import sys, json, os, glob, re
74
+ exp=sys.argv[1]; expdir=sys.argv[2]
75
+ full=json.load(open(f"/tmp/jobs_{exp}_full.json"))
76
+ done=set()
77
+ for d in glob.glob(os.path.join(expdir,"ood_*/")):
78
+ m=re.match(r"ood_(\d+)", os.path.basename(d.rstrip("/")))
79
+ if m: done.add(int(m.group(1)))
80
+ missing=[j for j in full if j["index"] not in done]
81
+ json.dump(missing, open(f"/tmp/jobs_{exp}_missing.json","w"))
82
+ print(f"done={len(done)} missing={len(missing)} total={len(full)}", file=sys.stderr)
83
+ PY
84
+ nmiss=$(python -c "import json;print(len(json.load(open('/tmp/jobs_${exp}_missing.json'))))")
85
+ echo "[$(date +%H:%M:%S)] ${exp}: consolidated done; MISSING=${nmiss}/400 -> resuming on gpu=${gpu}"
86
+ if [ "${nmiss}" -eq 0 ]; then echo "${exp}: already complete (400/400)"; exit 0; fi
87
+
88
+ # 4) Run ONLY missing jobs in a fresh process (hardened cpu config)
89
+ CUDA_VISIBLE_DEVICES="${gpu}" \
90
+ PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True,garbage_collection_threshold:0.6,max_split_size_mb:64 \
91
+ HF_HOME="${ROOT}/.hf_cache" HF_HUB_OFFLINE=1 TRANSFORMERS_OFFLINE=1 \
92
+ TOKENIZERS_PARALLELISM=false NO_ALBUMENTATIONS_UPDATE=1 \
93
+ "${CONDA}" run -n "${ENV}" --no-capture-output \
94
+ python "${GENIE}/main.py" \
95
+ --experiment "${exp}" --weight "${WEIGHT}" \
96
+ --pretrained-model-name-or-path "${LTX}" \
97
+ --domain-name conflict --num-inference-steps 5 --replan-steps 5 \
98
+ --max-episode-steps 300 --sim-backend cpu \
99
+ --experiment-root "${EXPDIR}" \
100
+ --batch-jobs-file /tmp/jobs_${exp}_missing.json \
101
+ --batch-results-txt "${RESULTS_TXT}" \
102
+ >> "${LOG}" 2>&1
103
+ rc=$?
104
+ fin=$(ls -d "${EXPDIR}"/ood_*/ 2>/dev/null | grep -oE 'ood_[0-9]+' | sort -u | wc -l)
105
+ echo "[$(date +%H:%M:%S)] ${exp}: resume rc=${rc} total unique indices now=${fin}/400"
106
+ exit ${rc}
code/run_af_one_ckpt.sh ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # ─────────────────────────────────────────────────────────────────────────────
4
+ # run_af_one_ckpt.sh — evaluate ONE GR00T all-factor checkpoint, 3 seeds,
5
+ # aligned 1:1 with the pi0.5 full-factor protocol, on ONE dedicated GPU.
6
+ #
7
+ # Starts a dedicated GR00T zmq server pinned to <gpu> for the given checkpoint,
8
+ # runs run_full_factor_groot.sh for seed_base ∈ {40,41,42} (sample_n=200,
9
+ # sample_seed=42, 200 episodes, max_episode_steps=500, no_distractor_prob=0.70,
10
+ # cpu sim/render, default difficulty), then stops the server and writes a
11
+ # 3-seed-averaged SUMMARY.txt.
12
+ #
13
+ # Output is written ONLY under results_af/<ckpt>/ — it never touches results/
14
+ # (GR00T conflict) or results_genie/.
15
+ #
16
+ # Usage: run_af_one_ckpt.sh <ckpt_name> <gpu> <port>
17
+ # ckpt_name e.g. all_factor_Lrandom_f50_n400
18
+ # ─────────────────────────────────────────────────────────────────────────────
19
+ ROOT=/workspace/groot_eval
20
+ HARNESS="${ROOT}/harness"
21
+ CKPT="${1:?ckpt_name (dir under gr00t_af_ckpts)}"
22
+ GPU="${2:?gpu}"
23
+ PORT="${3:?port}"
24
+ SEEDS=(${SEEDS_OVERRIDE:-40 41 42})
25
+ SAMPLE_N="${SAMPLE_N:-200}"
26
+ TOTAL_EPISODES="${TOTAL_EPISODES:-200}"
27
+
28
+ MODEL_PATH="${ROOT}/gr00t_af_ckpts/${CKPT}/checkpoint-10000"
29
+ OUT_DIR="${ROOT}/results_af/${CKPT}"
30
+ LOG_DIR="${ROOT}/logs/gr00t_af"
31
+ mkdir -p "${OUT_DIR}" "${LOG_DIR}"
32
+ slog="${LOG_DIR}/server_${CKPT}.log"
33
+
34
+ if [[ ! -d "${MODEL_PATH}" ]]; then
35
+ echo "[${CKPT}] MODEL_PATH not found: ${MODEL_PATH}" ; exit 1
36
+ fi
37
+
38
+ echo "[$(date +%H:%M:%S)] ${CKPT}: starting GR00T server gpu=${GPU} port=${PORT}"
39
+ ( cd "${ROOT}/gr00t_repo/codebase" && CUDA_VISIBLE_DEVICES="${GPU}" \
40
+ HF_HOME="${ROOT}/.hf_cache" HF_TOKEN="$(cat ${ROOT}/.hf_token)" \
41
+ NO_ALBUMENTATIONS_UPDATE=1 TOKENIZERS_PARALLELISM=false \
42
+ "${ROOT}/.venv_groot/bin/python" -m gr00t.eval.run_gr00t_server \
43
+ --model-path "${MODEL_PATH}" \
44
+ --embodiment-tag new_embodiment --device cuda:0 \
45
+ --host 127.0.0.1 --port "${PORT}" ) > "${slog}" 2>&1 &
46
+ spid=$!
47
+
48
+ ok=0
49
+ for _ in $(seq 1 300); do
50
+ kill -0 "${spid}" 2>/dev/null || { echo "[${CKPT}] SERVER DIED during load"; break; }
51
+ grep -q "Server ready\|Server is ready and listening" "${slog}" 2>/dev/null && { ok=1; break; }
52
+ sleep 3
53
+ done
54
+ if [ "${ok}" != "1" ]; then
55
+ echo "[${CKPT}] server not ready; tail server log:"; tail -n 30 "${slog}"
56
+ kill "${spid}" 2>/dev/null; wait "${spid}" 2>/dev/null
57
+ exit 1
58
+ fi
59
+ echo "[$(date +%H:%M:%S)] ${CKPT}: server ready (pid ${spid})"
60
+
61
+ rc_all=0
62
+ for sb in "${SEEDS[@]}"; do
63
+ rt="${OUT_DIR}/full_factor_${CKPT}_seed${sb}.txt"
64
+ echo "[$(date +%H:%M:%S)] ${CKPT}: seed_base=${sb} → ${rt}"
65
+ HOST=127.0.0.1 PORT="${PORT}" SEED_BASE="${sb}" SAMPLE_SEED=42 \
66
+ SIM_BACKEND="${SIM_BACKEND:-gpu}" RENDER_BACKEND="${RENDER_BACKEND:-gpu}" MAX_EPISODE_STEPS=500 \
67
+ NO_DISTRACTOR_PROB=0.70 REPLAN_STEPS=5 \
68
+ CUDA_VISIBLE_DEVICES="${GPU}" \
69
+ VIDEO_ROOT="${OUT_DIR}/videos_seed${sb}" \
70
+ MS_PY="${ROOT}/.venv_ms/bin/python" \
71
+ bash "${HARNESS}/run_full_factor_groot.sh" "${TOTAL_EPISODES}" "${rt}" "${SAMPLE_N}" \
72
+ > "${LOG_DIR}/client_${CKPT}_seed${sb}.log" 2>&1
73
+ src=$?
74
+ [[ "${src}" -ne 0 ]] && rc_all=1
75
+ grep -E "^overall_success" "${rt}" 2>/dev/null || echo "[${CKPT} seed${sb}] no overall_ line"
76
+ done
77
+
78
+ kill "${spid}" 2>/dev/null; wait "${spid}" 2>/dev/null
79
+
80
+ # ── 3-seed average ──
81
+ python3 - "${OUT_DIR}" "${CKPT}" "${SEEDS[@]}" > "${OUT_DIR}/SUMMARY.txt" <<'PY'
82
+ import re, sys
83
+ from pathlib import Path
84
+ out_dir, ckpt, *seeds = sys.argv[1:]
85
+ rates, line = [], []
86
+ for sb in seeds:
87
+ p = Path(out_dir) / f"full_factor_{ckpt}_seed{sb}.txt"
88
+ if not p.exists():
89
+ line.append(f"seed{sb}: MISSING"); continue
90
+ m = re.search(r"overall_success=(\d+)/(\d+) \(([\d.]+)%\)", p.read_text())
91
+ if m:
92
+ s, n, r = int(m.group(1)), int(m.group(2)), float(m.group(3))
93
+ rates.append(r)
94
+ line.append(f"seed{sb}: {s}/{n} ({r:.1f}%)")
95
+ else:
96
+ line.append(f"seed{sb}: PARSE_FAILED")
97
+ avg = sum(rates) / len(rates) if rates else 0.0
98
+ print(f"# {ckpt} — full-factor, TASK-aligned (sample_n=200 seed=42, 200 eps, "
99
+ f"max_steps=500, no_distractor=0.70, default difficulty); "
100
+ f"sim_backend=gpu → 任务/采样/prompt/success 与 pi0.5 一致,但数值非 1:1 可比")
101
+ for l in line:
102
+ print(l)
103
+ print(f"AVG over {len(rates)} seed(s): {avg:.1f}%")
104
+ PY
105
+
106
+ echo "[$(date +%H:%M:%S)] ${CKPT}: DONE rc=${rc_all}"
107
+ cat "${OUT_DIR}/SUMMARY.txt"
108
+ exit ${rc_all}
code/run_af_one_ckpt_fast.sh ADDED
@@ -0,0 +1,104 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # ─────────────────────────────────────────────────────────────────────────────
4
+ # run_af_one_ckpt_fast.sh — method-A (single-process batch) version of
5
+ # run_af_one_ckpt.sh. Starts ONE GR00T server for the ckpt, then runs
6
+ # groot_full_factor_batch.py once per seed (200 cells in one process → no
7
+ # per-cell cold start). Output identical layout, only faster.
8
+ #
9
+ # Usage: run_af_one_ckpt_fast.sh <ckpt_name> <gpu> <port>
10
+ # Env: SEEDS_OVERRIDE ("40" / "40 41 42"), SAMPLE_N (200), TOTAL_EPISODES (200),
11
+ # SIM_BACKEND (gpu), RENDER_BACKEND (gpu)
12
+ # ─────────────────────────────────────────────────────────────────────────────
13
+ ROOT=/workspace/groot_eval
14
+ HARNESS="${ROOT}/harness"
15
+ CKPT="${1:?ckpt_name}"
16
+ GPU="${2:?gpu}"
17
+ PORT="${3:?port}"
18
+ SEEDS=(${SEEDS_OVERRIDE:-40 41 42})
19
+ SAMPLE_N="${SAMPLE_N:-200}"
20
+ TOTAL_EPISODES="${TOTAL_EPISODES:-200}"
21
+ SIM_BACKEND="${SIM_BACKEND:-gpu}"
22
+ RENDER_BACKEND="${RENDER_BACKEND:-gpu}"
23
+ NO_DISTRACTOR_PROB="${NO_DISTRACTOR_PROB:-0.70}"
24
+
25
+ # Auto-detect ckpt layout: either <ckpt>/checkpoint-10000/ or <ckpt>/ directly (HF layout)
26
+ MODEL_PATH="${ROOT}/gr00t_af_ckpts/${CKPT}/checkpoint-10000"
27
+ [[ -d "${MODEL_PATH}" ]] || MODEL_PATH="${ROOT}/gr00t_af_ckpts/${CKPT}"
28
+ OUT_DIR="${RESULTS_ROOT:-${ROOT}/results_af}/${CKPT}"
29
+ LOG_DIR="${ROOT}/logs/gr00t_af"
30
+ mkdir -p "${OUT_DIR}" "${LOG_DIR}"
31
+ slog="${LOG_DIR}/server_fast_${CKPT}_gpu${GPU}.log"
32
+ [[ -d "${MODEL_PATH}" ]] || { echo "[${CKPT}] MODEL_PATH not found: ${MODEL_PATH}"; exit 1; }
33
+ ls "${MODEL_PATH}"/*.safetensors >/dev/null 2>&1 || { echo "[${CKPT}] no safetensors in ${MODEL_PATH}"; exit 1; }
34
+
35
+ echo "[$(date +%H:%M:%S)] ${CKPT}: start GR00T server gpu=${GPU} port=${PORT}"
36
+ ( cd "${ROOT}/gr00t_repo/codebase" && CUDA_VISIBLE_DEVICES="${GPU}" \
37
+ HF_HOME="${ROOT}/.hf_cache" HF_TOKEN="$(cat ${ROOT}/.hf_token)" \
38
+ NO_ALBUMENTATIONS_UPDATE=1 TOKENIZERS_PARALLELISM=false \
39
+ "${ROOT}/.venv_groot/bin/python" -m gr00t.eval.run_gr00t_server \
40
+ --model-path "${MODEL_PATH}" \
41
+ --embodiment-tag new_embodiment --device cuda:0 \
42
+ --host 127.0.0.1 --port "${PORT}" ) > "${slog}" 2>&1 &
43
+ spid=$!
44
+
45
+ ok=0
46
+ for _ in $(seq 1 300); do
47
+ kill -0 "${spid}" 2>/dev/null || { echo "[${CKPT}] SERVER DIED during load"; break; }
48
+ grep -q "Server ready\|Server is ready" "${slog}" 2>/dev/null && { ok=1; break; }
49
+ sleep 3
50
+ done
51
+ [[ "${ok}" == "1" ]] || { echo "[${CKPT}] server not ready"; tail -n 25 "${slog}"; kill "${spid}" 2>/dev/null; exit 1; }
52
+ echo "[$(date +%H:%M:%S)] ${CKPT}: server ready (pid ${spid})"
53
+
54
+ _MS_TORCH_LIB="$("${ROOT}/.venv_ms/bin/python" -c 'import torch,os;print(os.path.join(os.path.dirname(torch.__file__),"lib"))' 2>/dev/null || true)"
55
+ export LD_LIBRARY_PATH="${_MS_TORCH_LIB}:${LD_LIBRARY_PATH:-}"
56
+ export MANISKILL_CONFLICT_ROOT="${MANISKILL_CONFLICT_ROOT:-${ROOT}/genie_repo/maniskill_conflict}"
57
+
58
+ rc_all=0
59
+ for sb in "${SEEDS[@]}"; do
60
+ rt="${OUT_DIR}/full_factor_${CKPT}_seed${sb}.txt"
61
+ echo "[$(date +%H:%M:%S)] ${CKPT}: seed_base=${sb} → ${rt}"
62
+ CUDA_VISIBLE_DEVICES="${GPU}" \
63
+ "${ROOT}/.venv_ms/bin/python" "${HARNESS}/groot_full_factor_batch.py" \
64
+ --host 127.0.0.1 --port "${PORT}" \
65
+ --results-txt "${rt}" \
66
+ --video-root "${OUT_DIR}/videos_seed${sb}" \
67
+ --sample-n "${SAMPLE_N}" --sample-seed 42 --seed-base "${sb}" \
68
+ --total-episodes "${TOTAL_EPISODES}" --max-episode-steps 500 \
69
+ --no-distractor-prob "${NO_DISTRACTOR_PROB}" --replan-steps 5 \
70
+ --sim-backend "${SIM_BACKEND}" --render-backend "${RENDER_BACKEND}" \
71
+ > "${LOG_DIR}/client_fast_${CKPT}_seed${sb}.log" 2>&1
72
+ src=$?
73
+ [[ "${src}" -ne 0 ]] && rc_all=1
74
+ grep -E "^overall_success" "${rt}" 2>/dev/null || echo "[${CKPT} seed${sb}] no overall_ line"
75
+ done
76
+
77
+ kill "${spid}" 2>/dev/null; wait "${spid}" 2>/dev/null
78
+
79
+ python3 - "${OUT_DIR}" "${CKPT}" "${SEEDS[@]}" > "${OUT_DIR}/SUMMARY.txt" <<'PY'
80
+ import re, sys
81
+ from pathlib import Path
82
+ out_dir, ckpt, *seeds = sys.argv[1:]
83
+ rates, line = [], []
84
+ for sb in seeds:
85
+ p = Path(out_dir) / f"full_factor_{ckpt}_seed{sb}.txt"
86
+ if not p.exists():
87
+ line.append(f"seed{sb}: MISSING"); continue
88
+ m = re.search(r"overall_success=(\d+)/(\d+) \(([\d.]+)%\)", p.read_text())
89
+ if m:
90
+ s, n, r = int(m.group(1)), int(m.group(2)), float(m.group(3))
91
+ rates.append(r); line.append(f"seed{sb}: {s}/{n} ({r:.1f}%)")
92
+ else:
93
+ line.append(f"seed{sb}: PARSE_FAILED")
94
+ avg = sum(rates)/len(rates) if rates else 0.0
95
+ print(f"# {ckpt} — full-factor TASK-aligned, single-process batch "
96
+ f"(sample_n=200 seed=42, 200 eps, max_steps=500, no_distractor=0.70, "
97
+ f"default difficulty, sim=gpu)")
98
+ for l in line: print(l)
99
+ print(f"AVG over {len(rates)} seed(s): {avg:.1f}%")
100
+ PY
101
+
102
+ echo "[$(date +%H:%M:%S)] ${CKPT}: DONE rc=${rc_all}"
103
+ cat "${OUT_DIR}/SUMMARY.txt"
104
+ exit ${rc_all}
code/run_all_groot.sh ADDED
@@ -0,0 +1,135 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # ─────────────────────────────────────────────────────────────────────────────
4
+ # run_all_groot.sh — evaluate ALL 10 GR00T conflict checkpoints.
5
+ #
6
+ # One checkpoint per GPU: for each category we start a dedicated GR00T zmq
7
+ # inference server (gr00t venv) pinned to one GPU, then run the ManiSkill OOD
8
+ # sweep (ms venv) on the SAME GPU for GPU physics+render, then stop the server.
9
+ # Up to NUM_GPUS checkpoints run concurrently (processed in waves).
10
+ #
11
+ # Each checkpoint is evaluated on its OWN conflict experiment (category name).
12
+ # Every episode video is saved under
13
+ # ${OUT_ROOT}/<category>/experiments/<run_name>/video/ep000{,_wrist}.mp4
14
+ #
15
+ # Usage:
16
+ # bash run_all_groot.sh [seed] [total_episodes]
17
+ # Defaults: seed=42 total_episodes=200 (→ 400 runs per checkpoint)
18
+ # Override episode count: bash run_all_groot.sh 42 20
19
+ # ─────────────────────────────────────────────────────────────────────────────
20
+
21
+ SEED="${1:-42}"
22
+ TOTAL_EPISODES="${2:-200}"
23
+
24
+ ROOT=/workspace/groot_eval
25
+ HARNESS="${ROOT}/harness"
26
+ CKPT_ROOT="${ROOT}/checkpoints"
27
+ OUT_ROOT="${OUT_ROOT:-${ROOT}/results}"
28
+ LOG_DIR="${ROOT}/logs/run_$(date +%Y%m%d_%H%M%S)"
29
+ GROOT_VENV_PY="${ROOT}/gr00t_repo/codebase/.venv/bin/python"
30
+ GROOT_CODE="${ROOT}/gr00t_repo/codebase"
31
+ MS_PY="${ROOT}/.venv_ms/bin/python"
32
+ NUM_GPUS="${NUM_GPUS:-8}"
33
+ SIM_BACKEND="${SIM_BACKEND:-gpu}"
34
+ BASE_PORT="${BASE_PORT:-5600}"
35
+
36
+ CATEGORIES=(
37
+ color_object color_size color_spatial size_object spatial_object
38
+ spatial_size verb_color verb_object verb_size verb_spatial
39
+ )
40
+
41
+ mkdir -p "${LOG_DIR}" "${OUT_ROOT}"
42
+ echo "seed=${SEED} total_episodes=${TOTAL_EPISODES} sim_backend=${SIM_BACKEND}"
43
+ echo "logs: ${LOG_DIR}"
44
+ echo "results/videos: ${OUT_ROOT}"
45
+
46
+ run_one() {
47
+ local cat="$1" gpu="$2" port="$3"
48
+ local ckpt="${CKPT_ROOT}/${cat}"
49
+ local slog="${LOG_DIR}/server_${cat}.log"
50
+ local clog="${LOG_DIR}/client_${cat}.log"
51
+ local exp_root="${OUT_ROOT}/${cat}/experiments"
52
+ local results_txt="${OUT_ROOT}/${cat}/${cat}_ood_seed${SEED}.txt"
53
+ mkdir -p "${exp_root}" "$(dirname "${results_txt}")"
54
+
55
+ echo "[$(date +%H:%M:%S)] START ${cat} gpu=${gpu} port=${port}"
56
+
57
+ # ── Start GR00T inference server on this GPU ──
58
+ ( cd "${GROOT_CODE}" && CUDA_VISIBLE_DEVICES="${gpu}" \
59
+ HF_HOME="${ROOT}/.hf_cache" HF_TOKEN="$(cat ${ROOT}/.hf_token)" \
60
+ NO_ALBUMENTATIONS_UPDATE=1 TOKENIZERS_PARALLELISM=false \
61
+ "${GROOT_VENV_PY}" -m gr00t.eval.run_gr00t_server \
62
+ --model-path "${ckpt}" \
63
+ --embodiment-tag new_embodiment \
64
+ --device cuda:0 \
65
+ --host 127.0.0.1 \
66
+ --port "${port}" ) > "${slog}" 2>&1 &
67
+ local server_pid=$!
68
+
69
+ # ── Wait until the server is listening (model load can take ~1-2 min) ──
70
+ local ready=0
71
+ for _ in $(seq 1 180); do
72
+ if ! kill -0 "${server_pid}" 2>/dev/null; then
73
+ echo "[${cat}] SERVER DIED during startup — see ${slog}"
74
+ break
75
+ fi
76
+ if grep -q "Server ready\|Server is ready and listening" "${slog}" 2>/dev/null; then
77
+ ready=1; break
78
+ fi
79
+ sleep 3
80
+ done
81
+ if [[ "${ready}" -ne 1 ]]; then
82
+ echo "[${cat}] server not ready; killing. tail server log:"
83
+ tail -n 20 "${slog}" || true
84
+ kill "${server_pid}" 2>/dev/null || true
85
+ wait "${server_pid}" 2>/dev/null || true
86
+ return 1
87
+ fi
88
+ echo "[$(date +%H:%M:%S)] [${cat}] server ready (pid ${server_pid}), starting sweep"
89
+
90
+ # ── Run the OOD sweep on the SAME GPU (ManiSkill GPU physics+render) ──
91
+ CUDA_VISIBLE_DEVICES="${gpu}" \
92
+ HOST=127.0.0.1 PORT="${port}" SIM_BACKEND="${SIM_BACKEND}" \
93
+ EXPERIMENT_ROOT="${exp_root}" GROOT_MAIN="${HARNESS}/groot_main.py" MS_PY="${MS_PY}" \
94
+ bash "${HARNESS}/run_ood_groot_inference.sh" \
95
+ "${cat}" "${SEED}" "${TOTAL_EPISODES}" "${results_txt}" \
96
+ > "${clog}" 2>&1
97
+ local rc=$?
98
+
99
+ # ── Stop the server ──
100
+ kill "${server_pid}" 2>/dev/null || true
101
+ wait "${server_pid}" 2>/dev/null || true
102
+ echo "[$(date +%H:%M:%S)] DONE ${cat} rc=${rc} results=${results_txt}"
103
+ return ${rc}
104
+ }
105
+
106
+ # ── Process in waves of NUM_GPUS (one checkpoint per GPU) ──
107
+ launched=0
108
+ pids=()
109
+ for idx in "${!CATEGORIES[@]}"; do
110
+ cat="${CATEGORIES[$idx]}"
111
+ gpu=$(( launched % NUM_GPUS ))
112
+ port=$(( BASE_PORT + gpu ))
113
+ run_one "${cat}" "${gpu}" "${port}" &
114
+ pids+=($!)
115
+ launched=$(( launched + 1 ))
116
+ if (( launched % NUM_GPUS == 0 )); then
117
+ echo "[$(date +%H:%M:%S)] --- waiting for wave to finish ---"
118
+ for p in "${pids[@]}"; do wait "${p}" || true; done
119
+ pids=()
120
+ fi
121
+ done
122
+ for p in "${pids[@]}"; do wait "${p}" || true; done
123
+
124
+ echo
125
+ echo "================ ALL DONE ================"
126
+ for cat in "${CATEGORIES[@]}"; do
127
+ rt="${OUT_ROOT}/${cat}/${cat}_ood_seed${SEED}.txt"
128
+ if [[ -f "${rt}" ]]; then
129
+ echo "### ${cat}"
130
+ grep -E "^overall_" "${rt}" 2>/dev/null || echo " (no overall_ line — check logs)"
131
+ else
132
+ echo "### ${cat}: MISSING ${rt}"
133
+ fi
134
+ done
135
+ echo "Videos under: ${OUT_ROOT}/<category>/experiments/<run_name>/video/"
code/run_full_factor_groot.sh ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # ─────────────────────────────────────────────────────────────────────────────
4
+ # run_full_factor_groot.sh — GR00T N1.7 full-factor sweep.
5
+ #
6
+ # Cell sampling, instruction format, header and the per-cell / overall result
7
+ # format are COPIED VERBATIM from
8
+ # eval_pi0_5/examples/maniskill_full_factor/run_full_factor_inference.sh
9
+ # so the produced full_factor_<ckpt>_seed<NN>.txt files are directly comparable
10
+ # to the pi0.5 ones. Only the per-cell python call drives a GR00T zmq server
11
+ # (groot_full_factor_main.py) instead of the openpi websocket policy.
12
+ #
13
+ # A GR00T inference server must already be reachable at ${HOST}:${PORT}.
14
+ #
15
+ # Usage:
16
+ # bash run_full_factor_groot.sh [total_episodes] [results_txt_path] [sample_n]
17
+ #
18
+ # Env overrides: HOST PORT SIM_BACKEND RENDER_BACKEND MAX_EPISODE_STEPS
19
+ # SEED_BASE NO_DISTRACTOR_PROB SAMPLE_SEED REPLAN_STEPS
20
+ # MS_PY GROOT_FF_MAIN VIDEO_ROOT MANISKILL_CONFLICT_ROOT
21
+ # pi0.5 protocol values: sample_n=200 sample_seed=42 total_episodes=200
22
+ # max_episode_steps=500 no_distractor_prob=0.70
23
+ # sim/render=cpu seed_base ∈ {40,41,42}
24
+ # ─────────────────────────────────────────────────────────────────────────────
25
+
26
+ TOTAL_EPISODES_TARGET="${1:-200}"
27
+ RESULTS_TXT_PATH="${2:-}"
28
+ SAMPLE_N="${3:-200}"
29
+
30
+ HOST="${HOST:-127.0.0.1}"
31
+ PORT="${PORT:-5555}"
32
+ SIM_BACKEND="${SIM_BACKEND:-cpu}"
33
+ RENDER_BACKEND="${RENDER_BACKEND:-cpu}"
34
+ MAX_EPISODE_STEPS="${MAX_EPISODE_STEPS:-500}"
35
+ SEED_BASE="${SEED_BASE:-40}"
36
+ NO_DISTRACTOR_PROB="${NO_DISTRACTOR_PROB:-0.70}"
37
+ SAMPLE_SEED="${SAMPLE_SEED:-42}"
38
+ REPLAN_STEPS="${REPLAN_STEPS:-5}"
39
+
40
+ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
41
+ MS_PY="${MS_PY:-/workspace/groot_eval/.venv_ms/bin/python}"
42
+ GROOT_FF_MAIN="${GROOT_FF_MAIN:-${SCRIPT_DIR}/groot_full_factor_main.py}"
43
+
44
+ if [[ -z "${RESULTS_TXT_PATH}" ]]; then
45
+ ts="$(date +%Y%m%d_%H%M%S)"
46
+ RESULTS_TXT_PATH="/workspace/groot_eval/results_af/full_factor_ep${TOTAL_EPISODES_TARGET}_sample${SAMPLE_N}_${ts}.txt"
47
+ fi
48
+ mkdir -p "$(dirname "${RESULTS_TXT_PATH}")"
49
+ VIDEO_ROOT="${VIDEO_ROOT:-$(dirname "${RESULTS_TXT_PATH}")/videos_seed${SEED_BASE}}"
50
+
51
+ # ── Generate task list: all 4320 or a random subset of sample_n ──
52
+ # (VERBATIM from pi0.5 run_full_factor_inference.sh)
53
+ mapfile -t TASK_LINES < <(python3 - "${SAMPLE_N}" "${SAMPLE_SEED}" <<'PY'
54
+ import itertools, random, sys
55
+
56
+ VERBS = ["lift","grasp","push","pull","rotate","slide"]
57
+ COLORS = ["red","yellow","blue","orange","green","black"]
58
+ SHAPES = ["cube","sphere","cup","car","pyramid","star"]
59
+ SPATIALS = ["left","right","middle","front","behind"]
60
+ SIZES = ["small","large","smaller","larger"]
61
+
62
+ all_tasks = list(itertools.product(VERBS, COLORS, SHAPES, SPATIALS, SIZES))
63
+ n = int(sys.argv[1])
64
+ seed = int(sys.argv[2])
65
+ if n > 0:
66
+ rng = random.Random(seed)
67
+ rng.shuffle(all_tasks)
68
+ all_tasks = all_tasks[:n]
69
+ for t in all_tasks:
70
+ print(" ".join(t))
71
+ PY
72
+ )
73
+
74
+ TOTAL_CELLS="${#TASK_LINES[@]}"
75
+ NUM_EPISODES="$(python3 -c "import math; print(math.ceil(${TOTAL_EPISODES_TARGET} / ${TOTAL_CELLS}))")"
76
+ echo "sample_n=${SAMPLE_N} → ${TOTAL_CELLS} cells, ${NUM_EPISODES} episodes/cell (target ${TOTAL_EPISODES_TARGET} total)"
77
+
78
+ {
79
+ echo "# Full-factor inference (GR00T N1.7)"
80
+ echo "sample_n=${SAMPLE_N} sample_seed=${SAMPLE_SEED} total_cells=${TOTAL_CELLS}"
81
+ echo "total_episodes_target=${TOTAL_EPISODES_TARGET} num_episodes_per_cell=${NUM_EPISODES}"
82
+ echo "total_episodes_actual=$((TOTAL_CELLS * NUM_EPISODES))"
83
+ echo "host=${HOST} port=${PORT}"
84
+ echo "sim_backend=${SIM_BACKEND} render_backend=${RENDER_BACKEND}"
85
+ echo "max_episode_steps=${MAX_EPISODE_STEPS} seed_base=${SEED_BASE}"
86
+ echo "no_distractor_prob=${NO_DISTRACTOR_PROB} replan_steps=${REPLAN_STEPS}"
87
+ echo
88
+ echo "index verb color shape spatial size prompt successes/total"
89
+ } > "${RESULTS_TXT_PATH}"
90
+
91
+ # ManiSkill C-extensions link libtorch.so — make ms-venv torch libs findable.
92
+ _MS_TORCH_LIB="$("${MS_PY}" -c 'import torch,os;print(os.path.join(os.path.dirname(torch.__file__),"lib"))' 2>/dev/null || true)"
93
+ export LD_LIBRARY_PATH="${_MS_TORCH_LIB}:${LD_LIBRARY_PATH:-}"
94
+ export MANISKILL_CONFLICT_ROOT="${MANISKILL_CONFLICT_ROOT:-/workspace/groot_eval/genie_repo/maniskill_conflict}"
95
+
96
+ total_success=0
97
+ total_episodes_done=0
98
+ i=0
99
+
100
+ for line in "${TASK_LINES[@]}"; do
101
+ read -r verb color shape spatial size <<<"${line}"
102
+ i=$((i + 1))
103
+
104
+ verb_cap="${verb^}"
105
+ case "${spatial}" in
106
+ left) phrase="on the left" ;;
107
+ right) phrase="on the right" ;;
108
+ middle) phrase="in the middle" ;;
109
+ front) phrase="in front" ;;
110
+ behind) phrase="at the back" ;;
111
+ esac
112
+ prompt="${verb_cap} the ${size} ${color} ${shape} ${phrase}."
113
+ seed=$((SEED_BASE + i))
114
+
115
+ echo "[${i}/${TOTAL_CELLS}] ${prompt}"
116
+
117
+ run_log="$(mktemp)"
118
+ "${MS_PY}" "${GROOT_FF_MAIN}" \
119
+ --host "${HOST}" \
120
+ --port "${PORT}" \
121
+ --verb "${verb}" \
122
+ --color "${color}" \
123
+ --shape "${shape}" \
124
+ --spatial "${spatial}" \
125
+ --size "${size}" \
126
+ --num-episodes "${NUM_EPISODES}" \
127
+ --max-episode-steps "${MAX_EPISODE_STEPS}" \
128
+ --sim-backend "${SIM_BACKEND}" \
129
+ --render-backend "${RENDER_BACKEND}" \
130
+ --replan-steps "${REPLAN_STEPS}" \
131
+ --no-distractor-prob "${NO_DISTRACTOR_PROB}" \
132
+ --seed "${seed}" \
133
+ --video-out-path "${VIDEO_ROOT}/${verb}_${size}_${color}_${shape}_${spatial}" \
134
+ 2>&1 | tee "${run_log}"
135
+ py_status="${PIPESTATUS[0]}"
136
+
137
+ if [[ "${py_status}" -ne 0 ]]; then
138
+ echo "${i} ${verb} ${color} ${shape} ${spatial} ${size} ERROR" >> "${RESULTS_TXT_PATH}"
139
+ rm -f "${run_log}"
140
+ echo "Task ${i}/${TOTAL_CELLS} failed. Partial results: ${RESULTS_TXT_PATH}"
141
+ exit "${py_status}"
142
+ fi
143
+
144
+ success_info="$(python3 - "${run_log}" <<'PY'
145
+ import re, sys
146
+ from pathlib import Path
147
+ txt = Path(sys.argv[1]).read_text(encoding="utf-8", errors="ignore")
148
+ m = re.search(r"Success rate:\s*(\d+)\s*/\s*(\d+)", txt)
149
+ print(f"{m.group(1)} {m.group(2)}" if m else "NA NA")
150
+ PY
151
+ )"
152
+ rm -f "${run_log}"
153
+
154
+ read -r ep_succ ep_total <<<"${success_info}"
155
+ if [[ "${ep_succ}" == "NA" ]]; then
156
+ cell_result="NA"
157
+ else
158
+ total_success=$((total_success + ep_succ))
159
+ total_episodes_done=$((total_episodes_done + ep_total))
160
+ cell_result="${ep_succ}/${ep_total}"
161
+ fi
162
+
163
+ echo "${i} ${verb} ${color} ${shape} ${spatial} ${size} \"${prompt}\" ${cell_result}" >> "${RESULTS_TXT_PATH}"
164
+ done
165
+
166
+ overall_rate="$(python3 -c "
167
+ s, n = ${total_success}, ${total_episodes_done}
168
+ print(f'{100.0*s/n:.1f}' if n > 0 else '0.0')
169
+ ")"
170
+
171
+ {
172
+ echo
173
+ echo "overall_success=${total_success}/${total_episodes_done} (${overall_rate}%)"
174
+ } >> "${RESULTS_TXT_PATH}"
175
+
176
+ echo ""
177
+ echo "Done: ${total_episodes_done} episodes across ${TOTAL_CELLS} cells"
178
+ echo "Overall: ${total_success}/${total_episodes_done} (${overall_rate}%)"
179
+ echo "Results: ${RESULTS_TXT_PATH}"
code/run_groot_one_ckpt.sh ADDED
@@ -0,0 +1,127 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # ─────────────────────────────────────────────────────────────────────────────
4
+ # run_groot_one_ckpt.sh — evaluate ONE GR00T ckpt on the HARD pairwise grid
5
+ # (color_size or color_spatial), ONE GPU, ONE or more seeds. Mirrors
6
+ # run_pi0_one_ckpt.sh structure; policy=GR00T zmq server (gr00t venv).
7
+ #
8
+ # Speed-matched to pi0: MAX_EPISODE_STEPS=150, REPLAN_STEPS=10, gpu-sim.
9
+ # Output ONLY under results_gr00t_pair_color_size/<ckpt>/ (never touches
10
+ # canonical results/ or genie's results_af/).
11
+ #
12
+ # Usage: run_groot_one_ckpt.sh <ckpt_name> <gpu> <port>
13
+ # ─────────────────────────────────────────────────────────────────────────────
14
+ ROOT=/workspace/groot_eval
15
+ HARNESS="${ROOT}/harness"
16
+ SIM_ROOT=/workspace/eval_simulation/simulation
17
+ CKPT="${1:?ckpt_name (dir under /workspace/gr00t_pair_ckpt)}"
18
+ GPU="${2:?gpu}"
19
+ PORT="${3:?port}"
20
+ SEEDS=(${SEEDS_OVERRIDE:-42 40 41})
21
+ TASK_DIFFICULTY="${TASK_DIFFICULTY:-1.5}"
22
+ SIM_BACKEND="${SIM_BACKEND:-gpu}"
23
+ MAX_EPISODE_STEPS="${MAX_EPISODE_STEPS:-150}"
24
+ REPLAN_STEPS="${REPLAN_STEPS:-10}"
25
+ TARGET_EPISODES="${TARGET_EPISODES:-200}"
26
+ COLOR_SIZE_MODE="${COLOR_SIZE_MODE:-hard}"
27
+
28
+ MODEL_DIR="/workspace/gr00t_pair_ckpt/${CKPT}"
29
+ # OUT_DIR depends on parsed EXPERIMENT (set just below); we re-set it after parsing.
30
+ LOG_DIR="${ROOT}/logs/gr00t_pair"
31
+ [[ -d "${MODEL_DIR}" ]] || { echo "[${CKPT}] MODEL_DIR not found: ${MODEL_DIR}"; exit 1; }
32
+
33
+ # experiment from ckpt name (longest matching pair prefix)
34
+ EXPERIMENT="$(python3 - "${CKPT}" <<'PY'
35
+ import sys
36
+ name = sys.argv[1]
37
+ exps = ["color_spatial","color_size","color_object","spatial_size","spatial_object",
38
+ "size_object","verb_spatial","verb_object","verb_color","verb_size"]
39
+ hit = [e for e in exps if name.startswith(e)]
40
+ print(max(hit, key=len) if hit else "")
41
+ PY
42
+ )"
43
+ [[ -n "${EXPERIMENT}" ]] || { echo "[${CKPT}] cannot parse experiment from name"; exit 1; }
44
+ # OUT_DIR: experiment-aware; color_size_easy goes to a separate dir so HARD/EASY don't collide
45
+ if [[ "${EXPERIMENT}" == "color_size" && "${COLOR_SIZE_MODE}" == "easy" ]]; then
46
+ OUT_DIR="${ROOT}/results_gr00t_pair_color_size_easy/${CKPT}"
47
+ else
48
+ OUT_DIR="${ROOT}/results_gr00t_pair_${EXPERIMENT}/${CKPT}"
49
+ fi
50
+ mkdir -p "${OUT_DIR}" "${LOG_DIR}"
51
+ slog="${LOG_DIR}/server_${CKPT}_gpu${GPU}.log"
52
+ echo "[$(date +%H:%M:%S)] ${CKPT}: experiment=${EXPERIMENT} gpu=${GPU} port=${PORT} difficulty=${TASK_DIFFICULTY} sim=${SIM_BACKEND}"
53
+
54
+ # start GR00T zmq inference server (uses GPU)
55
+ GROOT_VENV_PY="${ROOT}/.venv_groot/bin/python"
56
+ GROOT_CODE="${ROOT}/gr00t_repo/codebase"
57
+ HF_TOKEN_FILE="${ROOT}/.hf_token"
58
+ HF_TOKEN_ARG=""
59
+ [[ -f "${HF_TOKEN_FILE}" ]] && HF_TOKEN_ARG="$(cat ${HF_TOKEN_FILE})"
60
+ ( cd "${GROOT_CODE}" && CUDA_VISIBLE_DEVICES="${GPU}" \
61
+ HF_HOME="${ROOT}/.hf_cache" HF_TOKEN="${HF_TOKEN_ARG}" \
62
+ NO_ALBUMENTATIONS_UPDATE=1 TOKENIZERS_PARALLELISM=false \
63
+ "${GROOT_VENV_PY}" -m gr00t.eval.run_gr00t_server \
64
+ --model-path "${MODEL_DIR}" \
65
+ --embodiment-tag new_embodiment \
66
+ --device cuda:0 \
67
+ --host 127.0.0.1 \
68
+ --port "${PORT}" ) > "${slog}" 2>&1 &
69
+ spid=$!
70
+ ok=0
71
+ for _ in $(seq 1 200); do
72
+ kill -0 "${spid}" 2>/dev/null || { echo "[${CKPT}] SERVER DIED during load"; break; }
73
+ grep -qE "Server ready|Server is ready and listening|listening on" "${slog}" 2>/dev/null && { ok=1; break; }
74
+ sleep 3
75
+ done
76
+ [[ "${ok}" == "1" ]] || { echo "[${CKPT}] server not ready"; tail -n 25 "${slog}"; kill -9 "${spid}" 2>/dev/null; exit 1; }
77
+ echo "[$(date +%H:%M:%S)] ${CKPT}: GR00T server ready (pid ${spid})"
78
+
79
+ export MANISKILL_CONFLICT_ROOT="${SIM_ROOT}"
80
+ MS_PY="${ROOT}/.venv_ms/bin/python"
81
+ [[ -x "${MS_PY}" ]] || MS_PY="/venv/pi05_ms/bin/python"
82
+ _MS_TORCH_LIB="$(${MS_PY} -c 'import torch,os;print(os.path.join(os.path.dirname(torch.__file__),"lib"))' 2>/dev/null || true)"
83
+ export LD_LIBRARY_PATH="${_MS_TORCH_LIB}:${LD_LIBRARY_PATH:-}"
84
+
85
+ rc_all=0
86
+ for sb in "${SEEDS[@]}"; do
87
+ rt="${OUT_DIR}/gr00t_${EXPERIMENT}_${CKPT}_seed${sb}.txt"
88
+ echo "[$(date +%H:%M:%S)] ${CKPT}: seed${sb} experiment=${EXPERIMENT} → ${rt}"
89
+ CUDA_VISIBLE_DEVICES="${GPU}" SIM_ROOT="${SIM_ROOT}" \
90
+ "${MS_PY}" "${HARNESS}/groot_grid_eval.py" \
91
+ --experiment "${EXPERIMENT}" --host 127.0.0.1 --port "${PORT}" \
92
+ --seed "${sb}" --sim-backend "${SIM_BACKEND}" \
93
+ --task-difficulty "${TASK_DIFFICULTY}" \
94
+ --max-episode-steps "${MAX_EPISODE_STEPS}" --replan-steps "${REPLAN_STEPS}" \
95
+ --target-episodes "${TARGET_EPISODES}" \
96
+ ${MAX_CELLS:+--max-cells "${MAX_CELLS}"} \
97
+ --results-txt "${rt}" \
98
+ > "${LOG_DIR}/client_${CKPT}_seed${sb}.log" 2>&1
99
+ src=$?
100
+ [[ "${src}" -ne 0 ]] && rc_all=1
101
+ grep -E "^overall_" "${rt}" 2>/dev/null || echo "[${CKPT} seed${sb}] no overall_ line (see client log)"
102
+ done
103
+
104
+ kill -9 "${spid}" 2>/dev/null; pkill -9 -P "${spid}" 2>/dev/null
105
+
106
+ python3 - "${OUT_DIR}" "${EXPERIMENT}" "${CKPT}" "${SEEDS[@]}" > "${OUT_DIR}/SUMMARY.txt" <<'PY'
107
+ import re, sys
108
+ from pathlib import Path
109
+ out_dir, exp, ckpt, *seeds = sys.argv[1:]
110
+ acc = {}
111
+ for sb in seeds:
112
+ p = Path(out_dir) / f"gr00t_{exp}_{ckpt}_seed{sb}.txt"
113
+ if not p.exists():
114
+ print(f"seed{sb}: MISSING"); continue
115
+ txt = p.read_text()
116
+ line = []
117
+ for m in re.finditer(r"^(overall_\w+)=(\d+)/(\d+) \(([\d.]+)%\)", txt, re.M):
118
+ k, _s, _n, r = m.group(1), m.group(2), m.group(3), float(m.group(4))
119
+ acc.setdefault(k, []).append(r); line.append(f"{k}={r:.1f}%")
120
+ print(f"seed{sb}: " + " ".join(line) if line else f"seed{sb}: PARSE_FAILED")
121
+ print(f"\n# {ckpt} experiment={exp} (gr00t HARD-def, {len(seeds)} seeds)")
122
+ for k, v in acc.items():
123
+ print(f"AVG {k} = {sum(v)/len(v):.1f}% (n={len(v)} seeds)")
124
+ PY
125
+ echo "[$(date +%H:%M:%S)] ${CKPT}: DONE rc=${rc_all}"
126
+ cat "${OUT_DIR}/SUMMARY.txt"
127
+ exit ${rc_all}
code/run_one_cat.sh ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # Evaluate ONE GR00T checkpoint on its own conflict experiment.
4
+ # Starts a dedicated GR00T zmq server on the given GPU, runs the OOD sweep on
5
+ # the same GPU (ManiSkill GPU physics+render), then stops the server.
6
+ #
7
+ # Usage: run_one_cat.sh <category> <gpu> <port> [seed=42] [total_episodes=200]
8
+ ROOT=/workspace/groot_eval
9
+ HARNESS="${ROOT}/harness"
10
+ cat="${1:?category}"
11
+ gpu="${2:?gpu}"
12
+ port="${3:?port}"
13
+ SEED="${4:-42}"
14
+ TOTAL="${5:-200}"
15
+ OUT_ROOT="${OUT_ROOT:-${ROOT}/results}"
16
+ LOG_DIR="${ROOT}/logs/tmux"
17
+ mkdir -p "${LOG_DIR}"
18
+ slog="${LOG_DIR}/server_${cat}.log"
19
+ clog="${LOG_DIR}/client_${cat}.log"
20
+ exp_root="${OUT_ROOT}/${cat}/experiments"
21
+ results_txt="${OUT_ROOT}/${cat}/${cat}_ood_seed${SEED}.txt"
22
+ mkdir -p "${exp_root}" "$(dirname "${results_txt}")"
23
+
24
+ echo "[$(date +%H:%M:%S)] ${cat}: starting GR00T server gpu=${gpu} port=${port}"
25
+ ( cd "${ROOT}/gr00t_repo/codebase" && CUDA_VISIBLE_DEVICES="${gpu}" \
26
+ HF_HOME="${ROOT}/.hf_cache" HF_TOKEN="$(cat ${ROOT}/.hf_token)" \
27
+ NO_ALBUMENTATIONS_UPDATE=1 TOKENIZERS_PARALLELISM=false \
28
+ "${ROOT}/.venv_groot/bin/python" -m gr00t.eval.run_gr00t_server \
29
+ --model-path "${ROOT}/checkpoints/${cat}" \
30
+ --embodiment-tag new_embodiment --device cuda:0 \
31
+ --host 127.0.0.1 --port "${port}" ) > "${slog}" 2>&1 &
32
+ spid=$!
33
+
34
+ ok=0
35
+ for _ in $(seq 1 300); do
36
+ kill -0 "${spid}" 2>/dev/null || { echo "[${cat}] SERVER DIED during load"; break; }
37
+ grep -q "Server ready\|Server is ready and listening" "${slog}" 2>/dev/null && { ok=1; break; }
38
+ sleep 3
39
+ done
40
+ if [ "${ok}" != "1" ]; then
41
+ echo "[${cat}] server not ready; tail server log:"; tail -n 30 "${slog}"
42
+ kill "${spid}" 2>/dev/null; wait "${spid}" 2>/dev/null
43
+ exit 1
44
+ fi
45
+ echo "[$(date +%H:%M:%S)] ${cat}: server ready (pid ${spid}); running OOD sweep (seed=${SEED} total=${TOTAL})"
46
+
47
+ CUDA_VISIBLE_DEVICES="${gpu}" \
48
+ HOST=127.0.0.1 PORT="${port}" SIM_BACKEND=gpu \
49
+ EXPERIMENT_ROOT="${exp_root}" GROOT_MAIN="${HARNESS}/groot_main.py" \
50
+ MS_PY="${ROOT}/.venv_ms/bin/python" \
51
+ MANISKILL_CONFLICT_ROOT="${ROOT}/genie_repo/maniskill_conflict" \
52
+ bash "${HARNESS}/run_ood_groot_inference.sh" "${cat}" "${SEED}" "${TOTAL}" "${results_txt}" \
53
+ > "${clog}" 2>&1
54
+ rc=$?
55
+
56
+ kill "${spid}" 2>/dev/null; wait "${spid}" 2>/dev/null
57
+ echo "[$(date +%H:%M:%S)] ${cat}: DONE rc=${rc} results=${results_txt}"
58
+ grep -E "^overall_" "${results_txt}" 2>/dev/null || echo "[${cat}] (no overall_ line — check ${clog})"
59
+ exit ${rc}
code/run_one_genie.sh ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # Evaluate ONE Genie-Envisioner (GE-Act) checkpoint on its conflict experiment.
4
+ # genie main.py loads MVActor in-process (NO separate server) and runs the
5
+ # full OOD sweep in batch mode on a single dedicated GPU.
6
+ #
7
+ # Usage: run_one_genie.sh <experiment> <gpu> [seed=42] [total=200] [sim_backend=cpu]
8
+ #
9
+ # Output isolation (MUST NOT touch GR00T's results/):
10
+ # results_genie/<exp>/experiments/<run>/video/ep###.mp4 (+ _wrist) + success_rate.txt
11
+ ROOT=/workspace/groot_eval
12
+ GENIE="${ROOT}/genie_repo/genie_envisioner"
13
+ CONDA=/opt/miniforge3/condabin/conda
14
+ ENV_NAME=genie_envisioner
15
+
16
+ exp="${1:?experiment}"
17
+ gpu="${2:?gpu}"
18
+ SEED="${3:-42}"
19
+ TOTAL="${4:-200}"
20
+ SIM_BACKEND="${5:-cpu}"
21
+
22
+ WEIGHT="${ROOT}/genie_ckpts/${exp}"
23
+ LTX_MODEL="${ROOT}/LTX-Video"
24
+ EXP_ROOT="${ROOT}/results_genie/${exp}/experiments"
25
+ RESULTS_TXT="${ROOT}/results_genie/${exp}/genie_${exp}_ood_seed${SEED}.txt"
26
+ LOG_DIR="${ROOT}/logs/genie"
27
+ clog="${LOG_DIR}/client_${exp}.log"
28
+
29
+ # ── Safety guard: never write into GR00T's results/ ──────────────────────────
30
+ case "${EXP_ROOT}" in
31
+ "${ROOT}/results_genie/"*) : ;;
32
+ *) echo "REFUSING: EXPERIMENT_ROOT not under results_genie/ (${EXP_ROOT})"; exit 2 ;;
33
+ esac
34
+ [ -d "${WEIGHT}" ] || { echo "missing checkpoint dir ${WEIGHT}"; exit 1; }
35
+ [ -f "${WEIGHT}/diffusion_pytorch_model.safetensors" ] || { echo "missing safetensors in ${WEIGHT}"; exit 1; }
36
+ [ -d "${LTX_MODEL}/text_encoder" ] || { echo "missing LTX-Video at ${LTX_MODEL}"; exit 1; }
37
+
38
+ mkdir -p "${EXP_ROOT}" "$(dirname "${RESULTS_TXT}")" "${LOG_DIR}"
39
+
40
+ echo "[$(date +%H:%M:%S)] ${exp}: genie sweep gpu=${gpu} sim=${SIM_BACKEND} seed=${SEED} total=${TOTAL}"
41
+ echo "[$(date +%H:%M:%S)] ${exp}: weight=${WEIGHT} out=${EXP_ROOT}"
42
+
43
+ CUDA_VISIBLE_DEVICES="${gpu}" \
44
+ PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True,garbage_collection_threshold:0.6,max_split_size_mb:64 \
45
+ HF_HOME="${ROOT}/.hf_cache" HF_HUB_OFFLINE=1 TRANSFORMERS_OFFLINE=1 \
46
+ TOKENIZERS_PARALLELISM=false NO_ALBUMENTATIONS_UPDATE=1 \
47
+ WEIGHT="${WEIGHT}" LTX_MODEL="${LTX_MODEL}" \
48
+ SIM_BACKEND="${SIM_BACKEND}" EXPERIMENT_ROOT="${EXP_ROOT}" \
49
+ "${CONDA}" run -n "${ENV_NAME}" --no-capture-output \
50
+ bash "${GENIE}/run_ood_experiment_inference.sh" \
51
+ "${exp}" "${SEED}" "${TOTAL}" "${RESULTS_TXT}" \
52
+ > "${clog}" 2>&1
53
+ rc=$?
54
+
55
+ echo "[$(date +%H:%M:%S)] ${exp}: DONE rc=${rc} results=${RESULTS_TXT}"
56
+ grep -E "^overall_|FDR" "${RESULTS_TXT}" 2>/dev/null | tail -3 || echo "[${exp}] (检查 ${clog})"
57
+ exit ${rc}
code/run_ood_groot_inference.sh ADDED
@@ -0,0 +1,179 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ # ─────────────────────────────────────────────────────────────────────────────
4
+ # run_ood_groot_inference.sh (GR00T N1.7 version)
5
+ #
6
+ # Mirrors genie_envisioner/run_ood_experiment_inference.sh EXACTLY (same job
7
+ # generation / pair+seed sampling / results format) but the policy is a
8
+ # fine-tuned GR00T N1.7 checkpoint served over zmq by run_gr00t_server.py.
9
+ #
10
+ # The GR00T inference server must already be running and reachable at
11
+ # ${HOST}:${PORT} (run_all_groot.sh starts/stops one per checkpoint).
12
+ #
13
+ # Usage:
14
+ # bash run_ood_groot_inference.sh <experiment> [seed] [total_episodes] [results_txt_path]
15
+ #
16
+ # experiment:
17
+ # verb_color | verb_object | color_object | verb_size | verb_spatial |
18
+ # size_object | color_size | color_spatial | spatial_size | spatial_object
19
+ #
20
+ # seed (default: 42) RNG seed for pair / third-factor / episode seeds
21
+ # total_episodes (default: 200) #(i,j) pairs sampled; total_runs = 2 × this
22
+ # results_txt_path summary log (default: auto-timestamped)
23
+ #
24
+ # Env vars:
25
+ # HOST 127.0.0.1 PORT 5555 GR00T server address
26
+ # SIM_BACKEND gpu ManiSkill physics+render backend
27
+ # MAX_EPISODE_STEPS 300 REPLAN_STEPS 5
28
+ # SEED_BASE 0
29
+ # EXPERIMENT_ROOT data/conflict_groot/experiments (videos saved here)
30
+ # GROOT_MAIN path to groot_main.py
31
+ # MS_PY python interpreter of the ManiSkill venv
32
+ # ─────────────────────────────────────────────────────────────────────────────
33
+
34
+ EXPERIMENT="${1:-}"
35
+ SEED="${2:-42}"
36
+ TOTAL_EPISODES_TARGET="${3:-200}"
37
+ RESULTS_TXT_PATH="${4:-}"
38
+ THIRD_SEED="${SEED}"
39
+
40
+ if [[ -z "${EXPERIMENT}" ]]; then
41
+ echo "Usage: $0 <experiment> [seed] [total_episodes] [results_txt_path]"
42
+ exit 1
43
+ fi
44
+ case "${EXPERIMENT}" in
45
+ verb_color|verb_object|color_object|verb_size|verb_spatial|\
46
+ size_object|color_size|color_spatial|spatial_size|spatial_object) ;;
47
+ *) echo "Unsupported experiment: ${EXPERIMENT}"; exit 1 ;;
48
+ esac
49
+ if ! [[ "${TOTAL_EPISODES_TARGET}" =~ ^[0-9]+$ ]] || [[ "${TOTAL_EPISODES_TARGET}" -le 0 ]]; then
50
+ echo "total_episodes must be a positive integer"; exit 1
51
+ fi
52
+
53
+ HOST="${HOST:-127.0.0.1}"
54
+ PORT="${PORT:-5555}"
55
+ SIM_BACKEND="${SIM_BACKEND:-gpu}"
56
+ MAX_EPISODE_STEPS="${MAX_EPISODE_STEPS:-300}"
57
+ REPLAN_STEPS="${REPLAN_STEPS:-5}"
58
+ SEED_BASE="${SEED_BASE:-0}"
59
+ EXPERIMENT_ROOT="${EXPERIMENT_ROOT:-data/conflict_groot/experiments}"
60
+ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
61
+ GROOT_MAIN="${GROOT_MAIN:-${SCRIPT_DIR}/groot_main.py}"
62
+ MS_PY="${MS_PY:-/workspace/groot_eval/.venv_ms/bin/python}"
63
+
64
+ if [[ -z "${RESULTS_TXT_PATH}" ]]; then
65
+ ts="$(date +%Y%m%d_%H%M%S)"
66
+ RESULTS_TXT_PATH="${EXPERIMENT_ROOT}/${EXPERIMENT}_ood_${ts}.txt"
67
+ fi
68
+ mkdir -p "$(dirname "${RESULTS_TXT_PATH}")"
69
+
70
+ # ── Generate jobs JSON — VERBATIM logic from genie run_ood_experiment_inference.sh ──
71
+ JOBS_JSON="$(mktemp --suffix=.json)"
72
+ python3 - "${EXPERIMENT}" "${SEED}" "${TOTAL_EPISODES_TARGET}" "${SEED_BASE}" "${THIRD_SEED}" <<'PY' > "${JOBS_JSON}"
73
+ import random, sys, json, math
74
+ experiment = sys.argv[1]
75
+ seed = int(sys.argv[2])
76
+ n_episodes = int(sys.argv[3])
77
+ seed_base = int(sys.argv[4])
78
+ third_seed = int(sys.argv[5])
79
+ rng = random.Random(seed)
80
+ def _size_swap(n_size):
81
+ p = []
82
+ for a, b in ((0,1),(2,3),(4,5)):
83
+ if a < n_size and b < n_size:
84
+ p += [(a,b),(b,a)]
85
+ return p
86
+ _SIZE_EXPS = {"verb_size", "size_object", "color_size"}
87
+ _SPATIAL_EXPS = {"verb_spatial", "color_spatial", "spatial_size", "spatial_object"}
88
+ if experiment in _SIZE_EXPS:
89
+ all_pairs = _size_swap(6)
90
+ elif experiment == "spatial_size":
91
+ all_pairs = _size_swap(5)
92
+ elif experiment in _SPATIAL_EXPS:
93
+ n = 5
94
+ all_pairs = [(i,j) for i in range(n) for j in range(n) if i != j]
95
+ else:
96
+ n = 6
97
+ all_pairs = [(i,j) for i in range(n) for j in range(n) if i != j]
98
+ _run_types = {
99
+ "verb_color":("verb","color"), "verb_object":("verb","shape"),
100
+ "verb_size":("verb","size"), "verb_spatial":("verb","spatial"),
101
+ "color_object":("color","shape"), "size_object":("size","shape"),
102
+ "color_size":("color","size"), "color_spatial":("color","spatial"),
103
+ "spatial_size":("spatial","size"), "spatial_object":("spatial","shape"),
104
+ }
105
+ first, second = _run_types[experiment]
106
+ raw_jobs = []
107
+ for ep_idx in range(n_episodes):
108
+ i, j = rng.choice(all_pairs)
109
+ raw_jobs.append((i, j, first, ep_idx))
110
+ raw_jobs.append((i, j, second, ep_idx))
111
+ total = len(raw_jobs)
112
+ num_episodes = math.ceil(n_episodes / total)
113
+ jobs = []
114
+ for k, (i, j, run_type, ep_idx) in enumerate(raw_jobs):
115
+ idx = k + 1
116
+ run_name = f"ood_{idx:03d}_{experiment}_{i}_{j}_{run_type}"
117
+ if experiment == "verb_object":
118
+ run_seed = seed_base + ep_idx
119
+ ep_third_seed = ep_idx
120
+ else:
121
+ run_seed = seed_base + idx
122
+ ep_third_seed = third_seed
123
+ jobs.append({
124
+ "index": idx, "pair_i": i, "pair_j": j, "run_type": run_type,
125
+ "seed": run_seed, "third_seed": ep_third_seed,
126
+ "num_episodes": num_episodes, "experiment_name": run_name,
127
+ })
128
+ print(json.dumps(jobs))
129
+ PY
130
+
131
+ read -r TOTAL NUM_EPISODES < <(python3 - "${JOBS_JSON}" <<'PY'
132
+ import json, sys
133
+ jobs = json.loads(open(sys.argv[1]).read())
134
+ print(len(jobs), jobs[0]["num_episodes"] if jobs else 1)
135
+ PY
136
+ )
137
+ echo "Requested ${TOTAL_EPISODES_TARGET} total episodes across ${TOTAL} runs → ${NUM_EPISODES} eps/run (actual: $((TOTAL * NUM_EPISODES)))"
138
+
139
+ {
140
+ echo "# OOD pairwise inference summary (GR00T N1.7)"
141
+ echo "experiment=${EXPERIMENT}"
142
+ echo "seed=${SEED}"
143
+ echo "total_episodes_target=${TOTAL_EPISODES_TARGET}"
144
+ echo "num_episodes_per_run=${NUM_EPISODES}"
145
+ echo "total_runs=${TOTAL}"
146
+ echo "total_episodes_actual=$((TOTAL * NUM_EPISODES))"
147
+ echo "third_seed=${THIRD_SEED}"
148
+ echo "groot_server=${HOST}:${PORT}"
149
+ echo "sim_backend=${SIM_BACKEND}"
150
+ echo "max_episode_steps=${MAX_EPISODE_STEPS}"
151
+ echo "replan_steps=${REPLAN_STEPS}"
152
+ echo "seed_base=${SEED_BASE}"
153
+ echo
154
+ echo "index pair_i pair_j run_type success run_name"
155
+ } > "${RESULTS_TXT_PATH}"
156
+
157
+ # ManiSkill C-extensions (fast_kinematics/mplib) link libtorch.so — make the
158
+ # ms-venv torch libs discoverable regardless of caller.
159
+ _MS_TORCH_LIB="$("${MS_PY}" -c 'import torch,os;print(os.path.join(os.path.dirname(torch.__file__),"lib"))' 2>/dev/null || true)"
160
+ export LD_LIBRARY_PATH="${_MS_TORCH_LIB}:${LD_LIBRARY_PATH:-}"
161
+ export MANISKILL_CONFLICT_ROOT="${MANISKILL_CONFLICT_ROOT:-/workspace/groot_eval/genie_repo/maniskill_conflict}"
162
+
163
+ "${MS_PY}" "${GROOT_MAIN}" \
164
+ --experiment "${EXPERIMENT}" \
165
+ --host "${HOST}" \
166
+ --port "${PORT}" \
167
+ --replan-steps "${REPLAN_STEPS}" \
168
+ --max-episode-steps "${MAX_EPISODE_STEPS}" \
169
+ --sim-backend "${SIM_BACKEND}" \
170
+ --experiment-root "${EXPERIMENT_ROOT}" \
171
+ --batch-jobs-file "${JOBS_JSON}" \
172
+ --batch-results-txt "${RESULTS_TXT_PATH}"
173
+ py_status=$?
174
+ rm -f "${JOBS_JSON}"
175
+ if [[ "${py_status}" -ne 0 ]]; then
176
+ echo "Batch eval failed (exit ${py_status}); partial results in ${RESULTS_TXT_PATH}"
177
+ exit "${py_status}"
178
+ fi
179
+ echo "Saved summary to ${RESULTS_TXT_PATH}"
code/run_pi0_ckpt_3seed.sh ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # ─────────────────────────────────────────────────────────────────────────────
4
+ # run_pi0_ckpt_3seed.sh — ONE pi0 ckpt, ONE GPU, GR00T conflict definition,
5
+ # 200 episodes × seeds {40,41,42}, server loaded ONCE, 3-seed average.
6
+ #
7
+ # GR00T def = run_ood_groot_inference.sh + pi0_pairwise_main.py
8
+ # (= groot_main.py mirror, policy=pi0 openpi websocket). Always-distractor,
9
+ # dual-axis (overall_color_success / overall_size|spatial_success).
10
+ # sim_backend=cpu (pi0+GPU-sim → CUDA illegal access).
11
+ #
12
+ # Usage: run_pi0_ckpt_3seed.sh <ckpt> <gpu> [port]
13
+ # Env: SEEDS_OVERRIDE ("42" for smoke), TOTAL_EPISODES (200)
14
+ # ─────────────────────────────────────────────────────────────────────────────
15
+ ROOT=/workspace/groot_eval
16
+ HARNESS="${ROOT}/harness"
17
+ SIM_ROOT=/workspace/eval_simulation/simulation
18
+ CKPT="${1:?ckpt}"
19
+ GPU="${2:?gpu}"
20
+ PORT="${3:-$((8300 + GPU))}"
21
+ STEP="${STEP:-17999}"
22
+ SEEDS=(${SEEDS_OVERRIDE:-40 41 42})
23
+ TOTAL_EPISODES="${TOTAL_EPISODES:-200}"
24
+ SIM_BACKEND="${SIM_BACKEND:-cpu}"
25
+ MAX_EPISODE_STEPS="${MAX_EPISODE_STEPS:-150}"
26
+ REPLAN_STEPS="${REPLAN_STEPS:-10}"
27
+
28
+ MODEL_DIR="/workspace/pi0_ckpt/${CKPT}/${STEP}"
29
+ OUT_DIR="${ROOT}/results_pi0_gr00tdef/${CKPT}"
30
+ LOG_DIR="${ROOT}/logs/pi0_pairwise"
31
+ mkdir -p "${OUT_DIR}" "${LOG_DIR}"
32
+ slog="${LOG_DIR}/srv_${CKPT}_g${GPU}.log"
33
+ [[ -d "${MODEL_DIR}" ]] || { echo "[${CKPT}] MODEL_DIR not found"; exit 1; }
34
+
35
+ EXPERIMENT="$(python3 - "${CKPT}" <<'PY'
36
+ import sys
37
+ n=sys.argv[1]
38
+ e=["spatial_object","spatial_size","color_spatial","color_object","color_size",
39
+ "verb_spatial","verb_object","verb_color","verb_size","size_object"]
40
+ h=[x for x in e if n.startswith(x)]
41
+ print(max(h,key=len) if h else "")
42
+ PY
43
+ )"
44
+ [[ -n "${EXPERIMENT}" ]] || { echo "[${CKPT}] cannot parse experiment"; exit 1; }
45
+ echo "[$(date +%H:%M:%S)] ${CKPT}: exp=${EXPERIMENT} gpu=${GPU} port=${PORT} seeds=${SEEDS[*]} ${TOTAL_EPISODES}ep cpu-sim"
46
+
47
+ ( cd /workspace/eval_pi0 && CUDA_VISIBLE_DEVICES="${GPU}" \
48
+ UV_PROJECT_ENVIRONMENT=/venv/pi0_eval uv run --no-sync scripts/serve_policy.py \
49
+ --port "${PORT}" policy:checkpoint \
50
+ --policy.config pi0_maniskill --policy.dir "${MODEL_DIR}" ) > "${slog}" 2>&1 &
51
+ spid=$!
52
+ ok=0
53
+ for _ in $(seq 1 200); do
54
+ kill -0 "${spid}" 2>/dev/null || { echo "[${CKPT}] SERVER DIED"; break; }
55
+ grep -qiE "Creating server|websocket_policy_server|server listening" "${slog}" 2>/dev/null && { ok=1; break; }
56
+ sleep 3
57
+ done
58
+ [[ "${ok}" == "1" ]] || { echo "[${CKPT}] server not ready"; tail -n 25 "${slog}"; kill -9 "${spid}" 2>/dev/null; exit 1; }
59
+ echo "[$(date +%H:%M:%S)] ${CKPT}: pi0 server ready (pid ${spid})"
60
+
61
+ rc_all=0
62
+ for sb in "${SEEDS[@]}"; do
63
+ rt="${OUT_DIR}/pi0_${EXPERIMENT}_${CKPT}_seed${sb}.txt"
64
+ echo "[$(date +%H:%M:%S)] ${CKPT}: seed${sb} → ${rt}"
65
+ HOST=127.0.0.1 PORT="${PORT}" SIM_BACKEND="${SIM_BACKEND}" \
66
+ MAX_EPISODE_STEPS="${MAX_EPISODE_STEPS}" REPLAN_STEPS="${REPLAN_STEPS}" SEED_BASE=0 \
67
+ EXPERIMENT_ROOT="${OUT_DIR}/video_seed${sb}" \
68
+ GROOT_MAIN="${HARNESS}/pi0_pairwise_main.py" \
69
+ MS_PY="/venv/pi05_ms/bin/python" \
70
+ MANISKILL_CONFLICT_ROOT="${SIM_ROOT}" \
71
+ bash "${HARNESS}/run_ood_groot_inference.sh" "${EXPERIMENT}" "${sb}" "${TOTAL_EPISODES}" "${rt}" \
72
+ > "${LOG_DIR}/cli_${CKPT}_s${sb}.log" 2>&1
73
+ [[ $? -ne 0 ]] && rc_all=1
74
+ grep -E "^overall_" "${rt}" 2>/dev/null || echo "[${CKPT} s${sb}] no overall_ (see cli log)"
75
+ done
76
+
77
+ kill -9 "${spid}" 2>/dev/null; pkill -9 -P "${spid}" 2>/dev/null
78
+
79
+ python3 - "${OUT_DIR}" "${EXPERIMENT}" "${CKPT}" "${SEEDS[@]}" > "${OUT_DIR}/SUMMARY.txt" <<'PY'
80
+ import re,sys
81
+ from pathlib import Path
82
+ out,exp,ck,*seeds=sys.argv[1:]
83
+ acc={}
84
+ for sb in seeds:
85
+ p=Path(out)/f"pi0_{exp}_{ck}_seed{sb}.txt"
86
+ if not p.exists(): print(f"seed{sb}: MISSING"); continue
87
+ t=p.read_text(); line=[]
88
+ for m in re.finditer(r"^(overall_\w+)=(\d+)/(\d+) \(([\d.]+)%\)",t,re.M):
89
+ k,r=m.group(1),float(m.group(4)); acc.setdefault(k,[]).append(r); line.append(f"{k}={r:.1f}%")
90
+ print(f"seed{sb}: "+(" ".join(line) if line else "PARSE_FAILED"))
91
+ print(f"\n# {ck} exp={exp} GR00T-def {len(seeds)}seed×{__import__('os').environ.get('TE','200')}ep cpu-sim")
92
+ for k,v in acc.items(): print(f"AVG {k} = {sum(v)/len(v):.1f}% (n={len(v)})")
93
+ PY
94
+ echo "[$(date +%H:%M:%S)] ${CKPT}: DONE rc=${rc_all}"
95
+ cat "${OUT_DIR}/SUMMARY.txt"
96
+ exit ${rc_all}
code/run_pi0_one_ckpt.sh ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # ─────────────────────────────────────────────────────────────────────────────
4
+ # run_pi0_one_ckpt.sh — evaluate ONE pi0 checkpoint on the clean pairwise-OOD
5
+ # grid, ONE dedicated GPU, 3 seeds (42/40/41) averaged.
6
+ #
7
+ # • experiment is parsed from the ckpt name (longest matching pair prefix).
8
+ # • full grid: ALL (i,j) incl. diagonal over the experiment's two factors,
9
+ # third factor sampled from training_vocab pool (size 3), num_traj=1/cell.
10
+ # • per-pair env / instruction / dual-axis success + distractor: reused from
11
+ # the validated GR00T conflict logic (pi0_pairwise_main.py).
12
+ # • policy = pi0 openpi websocket (serve_policy.py, config pi0_maniskill).
13
+ # • task_difficulty default 1.3 (harder, per request).
14
+ # • output ONLY under results_pi0_pairwise/<ckpt>/ (never touches GR00T/genie).
15
+ #
16
+ # Usage: run_pi0_one_ckpt.sh <ckpt_name> <gpu> <port>
17
+ # ─────────────────────────────────────────────────────────────────────────────
18
+ ROOT=/workspace/groot_eval
19
+ HARNESS="${ROOT}/harness"
20
+ SIM_ROOT=/workspace/eval_simulation/simulation
21
+ CKPT="${1:?ckpt_name (dir under /workspace/pi0_ckpt)}"
22
+ GPU="${2:?gpu}"
23
+ PORT="${3:?port}"
24
+ STEP="${STEP:-17999}"
25
+ SEEDS=(${SEEDS_OVERRIDE:-42 40 41})
26
+ TASK_DIFFICULTY="${TASK_DIFFICULTY:-1.5}"
27
+ SIM_BACKEND="${SIM_BACKEND:-cpu}"
28
+ MAX_EPISODE_STEPS="${MAX_EPISODE_STEPS:-150}"
29
+ REPLAN_STEPS="${REPLAN_STEPS:-10}"
30
+
31
+ MODEL_DIR="/workspace/pi0_ckpt/${CKPT}/${STEP}"
32
+ OUT_DIR="${ROOT}/results_pi0_pairwise/${CKPT}"
33
+ LOG_DIR="${ROOT}/logs/pi0_pairwise"
34
+ mkdir -p "${OUT_DIR}" "${LOG_DIR}"
35
+ slog="${LOG_DIR}/server_${CKPT}_gpu${GPU}.log"
36
+ [[ -d "${MODEL_DIR}" ]] || { echo "[${CKPT}] MODEL_DIR not found: ${MODEL_DIR}"; exit 1; }
37
+
38
+ # ── experiment from ckpt name (longest matching pair prefix) ──
39
+ EXPERIMENT="$(python3 - "${CKPT}" <<'PY'
40
+ import sys
41
+ name = sys.argv[1]
42
+ exps = ["spatial_object","spatial_size","color_spatial","color_object","color_size",
43
+ "verb_spatial","verb_object","verb_color","verb_size","size_object"]
44
+ hit = [e for e in exps if name.startswith(e)]
45
+ print(max(hit, key=len) if hit else "")
46
+ PY
47
+ )"
48
+ [[ -n "${EXPERIMENT}" ]] || { echo "[${CKPT}] cannot parse experiment from name"; exit 1; }
49
+ echo "[$(date +%H:%M:%S)] ${CKPT}: experiment=${EXPERIMENT} gpu=${GPU} port=${PORT} difficulty=${TASK_DIFFICULTY}"
50
+
51
+ # ── start pi0 openpi websocket policy server ──
52
+ ( cd /workspace/eval_pi0 && CUDA_VISIBLE_DEVICES="${GPU}" \
53
+ UV_PROJECT_ENVIRONMENT=/venv/pi0_eval uv run --no-sync scripts/serve_policy.py \
54
+ --port "${PORT}" policy:checkpoint \
55
+ --policy.config pi0_maniskill --policy.dir "${MODEL_DIR}" ) > "${slog}" 2>&1 &
56
+ spid=$!
57
+ ok=0
58
+ for _ in $(seq 1 200); do
59
+ kill -0 "${spid}" 2>/dev/null || { echo "[${CKPT}] SERVER DIED during load"; break; }
60
+ grep -qiE "Creating server|websocket_policy_server|server listening" "${slog}" 2>/dev/null && { ok=1; break; }
61
+ sleep 3
62
+ done
63
+ [[ "${ok}" == "1" ]] || { echo "[${CKPT}] server not ready"; tail -n 25 "${slog}"; kill -9 "${spid}" 2>/dev/null; exit 1; }
64
+ echo "[$(date +%H:%M:%S)] ${CKPT}: pi0 server ready (pid ${spid})"
65
+
66
+ export MANISKILL_CONFLICT_ROOT="${SIM_ROOT}"
67
+ _MS_TORCH_LIB="$(/venv/pi05_ms/bin/python -c 'import torch,os;print(os.path.join(os.path.dirname(torch.__file__),"lib"))' 2>/dev/null || true)"
68
+ export LD_LIBRARY_PATH="${_MS_TORCH_LIB}:${LD_LIBRARY_PATH:-}"
69
+
70
+ rc_all=0
71
+ for sb in "${SEEDS[@]}"; do
72
+ rt="${OUT_DIR}/pi0_${EXPERIMENT}_${CKPT}_seed${sb}.txt"
73
+ echo "[$(date +%H:%M:%S)] ${CKPT}: seed${sb} experiment=${EXPERIMENT} → ${rt}"
74
+ CUDA_VISIBLE_DEVICES="${GPU}" SIM_ROOT="${SIM_ROOT}" \
75
+ /venv/pi05_ms/bin/python "${HARNESS}/pi0_grid_eval.py" \
76
+ --experiment "${EXPERIMENT}" --host 127.0.0.1 --port "${PORT}" \
77
+ --seed "${sb}" --sim-backend "${SIM_BACKEND}" \
78
+ --task-difficulty "${TASK_DIFFICULTY}" \
79
+ --max-episode-steps "${MAX_EPISODE_STEPS}" --replan-steps "${REPLAN_STEPS}" \
80
+ --target-episodes "${TARGET_EPISODES:-200}" \
81
+ ${MAX_CELLS:+--max-cells "${MAX_CELLS}"} \
82
+ --results-txt "${rt}" \
83
+ > "${LOG_DIR}/client_${CKPT}_seed${sb}.log" 2>&1
84
+ src=$?
85
+ [[ "${src}" -ne 0 ]] && rc_all=1
86
+ grep -E "^overall_" "${rt}" 2>/dev/null || echo "[${CKPT} seed${sb}] no overall_ line (see client log)"
87
+ done
88
+
89
+ kill -9 "${spid}" 2>/dev/null; pkill -9 -P "${spid}" 2>/dev/null
90
+
91
+ python3 - "${OUT_DIR}" "${EXPERIMENT}" "${CKPT}" "${SEEDS[@]}" > "${OUT_DIR}/SUMMARY.txt" <<'PY'
92
+ import re, sys
93
+ from pathlib import Path
94
+ out_dir, exp, ckpt, *seeds = sys.argv[1:]
95
+ acc = {}
96
+ for sb in seeds:
97
+ p = Path(out_dir) / f"pi0_{exp}_{ckpt}_seed{sb}.txt"
98
+ if not p.exists():
99
+ print(f"seed{sb}: MISSING"); continue
100
+ txt = p.read_text()
101
+ line = []
102
+ for m in re.finditer(r"^(overall_\w+)=(\d+)/(\d+) \(([\d.]+)%\)", txt, re.M):
103
+ k, _s, _n, r = m.group(1), m.group(2), m.group(3), float(m.group(4))
104
+ acc.setdefault(k, []).append(r); line.append(f"{k}={r:.1f}%")
105
+ print(f"seed{sb}: " + " ".join(line) if line else f"seed{sb}: PARSE_FAILED")
106
+ print(f"\n# {ckpt} experiment={exp} (pi0, pairwise-OOD full grid, task_difficulty harder, {len(seeds)} seeds)")
107
+ for k, v in acc.items():
108
+ print(f"AVG {k} = {sum(v)/len(v):.1f}% (n={len(v)} seeds)")
109
+ PY
110
+ echo "[$(date +%H:%M:%S)] ${CKPT}: DONE rc=${rc_all}"
111
+ cat "${OUT_DIR}/SUMMARY.txt"
112
+ exit ${rc_all}
code/run_pi0_queue.sh ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # Queue ALL fully-transferred pi0 ckpts through the proven 36-cell grid eval
4
+ # (run_pi0_one_ckpt.sh + pi0_grid_eval.py, cpu-sim, 3 seeds 40/41/42, avg).
5
+ # ONE model per GPU; when 8 GPUs busy, the rest wait. Re-scans transfer state
6
+ # so newly-finished ckpts get queued too. Skips ckpts already done (SUMMARY).
7
+ ROOT=/workspace/groot_eval
8
+ HARNESS="${ROOT}/harness"
9
+ RES="${ROOT}/results_pi0_pairwise"
10
+ LOG="${ROOT}/logs/pi0_pairwise"
11
+ CK=/workspace/pi0_ckpt
12
+ GPUS=(0 1 2 3 4 5 6 7)
13
+ mkdir -p "${RES}" "${LOG}"
14
+ log(){ echo "[$(date +%H:%M:%S)] $*" >> "${LOG}/queue.log"; }
15
+
16
+ complete(){ s="$1/17999"; [[ -f "$s/model.safetensors" && -f "$s/metadata.pt" ]] || return 1
17
+ ls "$s"/assets/*/norm_stats.json >/dev/null 2>&1 || return 1
18
+ mb=$(du -m "$s/model.safetensors" 2>/dev/null|cut -f1); [[ "${mb:-0}" -ge 3000 ]] || return 1
19
+ [[ $(( $(date +%s) - $(stat -c %Y "$s/model.safetensors" 2>/dev/null||echo 0) )) -ge 90 ]]; }
20
+ free_gpu(){ for g in "${GPUS[@]}"; do tmux has-session -t "pi0_g${g}" 2>/dev/null || { echo "$g"; return; }; done; echo ""; }
21
+
22
+ log "queue start"
23
+ while true; do
24
+ pending=0
25
+ for d in "${CK}"/*/; do
26
+ n=$(basename "$d"); case "$n" in ckpt_batch*|ckpt_may_*) continue;; esac
27
+ [[ -f "${RES}/${n}/SUMMARY.txt" ]] && continue
28
+ complete "$d" || continue
29
+ pending=$((pending+1))
30
+ tmux has-session -t "__claim_${n}" 2>/dev/null && continue # already dispatched
31
+ g="$(free_gpu)"; [[ -z "$g" ]] && { log "all GPUs busy; ${n} waits"; break; }
32
+ p=$((8400+g))
33
+ log "DISPATCH ${n} → GPU${g} (pi0_g${g})"
34
+ tmux new-session -d -s "__claim_${n}" "sleep 999999" # claim marker
35
+ tmux new-session -d -s "pi0_g${g}" \
36
+ "cd ${HARNESS} && bash run_pi0_one_ckpt.sh '${n}' ${g} ${p} > ${LOG}/q_${n}.log 2>&1; \
37
+ tmux kill-session -t __claim_${n} 2>/dev/null"
38
+ done
39
+ # done when nothing pending and no pi0_g* running
40
+ run=$(tmux ls 2>/dev/null | grep -c '^pi0_g[0-7]:' || true)
41
+ if [[ "${pending}" -eq 0 && "${run}" -eq 0 ]]; then log "ALL DONE"; break; fi
42
+ sleep 90
43
+ done
code/run_pi0_seed.sh ADDED
@@ -0,0 +1,76 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # ─────────────────────────────────────────────────────────────────────────────
4
+ # run_pi0_seed.sh — evaluate ONE pi0 ckpt for ONE seed on ONE GPU, using the
5
+ # EXACT GR00T conflict definition (200 episodes, always-distractor, dual-axis
6
+ # color/size or color/spatial success). Reuses GR00T's own job-gen+batch:
7
+ # run_ood_groot_inference.sh + pi0_pairwise_main.py (= groot_main.py with
8
+ # the policy boundary swapped to the pi0 openpi websocket server).
9
+ #
10
+ # Usage: run_pi0_seed.sh <ckpt_name> <gpu> <seed> [port]
11
+ # One (ckpt, seed) per GPU. sim_backend=cpu (pi0 server holds the GPU; pi0 +
12
+ # ManiSkill-GPU-sim on one card → CUDA illegal access, so physics on CPU).
13
+ # ─────────────────────────────────────────────────────────────────────────────
14
+ ROOT=/workspace/groot_eval
15
+ HARNESS="${ROOT}/harness"
16
+ SIM_ROOT=/workspace/eval_simulation/simulation
17
+ CKPT="${1:?ckpt_name}"
18
+ GPU="${2:?gpu}"
19
+ SEED="${3:?seed}"
20
+ PORT="${4:-$((8200 + GPU))}"
21
+ STEP="${STEP:-17999}"
22
+ TOTAL_EPISODES="${TOTAL_EPISODES:-200}"
23
+ SIM_BACKEND="${SIM_BACKEND:-cpu}"
24
+ MAX_EPISODE_STEPS="${MAX_EPISODE_STEPS:-150}"
25
+ REPLAN_STEPS="${REPLAN_STEPS:-10}"
26
+
27
+ MODEL_DIR="/workspace/pi0_ckpt/${CKPT}/${STEP}"
28
+ OUT_DIR="${ROOT}/results_pi0_pairwise/${CKPT}"
29
+ LOG_DIR="${ROOT}/logs/pi0_pairwise"
30
+ mkdir -p "${OUT_DIR}" "${LOG_DIR}"
31
+ slog="${LOG_DIR}/server_${CKPT}_gpu${GPU}_s${SEED}.log"
32
+ [[ -d "${MODEL_DIR}" ]] || { echo "[${CKPT}] MODEL_DIR not found: ${MODEL_DIR}"; exit 1; }
33
+
34
+ EXPERIMENT="$(python3 - "${CKPT}" <<'PY'
35
+ import sys
36
+ name=sys.argv[1]
37
+ exps=["spatial_object","spatial_size","color_spatial","color_object","color_size",
38
+ "verb_spatial","verb_object","verb_color","verb_size","size_object"]
39
+ hit=[e for e in exps if name.startswith(e)]
40
+ print(max(hit,key=len) if hit else "")
41
+ PY
42
+ )"
43
+ [[ -n "${EXPERIMENT}" ]] || { echo "[${CKPT}] cannot parse experiment"; exit 1; }
44
+ echo "[$(date +%H:%M:%S)] ${CKPT}: experiment=${EXPERIMENT} gpu=${GPU} seed=${SEED} port=${PORT} (GR00T-def, ${TOTAL_EPISODES}ep, cpu-sim)"
45
+
46
+ # ── start pi0 openpi websocket server (uses the GPU) ──
47
+ ( cd /workspace/eval_pi0 && CUDA_VISIBLE_DEVICES="${GPU}" \
48
+ UV_PROJECT_ENVIRONMENT=/venv/pi0_eval uv run --no-sync scripts/serve_policy.py \
49
+ --port "${PORT}" policy:checkpoint \
50
+ --policy.config pi0_maniskill --policy.dir "${MODEL_DIR}" ) > "${slog}" 2>&1 &
51
+ spid=$!
52
+ ok=0
53
+ for _ in $(seq 1 200); do
54
+ kill -0 "${spid}" 2>/dev/null || { echo "[${CKPT}] SERVER DIED"; break; }
55
+ grep -qiE "Creating server|websocket_policy_server|server listening" "${slog}" 2>/dev/null && { ok=1; break; }
56
+ sleep 3
57
+ done
58
+ [[ "${ok}" == "1" ]] || { echo "[${CKPT}] server not ready"; tail -n 25 "${slog}"; kill -9 "${spid}" 2>/dev/null; exit 1; }
59
+ echo "[$(date +%H:%M:%S)] ${CKPT}: pi0 server ready (pid ${spid})"
60
+
61
+ rt="${OUT_DIR}/pi0_${EXPERIMENT}_${CKPT}_seed${SEED}.txt"
62
+ HOST=127.0.0.1 PORT="${PORT}" SIM_BACKEND="${SIM_BACKEND}" \
63
+ MAX_EPISODE_STEPS="${MAX_EPISODE_STEPS}" REPLAN_STEPS="${REPLAN_STEPS}" \
64
+ SEED_BASE=0 \
65
+ EXPERIMENT_ROOT="${OUT_DIR}/video_seed${SEED}" \
66
+ GROOT_MAIN="${HARNESS}/pi0_pairwise_main.py" \
67
+ MS_PY="/venv/pi05_ms/bin/python" \
68
+ MANISKILL_CONFLICT_ROOT="${SIM_ROOT}" \
69
+ bash "${HARNESS}/run_ood_groot_inference.sh" "${EXPERIMENT}" "${SEED}" "${TOTAL_EPISODES}" "${rt}" \
70
+ > "${LOG_DIR}/client_${CKPT}_seed${SEED}.log" 2>&1
71
+ rc=$?
72
+
73
+ kill -9 "${spid}" 2>/dev/null; pkill -9 -P "${spid}" 2>/dev/null
74
+ echo "[$(date +%H:%M:%S)] ${CKPT} seed${SEED}: DONE rc=${rc}"
75
+ grep -E "^overall_" "${rt}" 2>/dev/null || echo "[${CKPT} s${SEED}] no overall_ (see client log)"
76
+ exit ${rc}
code/run_tmux_all.sh ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # Launch 10 tmux sessions, one per GR00T conflict checkpoint, all in parallel.
4
+ # GPU assignment: gpu = idx % NUM_GPUS (with 8 GPUs, gpu0 & gpu1 host 2 each).
5
+ # Each session: GR00T server + ManiSkill OOD sweep on the same GPU.
6
+ #
7
+ # Usage: bash run_tmux_all.sh [seed=42] [total_episodes=200]
8
+ ROOT=/workspace/groot_eval
9
+ HARNESS="${ROOT}/harness"
10
+ SEED="${1:-42}"
11
+ TOTAL="${2:-200}"
12
+ NUM_GPUS="${NUM_GPUS:-8}"
13
+ BASE_PORT="${BASE_PORT:-5600}"
14
+
15
+ CATS=(color_object color_size color_spatial size_object spatial_object
16
+ spatial_size verb_color verb_object verb_size verb_spatial)
17
+
18
+ mkdir -p "${ROOT}/logs/tmux"
19
+ for i in "${!CATS[@]}"; do
20
+ cat="${CATS[$i]}"
21
+ gpu=$(( i % NUM_GPUS ))
22
+ port=$(( BASE_PORT + i ))
23
+ sess="groot_${cat}"
24
+ tmux kill-session -t "${sess}" 2>/dev/null || true
25
+ tmux new-session -d -s "${sess}" \
26
+ "bash ${HARNESS}/run_one_cat.sh ${cat} ${gpu} ${port} ${SEED} ${TOTAL} 2>&1 | tee ${ROOT}/logs/tmux/session_${cat}.log; echo; echo '=== ${cat} session finished (rc=$?) — pane kept for inspection ==='; exec bash"
27
+ echo "launched tmux ${sess} cat=${cat} gpu=${gpu} port=${port}"
28
+ sleep 1
29
+ done
30
+ echo
31
+ echo "tmux sessions:"
32
+ tmux ls
33
+ echo
34
+ echo "Attach: tmux attach -t groot_<category>"
35
+ echo "Logs: ${ROOT}/logs/tmux/{server,client,session}_<category>.log"
36
+ echo "Results: ${ROOT}/results/<category>/<category>_ood_seed${SEED}.txt"
37
+ echo "Videos: ${ROOT}/results/<category>/experiments/<run_name>/video/ep000{,_wrist}.mp4"
code/smoke_e2e.sh ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # End-to-end smoke: GR00T server + ManiSkill client, tiny color_object run.
4
+ ROOT=/workspace/groot_eval
5
+ CAT="${1:-color_object}"
6
+ GPU="${2:-0}"
7
+ PORT="${3:-5599}"
8
+ TOTAL_EP="${4:-2}" # -> 4 runs x 1 episode
9
+ MAXSTEPS="${5:-40}"
10
+ OUT="${ROOT}/results_smoke/${CAT}"
11
+ mkdir -p "${OUT}/experiments" "${ROOT}/logs"
12
+ SLOG="${ROOT}/logs/smoke_server_${CAT}.log"
13
+ CLOG="${ROOT}/logs/smoke_client_${CAT}.log"
14
+
15
+ echo "[smoke] start GR00T server cat=${CAT} gpu=${GPU} port=${PORT}"
16
+ ( cd "${ROOT}/gr00t_repo/codebase" && CUDA_VISIBLE_DEVICES="${GPU}" \
17
+ HF_HOME="${ROOT}/.hf_cache" HF_TOKEN="$(cat ${ROOT}/.hf_token)" \
18
+ NO_ALBUMENTATIONS_UPDATE=1 TOKENIZERS_PARALLELISM=false \
19
+ "${ROOT}/.venv_groot/bin/python" -m gr00t.eval.run_gr00t_server \
20
+ --model-path "${ROOT}/checkpoints/${CAT}" \
21
+ --embodiment-tag new_embodiment --device cuda:0 \
22
+ --host 127.0.0.1 --port "${PORT}" ) > "${SLOG}" 2>&1 &
23
+ SPID=$!
24
+
25
+ ready=0
26
+ for _ in $(seq 1 150); do
27
+ kill -0 "${SPID}" 2>/dev/null || { echo "[smoke] SERVER DIED"; tail -n 30 "${SLOG}"; exit 1; }
28
+ grep -q "Server ready\|Server is ready and listening" "${SLOG}" 2>/dev/null && { ready=1; break; }
29
+ sleep 3
30
+ done
31
+ [ "${ready}" -eq 1 ] || { echo "[smoke] server not ready"; tail -n 30 "${SLOG}"; kill "${SPID}"; exit 1; }
32
+ echo "[smoke] server ready; running client sweep"
33
+
34
+ TORCH_LIB=$("${ROOT}/.venv_ms/bin/python" -c "import torch,os;print(os.path.join(os.path.dirname(torch.__file__),'lib'))")
35
+ CUDA_VISIBLE_DEVICES="${GPU}" LD_LIBRARY_PATH="${TORCH_LIB}:${LD_LIBRARY_PATH:-}" \
36
+ HOST=127.0.0.1 PORT="${PORT}" SIM_BACKEND=gpu MAX_EPISODE_STEPS="${MAXSTEPS}" \
37
+ EXPERIMENT_ROOT="${OUT}/experiments" GROOT_MAIN="${ROOT}/harness/groot_main.py" \
38
+ MS_PY="${ROOT}/.venv_ms/bin/python" MANISKILL_CONFLICT_ROOT="${ROOT}/genie_repo/maniskill_conflict" \
39
+ bash "${ROOT}/harness/run_ood_groot_inference.sh" "${CAT}" 42 "${TOTAL_EP}" "${OUT}/${CAT}_smoke.txt" \
40
+ > "${CLOG}" 2>&1
41
+ RC=$?
42
+
43
+ kill "${SPID}" 2>/dev/null || true; wait "${SPID}" 2>/dev/null || true
44
+ echo "[smoke] client rc=${RC}"
45
+ echo "------ results txt ------"; cat "${OUT}/${CAT}_smoke.txt" 2>/dev/null
46
+ echo "------ videos ------"; find "${OUT}/experiments" -name '*.mp4' | head; echo "count: $(find "${OUT}/experiments" -name '*.mp4' | wc -l)"
47
+ echo "------ client log tail ------"; tail -n 25 "${CLOG}"
48
+ exit ${RC}
code/smoke_env.py ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Env-only smoke test (no GR00T server): build VerbObjectColor-v1 via
2
+ groot_main._build_env_and_instruction for a few experiments, reset+step,
3
+ print obs/info structure. Validates the ManiSkill side + our kwargs + GPU sim.
4
+ """
5
+ import sys, numpy as np
6
+ sys.path.insert(0, "/workspace/groot_eval/harness")
7
+ from groot_main import _build_env_and_instruction, _state8, _to_hwc_uint8, Args, SPATIAL_ANCHORS, SPATIALS
8
+
9
+ CASES = [
10
+ dict(experiment="color_object", pair_i=0, pair_j=1, run_type="color"),
11
+ dict(experiment="spatial_object", pair_i=0, pair_j=1, run_type="spatial"),
12
+ ]
13
+ for c in CASES:
14
+ a = Args(sim_backend=sys.argv[1] if len(sys.argv) > 1 else "gpu",
15
+ max_episode_steps=40, third_seed=42, seed=42, **c)
16
+ print(f"\n==== {c} ====")
17
+ env, instr = _build_env_and_instruction(a)
18
+ print("instruction:", repr(instr))
19
+ if a.experiment in {"verb_spatial","color_spatial","spatial_size","spatial_object"}:
20
+ ai = list(SPATIAL_ANCHORS[SPATIALS[a.pair_i]]); aj = list(SPATIAL_ANCHORS[SPATIALS[a.pair_j]])
21
+ ropts = {"num_distractors": 1, "obj_xy": ai, "distractor_xy": [aj]}
22
+ else:
23
+ ropts = {"num_distractors": 1}
24
+ obs, _ = env.reset(seed=42, options=ropts)
25
+ sd = obs["sensor_data"]
26
+ print("sensor_data keys:", list(sd.keys()))
27
+ b = _to_hwc_uint8(sd["base_camera"]["rgb"]); h = _to_hwc_uint8(sd["hand_camera"]["rgb"])
28
+ print("base img", b.shape, b.dtype, "wrist img", h.shape, h.dtype)
29
+ s = _state8(env); print("state8", s.shape, s.dtype, np.round(s, 3))
30
+ act = np.zeros(8, np.float32)
31
+ for t in range(5):
32
+ obs, r, term, trunc, info = env.step(act)
33
+ print("info keys:", sorted(info.keys()))
34
+ for k in ("success", "success_first_axis", "success_second_axis"):
35
+ print(f" {k} = {info.get(k)}")
36
+ env.close()
37
+ print("\nSMOKE_ENV_OK")
code/vlm_eval.py ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """
2
+ VLM evaluation of all 10 conflict experiments using Gemini-2.5-Flash.
3
+ Reads existing videos and success_rate.txt; NEVER modifies existing files.
4
+
5
+ Adapted for this environment:
6
+ - model arg: gr00t -> /workspace/groot_eval/results
7
+ genie -> /workspace/groot_eval/results_genie
8
+ - layout: <root>/<exp>/experiments/ood_<idx>_<exp>_<pi>_<pj>_<rt>_<ts>/
9
+ - output: /workspace/groot_eval/results/vlm_eval/<model>/vlm_eval_<exp>.jsonl
10
+ - resumable: skips runs already present in the output jsonl
11
+ Usage: python vlm_eval.py <gr00t|genie> [exp ...] [--limit N]
12
+ """
13
+
14
+ import base64, json, re, sys, time, threading
15
+ from concurrent.futures import ThreadPoolExecutor
16
+ from pathlib import Path
17
+ import requests
18
+
19
+ WORKERS = 10 # concurrent VLM requests per model process (overridable via --workers)
20
+
21
+ API_KEY = "sk-12YA7oNA-9gl9qn2oedejw"
22
+ API_URL = "https://inference-api.nvidia.com/v1/chat/completions"
23
+ MODEL = "gcp/google/gemini-2.5-flash"
24
+
25
+ ROOTS = {
26
+ "gr00t": Path("/workspace/groot_eval/results"),
27
+ "genie": Path("/workspace/groot_eval/results_genie"),
28
+ }
29
+ OUT_BASE = Path("/workspace/groot_eval/results/vlm_eval")
30
+
31
+ VERBS = ["lift", "grasp", "push", "pull", "rotate", "slide"]
32
+ COLORS = ["red", "yellow", "blue", "orange", "green", "black"]
33
+ SHAPES = ["cube", "sphere", "cup", "car", "pyramid", "star"]
34
+ SIZES = ["smallest", "second smallest", "middle-sized", "second largest", "largest", "biggest"]
35
+ SPATIALS= ["on the left", "on the right", "in the middle", "in front", "at the back", "in the center"]
36
+
37
+ ALL_EXPERIMENTS = [
38
+ "verb_color", "verb_object", "verb_size", "verb_spatial",
39
+ "color_object", "size_object", "color_size", "color_spatial",
40
+ "spatial_size", "spatial_object",
41
+ ]
42
+
43
+ # ── Prompt builders (verbatim from user's script) ────────────────────────────
44
+
45
+ def prompt_verb_experiment(instruction, pair_i, pair_j, factor2):
46
+ verb_i = VERBS[pair_i]; verb_j = VERBS[pair_j]
47
+ if factor2 == "color":
48
+ factor2_desc = f"color '{COLORS[pair_j]}' (which the robot was trained to interact with using '{verb_j}')"
49
+ elif factor2 == "shape":
50
+ factor2_desc = f"shape '{SHAPES[pair_j]}' (which the robot was trained to interact with using '{verb_j}')"
51
+ elif factor2 == "size":
52
+ factor2_desc = f"size '{SIZES[pair_j]}' (which the robot was trained to interact with using '{verb_j}')"
53
+ elif factor2 == "spatial":
54
+ factor2_desc = f"spatial position '{SPATIALS[pair_j]}' (which the robot was trained to interact with using '{verb_j}')"
55
+ else:
56
+ factor2_desc = f"factor {pair_j} (trained verb: '{verb_j}')"
57
+ return f"""Watch this robot manipulation video carefully.
58
+
59
+ **Instruction given to the robot:** "{instruction}"
60
+
61
+ This is a CONFLICT experiment about verb bias. The robot was trained with specific verb-attribute pairings:
62
+ - Verb "{verb_i}" is paired with one attribute set (instruction verb)
63
+ - Verb "{verb_j}" is paired with {factor2_desc}
64
+
65
+ The robot must choose which action to perform. Observe carefully.
66
+
67
+ Answer in this EXACT format:
68
+ ROBOT_ACTION: [describe what physical action the robot arm performed in 1 sentence]
69
+ ACTION_TYPE: ["{verb_i}" if robot performed the instructed action, "{verb_j}" if robot performed the competing action, "other" if neither]
70
+ FACTOR_FOLLOWED: ["verb" if robot followed the instructed verb '{verb_i}', "{factor2}" if robot followed the {factor2} factor (doing '{verb_j}'), "neither" if unclear]
71
+ CONFIDENCE: [high / medium / low]
72
+ REASONING: [1-2 sentences explaining your judgment]"""
73
+
74
+
75
+ def prompt_two_object_experiment(instruction, pair_i, pair_j, factor1, factor2):
76
+ def describe_factor(f, k):
77
+ if f == "color": return f"color='{COLORS[k]}'"
78
+ if f == "shape": return f"shape='{SHAPES[k]}'"
79
+ if f == "size": return f"size='{SIZES[k]}'"
80
+ if f == "spatial": return f"position='{SPATIALS[k]}'"
81
+ return f"{f}={k}"
82
+ obj_a_desc = describe_factor(factor1, pair_i)
83
+ obj_b_desc = describe_factor(factor2, pair_j)
84
+ return f"""Watch this robot manipulation video carefully.
85
+
86
+ **Instruction given to the robot:** "{instruction}"
87
+
88
+ This is a CONFLICT experiment about factor bias. The scene contains two objects:
89
+ - Object A: has {obj_a_desc} — matches the '{factor1}' factor in the instruction
90
+ - Object B: has {obj_b_desc} — matches the '{factor2}' factor in the instruction
91
+
92
+ No object has BOTH attributes simultaneously. The robot must choose one.
93
+
94
+ Answer in this EXACT format:
95
+ ROBOT_ACTION: [describe what the robot arm did in 1 sentence]
96
+ OBJECT_TOUCHED: [A (matches {factor1}), B (matches {factor2}), or neither]
97
+ FACTOR_FOLLOWED: ["{factor1}" if robot went for Object A, "{factor2}" if robot went for Object B, "neither"]
98
+ CONFIDENCE: [high / medium / low]
99
+ REASONING: [1-2 sentences explaining your judgment]"""
100
+
101
+
102
+ VERB_EXPS = {"verb_color": "color", "verb_object": "shape",
103
+ "verb_size": "size", "verb_spatial": "spatial"}
104
+ TWO_OBJ_EXPS = {
105
+ "color_object": ("color", "shape"), "size_object": ("size", "shape"),
106
+ "color_size": ("color", "size"), "color_spatial": ("color", "spatial"),
107
+ "spatial_size": ("spatial", "size"), "spatial_object": ("spatial", "shape"),
108
+ }
109
+
110
+ def get_prompt(experiment, instruction, pair_i, pair_j, run_type):
111
+ if experiment in VERB_EXPS:
112
+ return prompt_verb_experiment(instruction, pair_i, pair_j, VERB_EXPS[experiment])
113
+ if experiment in TWO_OBJ_EXPS:
114
+ f1, f2 = TWO_OBJ_EXPS[experiment]
115
+ return prompt_two_object_experiment(instruction, pair_i, pair_j, f1, f2)
116
+ return f'Watch this robot video. Instruction: "{instruction}". What did the robot do?'
117
+
118
+ # ── API call ─────────────────────────────────────────────────────────────────
119
+
120
+ def call_vlm(video_path, prompt):
121
+ with open(video_path, "rb") as f:
122
+ video_b64 = base64.b64encode(f.read()).decode()
123
+ payload = {"model": MODEL, "max_tokens": 2000,
124
+ "messages": [{"role": "user", "content": [
125
+ {"type": "text", "text": prompt},
126
+ {"type": "image_url", "image_url": {"url": f"data:video/mp4;base64,{video_b64}"}}]}]}
127
+ for attempt in range(4):
128
+ try:
129
+ resp = requests.post(API_URL,
130
+ headers={"Authorization": f"Bearer {API_KEY}", "Content-Type": "application/json"},
131
+ json=payload, timeout=120)
132
+ if resp.status_code == 200:
133
+ content = resp.json()["choices"][0]["message"]["content"] or ""
134
+ return parse_response(content)
135
+ elif resp.status_code == 429:
136
+ print(" rate-limited 30s", flush=True); time.sleep(30)
137
+ else:
138
+ print(f" API {resp.status_code}: {resp.text[:120]}", flush=True); time.sleep(5)
139
+ except Exception as e:
140
+ print(f" exc: {e}", flush=True); time.sleep(5)
141
+ return {"raw": "FAILED", "factor_followed": "error"}
142
+
143
+
144
+ def parse_response(text):
145
+ result = {"raw": text}
146
+ for field in ["ROBOT_ACTION", "OBJECT_TOUCHED", "ACTION_TYPE",
147
+ "FACTOR_FOLLOWED", "CONFIDENCE", "REASONING"]:
148
+ m = re.search(rf"{field}:\s*(.+?)(?=\n[A-Z_]+:|$)", text, re.DOTALL)
149
+ result[field.lower()] = m.group(1).strip() if m else ""
150
+ return result
151
+
152
+ # ── Run discovery (one dir per index, latest timestamp) ──────────────────────
153
+
154
+ def load_runs(root: Path, experiment: str):
155
+ expdir = root / experiment / "experiments"
156
+ best = {}
157
+ for d in sorted(expdir.glob(f"ood_*_{experiment}_*")):
158
+ if not d.is_dir():
159
+ continue
160
+ parts = d.name.split("_")
161
+ try:
162
+ exp_len = len(experiment.split("_"))
163
+ idx = int(parts[1])
164
+ pair_i = int(parts[2 + exp_len])
165
+ pair_j = int(parts[3 + exp_len])
166
+ run_type = parts[4 + exp_len]
167
+ run_name = "_".join(parts[:5 + exp_len])
168
+ except (ValueError, IndexError):
169
+ continue
170
+ sr = d / "success_rate.txt"
171
+ existing = "?/1"
172
+ if sr.exists():
173
+ m = re.search(r"_success=(\d+/\d+)", sr.read_text())
174
+ if m: existing = m.group(1)
175
+ best[idx] = {"idx": idx, "pair_i": pair_i, "pair_j": pair_j,
176
+ "run_type": run_type, "existing_success": existing,
177
+ "run_name": run_name, "dir": str(d)} # sorted() => last wins = latest ts
178
+ return [best[k] for k in sorted(best)]
179
+
180
+ # ── Per-experiment evaluation ────────────────────────────────────────────────
181
+
182
+ def evaluate_experiment(model: str, experiment: str, limit: int = 0):
183
+ root = ROOTS[model]
184
+ out_dir = OUT_BASE / model
185
+ out_dir.mkdir(parents=True, exist_ok=True)
186
+ out_file = out_dir / f"vlm_eval_{experiment}.jsonl"
187
+ print(f"\n{'='*60}\n[{model}] Evaluating: {experiment}\nOutput: {out_file}", flush=True)
188
+
189
+ runs = load_runs(root, experiment)
190
+ print(f"found {len(runs)} runs", flush=True)
191
+
192
+ done_names = set()
193
+ if out_file.exists():
194
+ for line in out_file.read_text().splitlines():
195
+ try:
196
+ done_names.add(json.loads(line)["run_name"])
197
+ except Exception:
198
+ pass
199
+ if done_names:
200
+ print(f"resume: {len(done_names)} already done, skipping them", flush=True)
201
+
202
+ factor_counts = {}
203
+ # tally already-done from existing jsonl too (for accurate summary)
204
+ if out_file.exists():
205
+ for line in out_file.read_text().splitlines():
206
+ try:
207
+ f = json.loads(line).get("vlm_factor_followed", "error")
208
+ factor_counts[f] = factor_counts.get(f, 0) + 1
209
+ except Exception:
210
+ pass
211
+
212
+ # Build pending list (skip done / missing), honoring optional limit
213
+ pending = []
214
+ for run in runs:
215
+ if run["run_name"] in done_names:
216
+ continue
217
+ run_dir = Path(run["dir"])
218
+ video_path = run_dir / "video" / "ep000.mp4"
219
+ if not run_dir.exists() or not video_path.exists():
220
+ print(f" [{run['idx']}] MISSING dir/video", flush=True); continue
221
+ instruction = "unknown"
222
+ sr_file = run_dir / "success_rate.txt"
223
+ if sr_file.exists():
224
+ m = re.search(r"instruction='(.+?)'", sr_file.read_text())
225
+ if m: instruction = m.group(1)
226
+ run["_video"] = str(video_path); run["_instruction"] = instruction
227
+ pending.append(run)
228
+ if limit and len(pending) >= limit:
229
+ break
230
+ print(f"pending={len(pending)} workers={WORKERS}", flush=True)
231
+
232
+ out_f = open(out_file, "a")
233
+ lock = threading.Lock()
234
+ state = {"n": 0}
235
+
236
+ def work(run):
237
+ prompt = get_prompt(experiment, run["_instruction"], run["pair_i"],
238
+ run["pair_j"], run["run_type"])
239
+ vlm = call_vlm(Path(run["_video"]), prompt)
240
+ factor = vlm.get("factor_followed", "error").lower().strip('"\'').strip()
241
+ record = {"model": model, "experiment": experiment, "run_name": run["run_name"],
242
+ "idx": run["idx"], "pair_i": run["pair_i"], "pair_j": run["pair_j"],
243
+ "run_type": run["run_type"], "instruction": run["_instruction"],
244
+ "existing_success": run["existing_success"],
245
+ "vlm_factor_followed": factor,
246
+ "vlm_object_touched": vlm.get("object_touched", ""),
247
+ "vlm_action_type": vlm.get("action_type", ""),
248
+ "vlm_robot_action": vlm.get("robot_action", ""),
249
+ "vlm_confidence": vlm.get("confidence", ""),
250
+ "vlm_reasoning": vlm.get("reasoning", ""),
251
+ "vlm_raw": vlm.get("raw", "")}
252
+ with lock:
253
+ out_f.write(json.dumps(record) + "\n"); out_f.flush()
254
+ factor_counts[factor] = factor_counts.get(factor, 0) + 1
255
+ state["n"] += 1
256
+ print(f" [{model}/{experiment} {state['n']}/{len(pending)}] "
257
+ f"idx{run['idx']} {factor.upper()} [{vlm.get('confidence','')}]", flush=True)
258
+
259
+ if pending:
260
+ with ThreadPoolExecutor(max_workers=WORKERS) as ex:
261
+ list(ex.map(work, pending))
262
+ out_f.close()
263
+
264
+ total = sum(factor_counts.values())
265
+ with open(out_dir / f"vlm_eval_{experiment}_summary.txt", "w") as f:
266
+ f.write(f"# VLM Eval: {model} {experiment}\nmodel: {MODEL}\ntotal_evaluated: {total}\n\n")
267
+ for fac, cnt in sorted(factor_counts.items(), key=lambda x: -x[1]):
268
+ f.write(f"{fac}: {cnt}/{total} ({100*cnt/max(1,total):.1f}%)\n")
269
+ print(f" [{model}/{experiment}] +{state['n']} new, totals={factor_counts}", flush=True)
270
+ return factor_counts
271
+
272
+
273
+ if __name__ == "__main__":
274
+ args = [a for a in sys.argv[1:] if not a.startswith("--")]
275
+ limit = 0
276
+ for i, a in enumerate(sys.argv[1:], start=1):
277
+ if a.startswith("--limit"):
278
+ limit = int(a.split("=")[1]) if "=" in a else int(sys.argv[i+1])
279
+ if a.startswith("--workers"):
280
+ WORKERS = int(a.split("=")[1]) if "=" in a else int(sys.argv[i+1])
281
+ model = args[0] if args else "gr00t"
282
+ exps = [a for a in args[1:] if a in ALL_EXPERIMENTS] or ALL_EXPERIMENTS
283
+ assert model in ROOTS, f"model must be gr00t|genie, got {model}"
284
+ results = {}
285
+ for e in exps:
286
+ results[e] = evaluate_experiment(model, e, limit=limit)
287
+ print("\n" + "="*60 + f"\n[{model}] ALL DONE")
288
+ for e, c in results.items():
289
+ t = sum(c.values()); top = max(c, key=c.get) if c else "NA"
290
+ print(f" {e}: dominant={top} ({100*c.get(top,0)/max(1,t):.1f}%)")
code/watchdog_pi0_f18.sh ADDED
@@ -0,0 +1,64 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ set -uo pipefail
3
+ # ─────────────────────────────────────────────────────────────────────────────
4
+ # watchdog_pi0_f18.sh — watch /workspace/pi0_ckpt, auto-evaluate every *f18*
5
+ # checkpoint that has finished transferring. One model per GPU, each in its
6
+ # own tmux session (pi0_g<gpu>). task_difficulty harder (run_pi0_one_ckpt.sh
7
+ # default 1.3). Skips done (SUMMARY.txt) / already-claimed / in-flight.
8
+ #
9
+ # Runs forever (user keeps uploading); rescans every 120s.
10
+ # Launch: tmux new-session -d -s pi0_watchdog 'bash watchdog_pi0_f18.sh'
11
+ # ─────────────────────────────────────────────────────────────────────────────
12
+ ROOT=/workspace/groot_eval
13
+ HARNESS="${ROOT}/harness"
14
+ CKPT_ROOT=/workspace/pi0_ckpt
15
+ RES_ROOT="${ROOT}/results_pi0_pairwise"
16
+ LOG_DIR="${ROOT}/logs/pi0_pairwise"
17
+ CLAIM_DIR="${LOG_DIR}/.claimed"
18
+ GPUS=(0 1 2 3 4 5 6 7)
19
+ STEP=17999
20
+ mkdir -p "${LOG_DIR}" "${CLAIM_DIR}" "${RES_ROOT}"
21
+
22
+ log(){ echo "[$(date +%H:%M:%S)] $*"; }
23
+
24
+ free_gpu(){
25
+ for g in "${GPUS[@]}"; do
26
+ tmux has-session -t "pi0_g${g}" 2>/dev/null || { echo "$g"; return 0; }
27
+ done
28
+ echo ""
29
+ }
30
+
31
+ complete(){ # $1=ckpt dir ; true if 17999/ fully transferred & stable
32
+ local s="$1/${STEP}"
33
+ [[ -f "$s/model.safetensors" && -f "$s/metadata.pt" ]] || return 1
34
+ ls "$s"/assets/*/norm_stats.json >/dev/null 2>&1 || return 1
35
+ local mb age
36
+ mb=$(du -m "$s/model.safetensors" 2>/dev/null | cut -f1)
37
+ [[ "${mb:-0}" -ge 3000 ]] || return 1
38
+ age=$(( $(date +%s) - $(stat -c %Y "$s/model.safetensors" 2>/dev/null || echo 0) ))
39
+ [[ "${age}" -ge 90 ]] || return 1 # not written to for 90s
40
+ return 0
41
+ }
42
+
43
+ log "watchdog start — scanning ${CKPT_ROOT} for *f18* every 120s"
44
+ while true; do
45
+ for d in "${CKPT_ROOT}"/*f18*/; do
46
+ [[ -d "$d" ]] || continue
47
+ name="$(basename "$d")"
48
+ case "$name" in ckpt_batch*|ckpt_may_*) continue;; esac
49
+ [[ "$name" == *f18* ]] || continue
50
+ [[ -f "${RES_ROOT}/${name}/SUMMARY.txt" ]] && continue # done
51
+ [[ -f "${CLAIM_DIR}/${name}" ]] && continue # claimed/in-flight
52
+ complete "$d" || continue # not fully transferred
53
+ g="$(free_gpu)"
54
+ [[ -z "$g" ]] && { log "all GPUs busy; ${name} waits"; break; }
55
+ port=$(( 8100 + g ))
56
+ touch "${CLAIM_DIR}/${name}"
57
+ log "LAUNCH ${name} → GPU${g} (tmux pi0_g${g}, port ${port})"
58
+ tmux new-session -d -s "pi0_g${g}" \
59
+ "cd ${HARNESS} && bash run_pi0_one_ckpt.sh '${name}' ${g} ${port} \
60
+ > ${LOG_DIR}/run_${name}.log 2>&1; \
61
+ echo DONE_${name} >> ${LOG_DIR}/watchdog_events.log"
62
+ done
63
+ sleep 120
64
+ done
result.md ADDED
@@ -0,0 +1,245 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # 仿真评测结果总汇 (GR00T N1.7 / Genie-Envisioner)
2
+
3
+ 生成时间:2026-05-25 19:20:58 UTC
4
+
5
+ 本文件汇总全部实验:① GR00T pair-grid 硬/软口径 ② GR00T all_factor full-factor ③ conflict 双轴 env success(GR00T vs Genie)④ VLM(Gemini-2.5-flash)FDR 对照。
6
+ 数值为成功率 %;pair-grid/all_factor 均为 3-seed 平均。
7
+
8
+ ---
9
+ # 一、GR00T pair-grid(硬口径,3-seed)
10
+
11
+ ## color_size (HARD)
12
+
13
+ | ckpt | s42 | s40 | s41 | 3-seed 均 |
14
+ |---|---|---|---|---|
15
+ | color_size_Lrandom_f12 | 24.1 | 27.3 | 24.5 | **25.3%** |
16
+ | color_size_Lrandom_f18 | 35.6 | 34.7 | 34.3 | **34.8%** |
17
+ | color_size_Lrandom_f6 | 7.9 | 10.2 | 6.9 | **8.3%** |
18
+ | color_size_random_f12 | 13.4 | 15.3 | 11.6 | **13.4%** |
19
+ | color_size_random_f18 | 27.3 | 32.9 | 28.2 | **29.4%** |
20
+ | color_size_random_f6 | 9.7 | 9.3 | 10.6 | **9.8%** |
21
+ | color_size_stair_f12 | 28.2 | 28.2 | 28.2 | **28.2%** |
22
+ | color_size_stair_f18 | 26.9 | 27.8 | 25.9 | **26.8%** |
23
+ | color_size_stair_f6 | 7.4 | 8.3 | 6.0 | **7.2%** |
24
+
25
+ ## color_size (EASY)
26
+
27
+ | ckpt | s42 | s40 | s41 | 3-seed 均 |
28
+ |---|---|---|---|---|
29
+ | color_size_Lrandom_f12 | 23.6 | 24.5 | 22.7 | **23.6%** |
30
+ | color_size_Lrandom_f18 | 36.6 | 38.0 | 37.0 | **37.2%** |
31
+ | color_size_Lrandom_f6 | 5.1 | 10.6 | 9.3 | **8.3%** |
32
+ | color_size_random_f12 | 14.4 | 14.8 | 16.2 | **15.1%** |
33
+ | color_size_random_f18 | 28.7 | 33.3 | 31.0 | **31.0%** |
34
+ | color_size_random_f6 | 6.9 | 11.1 | 6.9 | **8.3%** |
35
+ | color_size_stair_f12 | 29.2 | 27.8 | 29.6 | **28.8%** |
36
+ | color_size_stair_f18 | 26.4 | 25.5 | 27.8 | **26.5%** |
37
+ | color_size_stair_f6 | 9.3 | 8.3 | 6.5 | **8.0%** |
38
+
39
+ ## color_spatial
40
+
41
+ | ckpt | s42 | s40 | s41 | 3-seed 均 |
42
+ |---|---|---|---|---|
43
+ | color_spatial_Lrandom_f18 | 52.4 | 42.9 | 46.7 | **47.3%** |
44
+ | color_spatial_random_f12 | 33.3 | 27.6 | 33.8 | **31.5%** |
45
+ | color_spatial_random_f18 | 42.4 | 36.7 | 41.0 | **40.0%** |
46
+ | color_spatial_random_f6 | 23.3 | 26.2 | 24.8 | **24.7%** |
47
+ | color_spatial_stair_f18 | 54.8 | 45.7 | 52.9 | **51.1%** |
48
+ | color_spatial_stair_f6 | 24.3 | 19.5 | 21.4 | **21.7%** |
49
+
50
+ ## verb_spatial
51
+
52
+ | ckpt | s42 | s40 | s41 | 3-seed 均 |
53
+ |---|---|---|---|---|
54
+ | verb_spatial_Lrandom_f12 | 31.9 | 29.5 | 32.4 | **31.2%** |
55
+ | verb_spatial_Lrandom_f18 | 32.9 | 30.0 | 34.8 | **32.5%** |
56
+ | verb_spatial_Lrandom_f6 | 22.4 | 31.0 | 27.1 | **26.8%** |
57
+ | verb_spatial_random_f12 | 31.4 | 31.9 | 37.6 | **33.6%** |
58
+ | verb_spatial_random_f18 | 26.2 | 24.3 | 23.3 | **24.6%** |
59
+ | verb_spatial_random_f6 | 16.2 | 16.2 | 14.3 | **15.5%** |
60
+ | verb_spatial_stair_f12 | 26.7 | 28.6 | 25.2 | **26.8%** |
61
+ | verb_spatial_stair_f18 | 34.3 | 37.1 | 35.2 | **35.5%** |
62
+ | verb_spatial_stair_f6 | 23.3 | 27.1 | 22.9 | **24.4%** |
63
+
64
+ ## spatial_size
65
+
66
+ | ckpt | s42 | s40 | s41 | 3-seed 均 |
67
+ |---|---|---|---|---|
68
+ | spatial_size_Lrandom_f12 | 38.1 | 30.0 | 33.3 | **33.8%** |
69
+ | spatial_size_Lrandom_f18 | 32.4 | 35.7 | 33.8 | **33.9%** |
70
+ | spatial_size_Lrandom_f6 | 24.3 | 21.0 | 24.8 | **23.3%** |
71
+ | spatial_size_random_f12 | 37.6 | 33.3 | 34.3 | **35.0%** |
72
+ | spatial_size_random_f18 | 27.6 | 30.5 | 28.1 | **28.7%** |
73
+ | spatial_size_random_f6 | 21.4 | 17.6 | 24.3 | **21.1%** |
74
+ | spatial_size_stair_f12 | 36.2 | 37.6 | 40.5 | **38.1%** |
75
+ | spatial_size_stair_f18 | 46.7 | 46.7 | 51.0 | **48.1%** |
76
+
77
+ ## spatial_object
78
+
79
+ | ckpt | s42 | s40 | s41 | 3-seed 均 |
80
+ |---|---|---|---|---|
81
+ | spatial_object_Lrandom_f12 | 40.0 | 40.0 | 38.6 | **39.5%** |
82
+ | spatial_object_Lrandom_f18 | 34.8 | 31.4 | 32.9 | **33.0%** |
83
+ | spatial_object_random_f12 | 27.1 | 32.4 | 29.5 | **29.6%** |
84
+ | spatial_object_random_f18 | 34.3 | 36.7 | 32.4 | **34.4%** |
85
+ | spatial_object_random_f6 | 17.6 | 17.6 | 15.7 | **16.9%** |
86
+ | spatial_object_stair_f12 | 30.5 | 39.0 | 34.8 | **34.7%** |
87
+ | spatial_object_stair_f18 | 32.9 | 34.8 | 28.6 | **32.1%** |
88
+ | spatial_object_stair_f6 | 28.6 | 32.9 | 26.2 | **29.2%** |
89
+
90
+ ## verb_size
91
+
92
+ | ckpt | s42 | s40 | s41 | 3-seed 均 |
93
+ |---|---|---|---|---|
94
+ | verb_size_Lrandom_f12 | 13.4 | 15.3 | 16.7 | **15.1%** |
95
+ | verb_size_Lrandom_f18 | 22.2 | 23.6 | 23.6 | **23.1%** |
96
+ | verb_size_Lrandom_f6 | 8.3 | 9.3 | 7.4 | **8.3%** |
97
+ | verb_size_random_f12 | 23.1 | 24.5 | 25.0 | **24.2%** |
98
+ | verb_size_random_f18 | 14.4 | 13.9 | 11.6 | **13.3%** |
99
+ | verb_size_random_f6 | 10.2 | 8.8 | 7.4 | **8.8%** |
100
+ | verb_size_stair1_f12 | 20.4 | 17.6 | 17.1 | **18.3%** |
101
+ | verb_size_stair1_f18 | 17.6 | 16.2 | 18.5 | **17.4%** |
102
+
103
+ ---
104
+ # 二、GR00T all_factor (full-factor, pi0.5 对齐, 3-seed)
105
+
106
+ | ckpt | s42 | s40 | s41 | 3-seed 均 |
107
+ |---|---|---|---|---|
108
+ | all_factor_Lrandom_f50_n100 | 46.5 | 43.5 | 49.5 | **46.5%** |
109
+ | all_factor_Lrandom_f50_n200 | 44.0 | 43.0 | 36.0 | **41.0%** |
110
+ | all_factor_Lrandom_f50_n400 | 45.5 | 48.0 | 47.5 | **47.0%** |
111
+ | all_factor_Lrandom_n200 | 34.0 | 26.0 | 35.0 | **31.6%** |
112
+ | all_factor_Lrandom_n400 | 31.0 | 33.0 | 37.0 | **33.6%** |
113
+ | all_factor_Lrandom_n800 | 32.0 | 31.5 | 38.0 | **33.8%** |
114
+ | all_factor_stairoriginal2_n200 | 38.5 | 35.0 | 38.5 | **37.3%** |
115
+ | all_factor_stairverbsize_n200 | 36.5 | 32.5 | 38.0 | **35.6%** |
116
+ | all_factor_stairverbsize_n400 | 44.5 | 41.5 | 38.5 | **41.5%** |
117
+ | all_factor_stairverbsize_n800 | 29.0 | 31.5 | 32.0 | **30.8%** |
118
+ | all_factor_stairvss_f50_n200 | 40.0 | 40.5 | 44.5 | **41.6%** |
119
+ | all_factor_stairvss_f50_n400 | 42.0 | 43.0 | 43.5 | **42.8%** |
120
+ | all_factor_stairvss_f50_n800 | 42.5 | 45.5 | 51.5 | **46.5%** |
121
+ | all_factor_true_random_n200 | 36.0 | 31.0 | 34.5 | **33.8%** |
122
+ | all_factor_true_random_n400 | 40.5 | 38.0 | 36.0 | **38.1%** |
123
+ | all_factor_true_random_n800 | 41.5 | 38.5 | 44.0 | **41.3%** |
124
+
125
+ ---
126
+ # 三、Conflict-experiment 双轴 env success (seed42, 200 ep)
127
+
128
+ 每个实验两个因子的 success(模型把任务做对、且作用在正确因子目标上)。
129
+
130
+ | experiment | GR00T 因子A | GR00T 因子B | Genie 因子A | Genie 因子B |
131
+ |---|---|---|---|---|
132
+ | color_object | 15.0% | 14.0% | 11.7% | 6.7% |
133
+ | color_size | 47.0% | 29.5% | 1.5% | 0.0% |
134
+ | color_spatial | 5.5% | 39.5% | 10.5% | 38.5% |
135
+ | size_object | 18.5% | 29.5% | 0.0% | 0.0% |
136
+ | spatial_object | 9.0% | 22.0% | 1.5% | 16.2% |
137
+ | spatial_size | 1.0% | 25.0% | 30.5% | 18.5% |
138
+ | verb_color | 24.5% | 24.0% | 13.5% | 11.5% |
139
+ | verb_object | 8.0% | 31.5% | 4.9% | 3.2% |
140
+ | verb_size | 17.0% | 9.0% | 19.5% | 22.5% |
141
+ | verb_spatial | 38.5% | 4.0% | 7.0% | 14.5% |
142
+
143
+ ---
144
+ # 四、VLM (Gemini-2.5-flash) FDR 对照
145
+
146
+ ```
147
+ ============================================================================================
148
+ Factor Dominance Rate (FDR) 三方对照 — FDR=(S_f1-S_f2)/(S_f1+S_f2), >0偏因子A <0偏因子B
149
+ env = 基于 ManiSkill 环境 success(每模型 200 episodes)
150
+ vlm = 基于 Gemini-2.5-flash 看视频判 factor_followed(每模型 400 视频/实验)
151
+ ============================================================================================
152
+ experiment A/B env_GR00T env_genie vlm_GR00T vlm_genie
153
+ --------------------------------------------------------------------------------------------
154
+ color_object color/shape +0.034 +0.034 +0.228 +0.222
155
+ color_size color/size +0.229 +1.000 +0.524 +0.309
156
+ color_spatial color/spati -0.756 -0.571 +0.084 +0.365
157
+ size_object size/shape -0.229 +0.602 -0.241 -0.114
158
+ spatial_object spati/shape -0.419 -0.713 -0.095 -0.209
159
+ spatial_size spati/size -0.923 +0.245 +0.110 +0.237
160
+ verb_color verb/color +0.010 +0.080 -0.068 -0.220
161
+ verb_object verb/shape -0.595 -0.062 -0.253 -0.250
162
+ verb_size verb/size +0.308 -0.071 +0.251 +0.326
163
+ verb_spatial verb/spati +0.812 -0.349 -0.122 -0.142
164
+ --------------------------------------------------------------------------------------------
165
+
166
+ VLM 判定明细(N_f1 / N_f2 / neither|error,共400):
167
+ ```
168
+
169
+ ---
170
+ # 五、pi0 (openpi pi-zero) pair-grid (硬口径, 3-seed)
171
+
172
+ > 与 GR00T pair-grid 同口径(同色同形干扰项),但 sim_backend=cpu(pi0 server+GPU-sim 冲突)。注意 pi0 与 GR00T 推理栈不同,数值横向比 GR00T 仅供参考。
173
+
174
+ ## pi0 — color_spatial
175
+
176
+ | ckpt | s42 | s40 | s41 | 3-seed 均 |
177
+ |---|---|---|---|---|
178
+ | color_spatial_Lrandom_f12 | 52.4 | 41.4 | 49.5 | **47.7%** |
179
+ | color_spatial_Lrandom_f18 | 53.8 | 41.0 | 48.6 | **47.8%** |
180
+ | color_spatial_Lrandom_f6 | 28.6 | 23.3 | 26.7 | **26.2%** |
181
+ | color_spatial_random_f12 | 38.6 | 32.4 | 37.6 | **36.2%** |
182
+ | color_spatial_random_f18 | 51.0 | 41.9 | 47.6 | **46.8%** |
183
+ | color_spatial_random_f6 | 27.6 | 21.4 | 23.3 | **24.1%** |
184
+ | color_spatial_stair_f12 | 49.0 | 38.1 | 42.4 | **43.1%** |
185
+ | color_spatial_stair_f18 | 60.0 | 49.0 | 55.7 | **54.9%** |
186
+ | color_spatial_stair_f6 | 31.0 | 24.8 | 28.6 | **28.1%** |
187
+
188
+ ## pi0 — color_size
189
+
190
+ | ckpt | s42 | s40 | s41 | 3-seed 均 |
191
+ |---|---|---|---|---|
192
+ | color_size_Lrandom_f12 | 27.3 | - | - | 1/3(部分) |
193
+ | color_size_Lrandom_f18 | 30.6 | 29.2 | 27.3 | **29.0%** |
194
+ | color_size_Lrandom_f6 | 26.4 | - | - | 1/3(部分) |
195
+ | color_size_random_f12 | - | - | - | 0/3(部分) |
196
+ | color_size_random_f18 | 28.7 | 25.9 | 23.1 | **25.9%** |
197
+ | color_size_random_f6 | - | - | - | 0/3(部分) |
198
+ | color_size_stair_f18 | 26.4 | 28.2 | 24.1 | **26.2%** |
199
+
200
+
201
+ ---
202
+ # 附:可复现配置(干扰项 / 口径明细)
203
+
204
+ ## 公共设置(pair-grid 全实验)
205
+ - 环境:`VerbObjectColor-v1`(ManiSkill),obs=rgb,control=pd_joint_pos
206
+ - task_difficulty=**1.5**,sim/render_backend=**gpu**,max_episode_steps=**150**,replan_steps=**10**
207
+ - 每 seed:cells × reps,target≈210 episodes;seeds=**{42,40,41}**(3-seed 平均)
208
+ - 干扰项核心:**同色**(且多数同形 cube)干扰项,强制模型靠目标因子区分,而非靠颜色/形状走捷径
209
+ - spatial 锚点(xy,米)+ 抖动 ±0.012:`left(-0.10,0) right(0.10,0) middle(0,0) front(0,0.10) behind(0,-0.10)`
210
+
211
+ ## color_size — HARD 口径
212
+ - verb=lift, shape=cube;指令 `"Lift the {size} {color} cube."`
213
+ - 干扰项 = 同色 cube,仅尺寸不同。(target_scale, [干扰scale...], 干扰数):
214
+ - small (0.72,[1.20],1) · large (1.34,[0.80],1) · smaller (0.82,[1.08],1) · larger (1.18,[0.92],1) · smallest (0.78,[1.00,1.24],**2**) · largest (1.26,[1.00,0.80],**2**)
215
+
216
+ ## color_size — EASY 口径
217
+ - 同 HARD 但干扰项恒为 1 个、对比拉大 ~2×:
218
+ - small (0.65,[1.35],1) · large (1.40,[0.65],1) · smaller (0.70,[1.30],1) · larger (1.30,[0.70],1) · smallest (0.65,[1.40],1) · largest (1.40,[0.65],1)
219
+
220
+ ## color_spatial — HARD 口径
221
+ - shape=cube,verb~{lift,grasp,push} 随机;指令 `"{Verb} the {color} cube {spatial_phrase}."`
222
+ - 干扰项 = 1 个**同色 cube**,放在**不同 spatial 锚点**;target_size_scale=1.0
223
+
224
+ ## verb_spatial — HARD 口径
225
+ - shape=cube,color 每 cell 随机;指令 `"{Verb} the cube {spatial_phrase}."`
226
+ - 干扰项 = 1 个**同色 cube**,放在**不同 spatial 锚点**
227
+
228
+ ## spatial_size — HARD 口径
229
+ - shape=cube,color&verb 随机;指令 `"{Verb} the {size} cube {spatial_phrase}."`
230
+ - 干扰项 = 1 个**同色 cube**,**不同 spatial + 不同尺寸**(目标偏小→干扰 scale=1.25;目标偏大→0.75)
231
+
232
+ ## spatial_object — HARD 口径
233
+ - color&verb 随机;指令 `"{Verb} the {shape} {spatial_phrase}."`
234
+ - 干扰项 = 1 个**同色、不同形状**物体,放在**不同 spatial 锚点**
235
+
236
+ ## verb_size — HARD 口径
237
+ - shape=cube,color 随机;指令 `"{Verb} the {size} cube."`
238
+ - 干扰项 = 同色 cube,仅尺寸不同(同 color_size HARD 的 HARD_SIZE 表)
239
+
240
+ ## all_factor — full-factor(对齐 pi0.5)
241
+ - 单指令全因子采样;sample_n=200, sample_seed=42, 200 episodes/seed
242
+ - max_episode_steps=**500**, **no_distractor_prob=0.70**, 默认 difficulty, sim=gpu;seeds={40,41,42}
243
+
244
+ ## pi0 pair-grid
245
+ - 与 GR00T pair-grid 同口径,但 **sim_backend=cpu**(pi0 server 与 GPU-sim 冲突);其余同上
results/genie/conflict_env/genie_color_object_ood_seed42.txt ADDED
@@ -0,0 +1,420 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OOD pairwise inference summary (Genie-Envisioner)
2
+ experiment=color_object
3
+ seed=42
4
+ total_episodes_target=200
5
+ num_episodes_per_run=1
6
+ total_runs=400
7
+ total_episodes_actual=400
8
+ third_seed=42
9
+ weight=/workspace/groot_eval/genie_ckpts/color_object
10
+ ltx_model=/workspace/groot_eval/LTX-Video
11
+ domain_name=conflict
12
+ sim_backend=cpu
13
+ max_episode_steps=300
14
+ replan_steps=5
15
+ num_inference_steps=5
16
+ seed_base=0
17
+
18
+ index pair_i pair_j run_type success run_name
19
+ 1 4 0 color 0/1 ood_001_color_object_4_0_color
20
+ 2 4 0 shape 1/1 ood_002_color_object_4_0_shape
21
+ 3 0 4 color 0/1 ood_003_color_object_0_4_color
22
+ 4 0 4 shape 0/1 ood_004_color_object_0_4_shape
23
+ 5 0 1 color 0/1 ood_005_color_object_0_1_color
24
+ 6 0 1 shape 0/1 ood_006_color_object_0_1_shape
25
+ 7 4 3 color 0/1 ood_007_color_object_4_3_color
26
+ 8 4 3 shape 0/1 ood_008_color_object_4_3_shape
27
+ 9 1 4 color 0/1 ood_009_color_object_1_4_color
28
+ 10 1 4 shape 0/1 ood_010_color_object_1_4_shape
29
+ 11 1 3 color 1/1 ood_011_color_object_1_3_color
30
+ 12 1 3 shape 0/1 ood_012_color_object_1_3_shape
31
+ 13 1 3 color 0/1 ood_013_color_object_1_3_color
32
+ 14 1 3 shape 0/1 ood_014_color_object_1_3_shape
33
+ 15 0 5 color 0/1 ood_015_color_object_0_5_color
34
+ 16 0 5 shape 0/1 ood_016_color_object_0_5_shape
35
+ 17 4 3 color 0/1 ood_017_color_object_4_3_color
36
+ 18 4 3 shape 1/1 ood_018_color_object_4_3_shape
37
+ 19 0 4 color 0/1 ood_019_color_object_0_4_color
38
+ 20 0 4 shape 0/1 ood_020_color_object_0_4_shape
39
+ 21 4 1 color 0/1 ood_021_color_object_4_1_color
40
+ 22 4 1 shape 0/1 ood_022_color_object_4_1_shape
41
+ 23 4 3 color 0/1 ood_023_color_object_4_3_color
42
+ 24 4 3 shape 0/1 ood_024_color_object_4_3_shape
43
+ 25 5 3 color 0/1 ood_025_color_object_5_3_color
44
+ 26 5 3 shape 0/1 ood_026_color_object_5_3_shape
45
+ 27 3 2 color 0/1 ood_027_color_object_3_2_color
46
+ 28 3 2 shape 0/1 ood_028_color_object_3_2_shape
47
+ 29 0 3 color 0/1 ood_029_color_object_0_3_color
48
+ 30 0 3 shape 0/1 ood_030_color_object_0_3_shape
49
+ 31 3 4 color 0/1 ood_031_color_object_3_4_color
50
+ 32 3 4 shape 0/1 ood_032_color_object_3_4_shape
51
+ 33 2 4 color 0/1 ood_033_color_object_2_4_color
52
+ 34 2 4 shape 0/1 ood_034_color_object_2_4_shape
53
+ 35 0 2 color 0/1 ood_035_color_object_0_2_color
54
+ 36 0 2 shape 0/1 ood_036_color_object_0_2_shape
55
+ 37 0 1 color 0/1 ood_037_color_object_0_1_color
56
+ 38 0 1 shape 0/1 ood_038_color_object_0_1_shape
57
+ 39 0 3 color 0/1 ood_039_color_object_0_3_color
58
+ 40 0 3 shape 1/1 ood_040_color_object_0_3_shape
59
+ 41 1 2 color 0/1 ood_041_color_object_1_2_color
60
+ 42 1 2 shape 0/1 ood_042_color_object_1_2_shape
61
+ 43 1 3 color 0/1 ood_043_color_object_1_3_color
62
+ 44 1 3 shape 0/1 ood_044_color_object_1_3_shape
63
+ 45 3 1 color 0/1 ood_045_color_object_3_1_color
64
+ 46 3 1 shape 0/1 ood_046_color_object_3_1_shape
65
+ 47 3 5 color 0/1 ood_047_color_object_3_5_color
66
+ 48 3 5 shape 0/1 ood_048_color_object_3_5_shape
67
+ 49 0 1 color 0/1 ood_049_color_object_0_1_color
68
+ 50 0 1 shape 0/1 ood_050_color_object_0_1_shape
69
+ 51 3 2 color 0/1 ood_051_color_object_3_2_color
70
+ 52 3 2 shape 0/1 ood_052_color_object_3_2_shape
71
+ 53 1 2 color 0/1 ood_053_color_object_1_2_color
72
+ 54 1 2 shape 0/1 ood_054_color_object_1_2_shape
73
+ 55 4 2 color 0/1 ood_055_color_object_4_2_color
74
+ 56 4 2 shape 0/1 ood_056_color_object_4_2_shape
75
+ 57 4 0 color 0/1 ood_057_color_object_4_0_color
76
+ 58 4 0 shape 0/1 ood_058_color_object_4_0_shape
77
+ 59 4 2 color 0/1 ood_059_color_object_4_2_color
78
+ 60 4 2 shape 0/1 ood_060_color_object_4_2_shape
79
+ 61 3 2 color 0/1 ood_061_color_object_3_2_color
80
+ 62 3 2 shape 0/1 ood_062_color_object_3_2_shape
81
+ 63 2 4 color 0/1 ood_063_color_object_2_4_color
82
+ 64 2 4 shape 0/1 ood_064_color_object_2_4_shape
83
+ 65 1 3 color 0/1 ood_065_color_object_1_3_color
84
+ 66 1 3 shape 0/1 ood_066_color_object_1_3_shape
85
+ 67 2 5 color 0/1 ood_067_color_object_2_5_color
86
+ 68 2 5 shape 0/1 ood_068_color_object_2_5_shape
87
+ 69 3 4 color 0/1 ood_069_color_object_3_4_color
88
+ 70 3 4 shape 0/1 ood_070_color_object_3_4_shape
89
+ 71 1 4 color 0/1 ood_071_color_object_1_4_color
90
+ 72 1 4 shape 0/1 ood_072_color_object_1_4_shape
91
+ 73 5 0 color 0/1 ood_073_color_object_5_0_color
92
+ 74 5 0 shape 0/1 ood_074_color_object_5_0_shape
93
+ 75 5 2 color 0/1 ood_075_color_object_5_2_color
94
+ 76 5 2 shape 1/1 ood_076_color_object_5_2_shape
95
+ 77 0 1 color 0/1 ood_077_color_object_0_1_color
96
+ 78 0 1 shape 0/1 ood_078_color_object_0_1_shape
97
+ 79 4 5 color 0/1 ood_079_color_object_4_5_color
98
+ 80 4 5 shape 0/1 ood_080_color_object_4_5_shape
99
+ 81 5 0 color 0/1 ood_081_color_object_5_0_color
100
+ 82 5 0 shape 0/1 ood_082_color_object_5_0_shape
101
+ 83 1 0 color 0/1 ood_083_color_object_1_0_color
102
+ 84 1 0 shape 0/1 ood_084_color_object_1_0_shape
103
+ 85 4 2 color 0/1 ood_085_color_object_4_2_color
104
+ 86 4 2 shape 0/1 ood_086_color_object_4_2_shape
105
+ 87 2 4 color 1/1 ood_087_color_object_2_4_color
106
+ 88 2 4 shape 0/1 ood_088_color_object_2_4_shape
107
+ 89 2 0 color 0/1 ood_089_color_object_2_0_color
108
+ 90 2 0 shape 0/1 ood_090_color_object_2_0_shape
109
+ 91 1 4 color 0/1 ood_091_color_object_1_4_color
110
+ 92 1 4 shape 0/1 ood_092_color_object_1_4_shape
111
+ 93 0 5 color 0/1 ood_093_color_object_0_5_color
112
+ 94 0 5 shape 0/1 ood_094_color_object_0_5_shape
113
+ 95 1 2 color 0/1 ood_095_color_object_1_2_color
114
+ 96 1 2 shape 0/1 ood_096_color_object_1_2_shape
115
+ 97 4 5 color 0/1 ood_097_color_object_4_5_color
116
+ 98 4 5 shape 0/1 ood_098_color_object_4_5_shape
117
+ 99 2 0 color 0/1 ood_099_color_object_2_0_color
118
+ 100 2 0 shape 0/1 ood_100_color_object_2_0_shape
119
+ 101 0 4 color 0/1 ood_101_color_object_0_4_color
120
+ 102 0 4 shape 0/1 ood_102_color_object_0_4_shape
121
+ 103 0 3 color 0/1 ood_103_color_object_0_3_color
122
+ 104 0 3 shape 0/1 ood_104_color_object_0_3_shape
123
+ 105 2 3 color 0/1 ood_105_color_object_2_3_color
124
+ 106 2 3 shape 0/1 ood_106_color_object_2_3_shape
125
+ 107 0 4 color 0/1 ood_107_color_object_0_4_color
126
+ 108 0 4 shape 0/1 ood_108_color_object_0_4_shape
127
+ 109 2 1 color 0/1 ood_109_color_object_2_1_color
128
+ 110 2 1 shape 0/1 ood_110_color_object_2_1_shape
129
+ 111 5 2 color 0/1 ood_111_color_object_5_2_color
130
+ 112 5 2 shape 0/1 ood_112_color_object_5_2_shape
131
+ 113 2 1 color 0/1 ood_113_color_object_2_1_color
132
+ 114 2 1 shape 0/1 ood_114_color_object_2_1_shape
133
+ 115 3 5 color 0/1 ood_115_color_object_3_5_color
134
+ 116 3 5 shape 0/1 ood_116_color_object_3_5_shape
135
+ 117 1 4 color 0/1 ood_117_color_object_1_4_color
136
+ 118 1 4 shape 0/1 ood_118_color_object_1_4_shape
137
+ 119 5 0 color 0/1 ood_119_color_object_5_0_color
138
+ 120 5 0 shape 0/1 ood_120_color_object_5_0_shape
139
+ 121 0 2 color 1/1 ood_121_color_object_0_2_color
140
+ 122 0 2 shape 1/1 ood_122_color_object_0_2_shape
141
+ 123 4 3 color 0/1 ood_123_color_object_4_3_color
142
+ 124 4 3 shape 0/1 ood_124_color_object_4_3_shape
143
+ 125 2 5 color 0/1 ood_125_color_object_2_5_color
144
+ 126 2 5 shape 0/1 ood_126_color_object_2_5_shape
145
+ 127 3 2 color 0/1 ood_127_color_object_3_2_color
146
+ 128 3 2 shape 0/1 ood_128_color_object_3_2_shape
147
+ 129 0 4 color 0/1 ood_129_color_object_0_4_color
148
+ 130 0 4 shape 0/1 ood_130_color_object_0_4_shape
149
+ 131 5 4 color 0/1 ood_131_color_object_5_4_color
150
+ 132 5 4 shape 0/1 ood_132_color_object_5_4_shape
151
+ 133 2 3 color 0/1 ood_133_color_object_2_3_color
152
+ 134 2 3 shape 0/1 ood_134_color_object_2_3_shape
153
+ 135 0 3 color 1/1 ood_135_color_object_0_3_color
154
+ 136 0 3 shape 0/1 ood_136_color_object_0_3_shape
155
+ 137 3 2 color 0/1 ood_137_color_object_3_2_color
156
+ 138 3 2 shape 0/1 ood_138_color_object_3_2_shape
157
+ 139 1 5 color 0/1 ood_139_color_object_1_5_color
158
+ 140 1 5 shape 0/1 ood_140_color_object_1_5_shape
159
+ 141 5 1 color 0/1 ood_141_color_object_5_1_color
160
+ 142 5 1 shape 0/1 ood_142_color_object_5_1_shape
161
+ 143 4 0 color 0/1 ood_143_color_object_4_0_color
162
+ 144 4 0 shape 0/1 ood_144_color_object_4_0_shape
163
+ 145 3 5 color 0/1 ood_145_color_object_3_5_color
164
+ 146 3 5 shape 0/1 ood_146_color_object_3_5_shape
165
+ 147 5 3 color 0/1 ood_147_color_object_5_3_color
166
+ 148 5 3 shape 0/1 ood_148_color_object_5_3_shape
167
+ 149 5 2 color 0/1 ood_149_color_object_5_2_color
168
+ 150 5 2 shape 0/1 ood_150_color_object_5_2_shape
169
+ 151 2 1 color 0/1 ood_151_color_object_2_1_color
170
+ 152 2 1 shape 0/1 ood_152_color_object_2_1_shape
171
+ 153 3 4 color 0/1 ood_153_color_object_3_4_color
172
+ 154 3 4 shape 0/1 ood_154_color_object_3_4_shape
173
+ 155 1 2 color 0/1 ood_155_color_object_1_2_color
174
+ 156 1 2 shape 0/1 ood_156_color_object_1_2_shape
175
+ 157 4 2 color 1/1 ood_157_color_object_4_2_color
176
+ 158 4 2 shape 0/1 ood_158_color_object_4_2_shape
177
+ 159 0 3 color 0/1 ood_159_color_object_0_3_color
178
+ 160 0 3 shape 0/1 ood_160_color_object_0_3_shape
179
+ 161 0 2 color 0/1 ood_161_color_object_0_2_color
180
+ 162 0 2 shape 0/1 ood_162_color_object_0_2_shape
181
+ 163 4 1 color 0/1 ood_163_color_object_4_1_color
182
+ 164 4 1 shape 0/1 ood_164_color_object_4_1_shape
183
+ 165 1 3 color 0/1 ood_165_color_object_1_3_color
184
+ 166 1 3 shape 0/1 ood_166_color_object_1_3_shape
185
+ 167 4 5 color 0/1 ood_167_color_object_4_5_color
186
+ 168 4 5 shape 0/1 ood_168_color_object_4_5_shape
187
+ 169 1 5 color 0/1 ood_169_color_object_1_5_color
188
+ 170 1 5 shape 0/1 ood_170_color_object_1_5_shape
189
+ 171 0 3 color 0/1 ood_171_color_object_0_3_color
190
+ 172 0 3 shape 0/1 ood_172_color_object_0_3_shape
191
+ 173 5 2 color 0/1 ood_173_color_object_5_2_color
192
+ 174 5 2 shape 0/1 ood_174_color_object_5_2_shape
193
+ 175 1 3 color 1/1 ood_175_color_object_1_3_color
194
+ 176 1 3 shape 0/1 ood_176_color_object_1_3_shape
195
+ 177 5 2 color 0/1 ood_177_color_object_5_2_color
196
+ 178 5 2 shape 0/1 ood_178_color_object_5_2_shape
197
+ 179 0 4 color 0/1 ood_179_color_object_0_4_color
198
+ 180 0 4 shape 0/1 ood_180_color_object_0_4_shape
199
+ 181 2 3 color 0/1 ood_181_color_object_2_3_color
200
+ 182 2 3 shape 0/1 ood_182_color_object_2_3_shape
201
+ 183 1 4 color 0/1 ood_183_color_object_1_4_color
202
+ 184 1 4 shape 0/1 ood_184_color_object_1_4_shape
203
+ 185 2 5 color 0/1 ood_185_color_object_2_5_color
204
+ 186 2 5 shape 0/1 ood_186_color_object_2_5_shape
205
+ 187 4 0 color 0/1 ood_187_color_object_4_0_color
206
+ 188 4 0 shape 0/1 ood_188_color_object_4_0_shape
207
+ 189 5 1 color 0/1 ood_189_color_object_5_1_color
208
+ 190 5 1 shape 0/1 ood_190_color_object_5_1_shape
209
+ 191 2 1 color 0/1 ood_191_color_object_2_1_color
210
+ 192 2 1 shape 0/1 ood_192_color_object_2_1_shape
211
+ 193 1 0 color 0/1 ood_193_color_object_1_0_color
212
+ 194 1 0 shape 0/1 ood_194_color_object_1_0_shape
213
+ 195 2 1 color 0/1 ood_195_color_object_2_1_color
214
+ 196 2 1 shape 0/1 ood_196_color_object_2_1_shape
215
+ 197 2 1 color 0/1 ood_197_color_object_2_1_color
216
+ 198 2 1 shape 0/1 ood_198_color_object_2_1_shape
217
+ 199 1 2 color 0/1 ood_199_color_object_1_2_color
218
+ 200 1 2 shape 1/1 ood_200_color_object_1_2_shape
219
+ 201 4 1 color 1/1 ood_201_color_object_4_1_color
220
+ 202 4 1 shape 1/1 ood_202_color_object_4_1_shape
221
+ 203 1 4 color 1/1 ood_203_color_object_1_4_color
222
+ 204 1 4 shape 1/1 ood_204_color_object_1_4_shape
223
+ 205 4 2 color 0/1 ood_205_color_object_4_2_color
224
+ 206 4 2 shape 1/1 ood_206_color_object_4_2_shape
225
+ 207 5 4 color 0/1 ood_207_color_object_5_4_color
226
+ 208 5 4 shape 0/1 ood_208_color_object_5_4_shape
227
+ 209 4 1 color 0/1 ood_209_color_object_4_1_color
228
+ 210 4 1 shape 1/1 ood_210_color_object_4_1_shape
229
+ 211 4 0 color 1/1 ood_211_color_object_4_0_color
230
+ 212 4 0 shape 0/1 ood_212_color_object_4_0_shape
231
+ 213 0 3 color 0/1 ood_213_color_object_0_3_color
232
+ 214 0 3 shape 0/1 ood_214_color_object_0_3_shape
233
+ 215 3 5 color 0/1 ood_215_color_object_3_5_color
234
+ 216 3 5 shape 0/1 ood_216_color_object_3_5_shape
235
+ 217 4 0 color 0/1 ood_217_color_object_4_0_color
236
+ 218 4 0 shape 0/1 ood_218_color_object_4_0_shape
237
+ 219 1 0 color 1/1 ood_219_color_object_1_0_color
238
+ 220 1 0 shape 0/1 ood_220_color_object_1_0_shape
239
+ 221 3 2 color 0/1 ood_221_color_object_3_2_color
240
+ 222 3 2 shape 0/1 ood_222_color_object_3_2_shape
241
+ 223 4 3 color 0/1 ood_223_color_object_4_3_color
242
+ 224 4 3 shape 1/1 ood_224_color_object_4_3_shape
243
+ 225 1 3 color 0/1 ood_225_color_object_1_3_color
244
+ 226 1 3 shape 0/1 ood_226_color_object_1_3_shape
245
+ 227 1 0 color 0/1 ood_227_color_object_1_0_color
246
+ 228 1 0 shape 1/1 ood_228_color_object_1_0_shape
247
+ 229 2 5 color 0/1 ood_229_color_object_2_5_color
248
+ 230 2 5 shape 0/1 ood_230_color_object_2_5_shape
249
+ 231 2 3 color 0/1 ood_231_color_object_2_3_color
250
+ 232 2 3 shape 0/1 ood_232_color_object_2_3_shape
251
+ 233 1 4 color 0/1 ood_233_color_object_1_4_color
252
+ 234 1 4 shape 0/1 ood_234_color_object_1_4_shape
253
+ 235 5 4 color 0/1 ood_235_color_object_5_4_color
254
+ 236 5 4 shape 0/1 ood_236_color_object_5_4_shape
255
+ 237 4 0 color 0/1 ood_237_color_object_4_0_color
256
+ 238 4 0 shape 1/1 ood_238_color_object_4_0_shape
257
+ 239 4 2 color 0/1 ood_239_color_object_4_2_color
258
+ 240 4 2 shape 0/1 ood_240_color_object_4_2_shape
259
+ 241 3 2 color 0/1 ood_241_color_object_3_2_color
260
+ 242 3 2 shape 0/1 ood_242_color_object_3_2_shape
261
+ 243 1 3 color 0/1 ood_243_color_object_1_3_color
262
+ 244 1 3 shape 0/1 ood_244_color_object_1_3_shape
263
+ 245 4 1 color 1/1 ood_245_color_object_4_1_color
264
+ 246 4 1 shape 0/1 ood_246_color_object_4_1_shape
265
+ 247 2 0 color 0/1 ood_247_color_object_2_0_color
266
+ 248 2 0 shape 0/1 ood_248_color_object_2_0_shape
267
+ 249 5 1 color 0/1 ood_249_color_object_5_1_color
268
+ 250 5 1 shape 0/1 ood_250_color_object_5_1_shape
269
+ 251 4 5 color 0/1 ood_251_color_object_4_5_color
270
+ 252 4 5 shape 0/1 ood_252_color_object_4_5_shape
271
+ 253 4 5 color 0/1 ood_253_color_object_4_5_color
272
+ 254 4 5 shape 0/1 ood_254_color_object_4_5_shape
273
+ 255 0 2 color 0/1 ood_255_color_object_0_2_color
274
+ 256 0 2 shape 0/1 ood_256_color_object_0_2_shape
275
+ 257 1 3 color 0/1 ood_257_color_object_1_3_color
276
+ 258 1 3 shape 0/1 ood_258_color_object_1_3_shape
277
+ 259 5 1 color 0/1 ood_259_color_object_5_1_color
278
+ 260 5 1 shape 0/1 ood_260_color_object_5_1_shape
279
+ 261 0 2 color 1/1 ood_261_color_object_0_2_color
280
+ 262 0 2 shape 0/1 ood_262_color_object_0_2_shape
281
+ 263 5 0 color 0/1 ood_263_color_object_5_0_color
282
+ 264 5 0 shape 0/1 ood_264_color_object_5_0_shape
283
+ 265 2 0 color 0/1 ood_265_color_object_2_0_color
284
+ 266 2 0 shape 1/1 ood_266_color_object_2_0_shape
285
+ 267 2 3 color 0/1 ood_267_color_object_2_3_color
286
+ 268 2 3 shape 0/1 ood_268_color_object_2_3_shape
287
+ 269 1 4 color 1/1 ood_269_color_object_1_4_color
288
+ 270 1 4 shape 0/1 ood_270_color_object_1_4_shape
289
+ 271 0 3 color 0/1 ood_271_color_object_0_3_color
290
+ 272 0 3 shape 0/1 ood_272_color_object_0_3_shape
291
+ 273 1 2 color 0/1 ood_273_color_object_1_2_color
292
+ 274 1 2 shape 1/1 ood_274_color_object_1_2_shape
293
+ 275 5 4 color 0/1 ood_275_color_object_5_4_color
294
+ 276 5 4 shape 0/1 ood_276_color_object_5_4_shape
295
+ 277 3 4 color 0/1 ood_277_color_object_3_4_color
296
+ 278 3 4 shape 0/1 ood_278_color_object_3_4_shape
297
+ 279 5 3 color 0/1 ood_279_color_object_5_3_color
298
+ 281 4 2 color 1/1 ood_281_color_object_4_2_color
299
+ 282 4 2 shape 0/1 ood_282_color_object_4_2_shape
300
+ 283 2 0 color 0/1 ood_283_color_object_2_0_color
301
+ 284 2 0 shape 0/1 ood_284_color_object_2_0_shape
302
+ 285 1 2 color 1/1 ood_285_color_object_1_2_color
303
+ 286 1 2 shape 0/1 ood_286_color_object_1_2_shape
304
+ 287 4 0 color 0/1 ood_287_color_object_4_0_color
305
+ 288 4 0 shape 0/1 ood_288_color_object_4_0_shape
306
+ 289 3 0 color 0/1 ood_289_color_object_3_0_color
307
+ 290 3 0 shape 0/1 ood_290_color_object_3_0_shape
308
+ 291 2 3 color 0/1 ood_291_color_object_2_3_color
309
+ 292 2 3 shape 1/1 ood_292_color_object_2_3_shape
310
+ 293 5 3 color 0/1 ood_293_color_object_5_3_color
311
+ 294 5 3 shape 0/1 ood_294_color_object_5_3_shape
312
+ 295 5 4 color 1/1 ood_295_color_object_5_4_color
313
+ 296 5 4 shape 0/1 ood_296_color_object_5_4_shape
314
+ 297 4 0 color 0/1 ood_297_color_object_4_0_color
315
+ 298 4 0 shape 0/1 ood_298_color_object_4_0_shape
316
+ 299 2 5 color 0/1 ood_299_color_object_2_5_color
317
+ 300 2 5 shape 0/1 ood_300_color_object_2_5_shape
318
+ 301 0 5 color 0/1 ood_301_color_object_0_5_color
319
+ 302 0 5 shape 0/1 ood_302_color_object_0_5_shape
320
+ 303 1 4 color 0/1 ood_303_color_object_1_4_color
321
+ 304 1 4 shape 0/1 ood_304_color_object_1_4_shape
322
+ 305 0 5 color 0/1 ood_305_color_object_0_5_color
323
+ 306 0 5 shape 0/1 ood_306_color_object_0_5_shape
324
+ 307 1 3 color 0/1 ood_307_color_object_1_3_color
325
+ 308 1 3 shape 0/1 ood_308_color_object_1_3_shape
326
+ 309 4 3 color 0/1 ood_309_color_object_4_3_color
327
+ 310 4 3 shape 0/1 ood_310_color_object_4_3_shape
328
+ 311 3 2 color 0/1 ood_311_color_object_3_2_color
329
+ 312 3 2 shape 0/1 ood_312_color_object_3_2_shape
330
+ 313 3 2 color 0/1 ood_313_color_object_3_2_color
331
+ 314 3 2 shape 0/1 ood_314_color_object_3_2_shape
332
+ 315 1 4 color 0/1 ood_315_color_object_1_4_color
333
+ 316 1 4 shape 0/1 ood_316_color_object_1_4_shape
334
+ 317 4 3 color 0/1 ood_317_color_object_4_3_color
335
+ 318 4 3 shape 0/1 ood_318_color_object_4_3_shape
336
+ 319 3 4 color 0/1 ood_319_color_object_3_4_color
337
+ 320 3 4 shape 0/1 ood_320_color_object_3_4_shape
338
+ 321 2 4 color 0/1 ood_321_color_object_2_4_color
339
+ 322 2 4 shape 0/1 ood_322_color_object_2_4_shape
340
+ 323 5 3 color 0/1 ood_323_color_object_5_3_color
341
+ 324 5 3 shape 0/1 ood_324_color_object_5_3_shape
342
+ 325 3 4 color 0/1 ood_325_color_object_3_4_color
343
+ 326 3 4 shape 0/1 ood_326_color_object_3_4_shape
344
+ 327 2 3 color 0/1 ood_327_color_object_2_3_color
345
+ 328 2 3 shape 0/1 ood_328_color_object_2_3_shape
346
+ 329 2 1 color 0/1 ood_329_color_object_2_1_color
347
+ 330 2 1 shape 0/1 ood_330_color_object_2_1_shape
348
+ 331 1 3 color 0/1 ood_331_color_object_1_3_color
349
+ 332 1 3 shape 0/1 ood_332_color_object_1_3_shape
350
+ 333 0 5 color 0/1 ood_333_color_object_0_5_color
351
+ 334 0 5 shape 0/1 ood_334_color_object_0_5_shape
352
+ 335 3 1 color 0/1 ood_335_color_object_3_1_color
353
+ 336 3 1 shape 0/1 ood_336_color_object_3_1_shape
354
+ 337 3 0 color 0/1 ood_337_color_object_3_0_color
355
+ 338 3 0 shape 0/1 ood_338_color_object_3_0_shape
356
+ 339 0 3 color 0/1 ood_339_color_object_0_3_color
357
+ 340 0 3 shape 0/1 ood_340_color_object_0_3_shape
358
+ 341 4 5 color 0/1 ood_341_color_object_4_5_color
359
+ 342 4 5 shape 0/1 ood_342_color_object_4_5_shape
360
+ 343 0 2 color 0/1 ood_343_color_object_0_2_color
361
+ 344 0 2 shape 0/1 ood_344_color_object_0_2_shape
362
+ 345 5 2 color 0/1 ood_345_color_object_5_2_color
363
+ 346 5 2 shape 0/1 ood_346_color_object_5_2_shape
364
+ 347 0 4 color 1/1 ood_347_color_object_0_4_color
365
+ 348 0 4 shape 0/1 ood_348_color_object_0_4_shape
366
+ 349 0 5 color 0/1 ood_349_color_object_0_5_color
367
+ 350 0 5 shape 0/1 ood_350_color_object_0_5_shape
368
+ 351 4 0 color 0/1 ood_351_color_object_4_0_color
369
+ 352 4 0 shape 0/1 ood_352_color_object_4_0_shape
370
+ 353 1 0 color 0/1 ood_353_color_object_1_0_color
371
+ 354 1 0 shape 1/1 ood_354_color_object_1_0_shape
372
+ 355 5 0 color 0/1 ood_355_color_object_5_0_color
373
+ 356 5 0 shape 0/1 ood_356_color_object_5_0_shape
374
+ 357 4 1 color 0/1 ood_357_color_object_4_1_color
375
+ 358 4 1 shape 0/1 ood_358_color_object_4_1_shape
376
+ 359 2 4 color 0/1 ood_359_color_object_2_4_color
377
+ 360 2 4 shape 0/1 ood_360_color_object_2_4_shape
378
+ 361 3 5 color 0/1 ood_361_color_object_3_5_color
379
+ 362 3 5 shape 0/1 ood_362_color_object_3_5_shape
380
+ 363 0 3 color 0/1 ood_363_color_object_0_3_color
381
+ 364 0 3 shape 0/1 ood_364_color_object_0_3_shape
382
+ 365 2 3 color 1/1 ood_365_color_object_2_3_color
383
+ 366 2 3 shape 0/1 ood_366_color_object_2_3_shape
384
+ 367 2 3 color 0/1 ood_367_color_object_2_3_color
385
+ 368 2 3 shape 0/1 ood_368_color_object_2_3_shape
386
+ 369 3 5 color 1/1 ood_369_color_object_3_5_color
387
+ 370 3 5 shape 0/1 ood_370_color_object_3_5_shape
388
+ 371 2 5 color 0/1 ood_371_color_object_2_5_color
389
+ 372 2 5 shape 0/1 ood_372_color_object_2_5_shape
390
+ 373 3 1 color 0/1 ood_373_color_object_3_1_color
391
+ 374 3 1 shape 0/1 ood_374_color_object_3_1_shape
392
+ 375 1 4 color 0/1 ood_375_color_object_1_4_color
393
+ 376 1 4 shape 0/1 ood_376_color_object_1_4_shape
394
+ 377 3 2 color 0/1 ood_377_color_object_3_2_color
395
+ 378 3 2 shape 0/1 ood_378_color_object_3_2_shape
396
+ 379 5 2 color 0/1 ood_379_color_object_5_2_color
397
+ 380 5 2 shape 0/1 ood_380_color_object_5_2_shape
398
+ 381 0 1 color 0/1 ood_381_color_object_0_1_color
399
+ 382 0 1 shape 1/1 ood_382_color_object_0_1_shape
400
+ 383 4 1 color 0/1 ood_383_color_object_4_1_color
401
+ 384 4 1 shape 0/1 ood_384_color_object_4_1_shape
402
+ 385 4 3 color 0/1 ood_385_color_object_4_3_color
403
+ 386 4 3 shape 0/1 ood_386_color_object_4_3_shape
404
+ 387 0 4 color 0/1 ood_387_color_object_0_4_color
405
+ 388 0 4 shape 0/1 ood_388_color_object_0_4_shape
406
+ 389 4 1 color 0/1 ood_389_color_object_4_1_color
407
+ 390 4 1 shape 0/1 ood_390_color_object_4_1_shape
408
+ 391 5 3 color 0/1 ood_391_color_object_5_3_color
409
+ 392 5 3 shape 0/1 ood_392_color_object_5_3_shape
410
+ 393 3 2 color 1/1 ood_393_color_object_3_2_color
411
+ 394 3 2 shape 0/1 ood_394_color_object_3_2_shape
412
+ 395 4 5 color 0/1 ood_395_color_object_4_5_color
413
+ 396 4 5 shape 0/1 ood_396_color_object_4_5_shape
414
+ 397 1 4 color 0/1 ood_397_color_object_1_4_color
415
+ 398 1 4 shape 0/1 ood_398_color_object_1_4_shape
416
+ 399 4 5 color 0/1 ood_399_color_object_4_5_color
417
+ 400 4 5 shape 1/1 ood_400_color_object_4_5_shape
418
+
419
+ overall_color_success=7/60 (11.7%)
420
+ overall_shape_success=4/60 (6.7%)
results/genie/conflict_env/genie_color_size_ood_seed42.txt ADDED
@@ -0,0 +1,421 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OOD pairwise inference summary (Genie-Envisioner)
2
+ experiment=color_size
3
+ seed=42
4
+ total_episodes_target=200
5
+ num_episodes_per_run=1
6
+ total_runs=400
7
+ total_episodes_actual=400
8
+ third_seed=42
9
+ weight=/workspace/groot_eval/genie_ckpts/color_size
10
+ ltx_model=/workspace/groot_eval/LTX-Video
11
+ domain_name=conflict
12
+ sim_backend=cpu
13
+ max_episode_steps=300
14
+ replan_steps=5
15
+ num_inference_steps=5
16
+ seed_base=0
17
+
18
+ index pair_i pair_j run_type success run_name
19
+ 1 5 4 color 0/1 ood_001_color_size_5_4_color
20
+ 2 5 4 size 0/1 ood_002_color_size_5_4_size
21
+ 3 0 1 color 0/1 ood_003_color_size_0_1_color
22
+ 4 0 1 size 0/1 ood_004_color_size_0_1_size
23
+ 5 0 1 color 0/1 ood_005_color_size_0_1_color
24
+ 6 0 1 size 0/1 ood_006_color_size_0_1_size
25
+ 7 5 4 color 0/1 ood_007_color_size_5_4_color
26
+ 8 5 4 size 0/1 ood_008_color_size_5_4_size
27
+ 9 2 3 color 0/1 ood_009_color_size_2_3_color
28
+ 10 2 3 size 0/1 ood_010_color_size_2_3_size
29
+ 11 1 0 color 0/1 ood_011_color_size_1_0_color
30
+ 12 1 0 size 0/1 ood_012_color_size_1_0_size
31
+ 13 1 0 color 0/1 ood_013_color_size_1_0_color
32
+ 14 1 0 size 0/1 ood_014_color_size_1_0_size
33
+ 15 1 0 color 0/1 ood_015_color_size_1_0_color
34
+ 16 1 0 size 0/1 ood_016_color_size_1_0_size
35
+ 17 5 4 color 0/1 ood_017_color_size_5_4_color
36
+ 18 5 4 size 0/1 ood_018_color_size_5_4_size
37
+ 19 0 1 color 0/1 ood_019_color_size_0_1_color
38
+ 20 0 1 size 0/1 ood_020_color_size_0_1_size
39
+ 21 5 4 color 0/1 ood_021_color_size_5_4_color
40
+ 22 5 4 size 0/1 ood_022_color_size_5_4_size
41
+ 23 5 4 color 0/1 ood_023_color_size_5_4_color
42
+ 24 5 4 size 0/1 ood_024_color_size_5_4_size
43
+ 25 4 5 color 0/1 ood_025_color_size_4_5_color
44
+ 26 4 5 size 0/1 ood_026_color_size_4_5_size
45
+ 27 0 1 color 0/1 ood_027_color_size_0_1_color
46
+ 28 0 1 size 0/1 ood_028_color_size_0_1_size
47
+ 29 4 5 color 0/1 ood_029_color_size_4_5_color
48
+ 30 4 5 size 0/1 ood_030_color_size_4_5_size
49
+ 31 3 2 color 0/1 ood_031_color_size_3_2_color
50
+ 32 3 2 size 0/1 ood_032_color_size_3_2_size
51
+ 33 0 1 color 0/1 ood_033_color_size_0_1_color
52
+ 34 0 1 size 0/1 ood_034_color_size_0_1_size
53
+ 35 0 1 color 0/1 ood_035_color_size_0_1_color
54
+ 36 0 1 size 0/1 ood_036_color_size_0_1_size
55
+ 37 0 1 color 0/1 ood_037_color_size_0_1_color
56
+ 38 0 1 size 0/1 ood_038_color_size_0_1_size
57
+ 39 1 0 color 0/1 ood_039_color_size_1_0_color
58
+ 40 1 0 size 0/1 ood_040_color_size_1_0_size
59
+ 41 1 0 color 0/1 ood_041_color_size_1_0_color
60
+ 42 1 0 size 0/1 ood_042_color_size_1_0_size
61
+ 43 4 5 color 0/1 ood_043_color_size_4_5_color
62
+ 44 4 5 size 0/1 ood_044_color_size_4_5_size
63
+ 45 4 5 color 0/1 ood_045_color_size_4_5_color
64
+ 46 4 5 size 0/1 ood_046_color_size_4_5_size
65
+ 47 0 1 color 0/1 ood_047_color_size_0_1_color
66
+ 48 0 1 size 0/1 ood_048_color_size_0_1_size
67
+ 49 4 5 color 0/1 ood_049_color_size_4_5_color
68
+ 50 4 5 size 0/1 ood_050_color_size_4_5_size
69
+ 51 1 0 color 0/1 ood_051_color_size_1_0_color
70
+ 52 1 0 size 0/1 ood_052_color_size_1_0_size
71
+ 53 5 4 color 0/1 ood_053_color_size_5_4_color
72
+ 54 5 4 size 0/1 ood_054_color_size_5_4_size
73
+ 55 5 4 color 0/1 ood_055_color_size_5_4_color
74
+ 56 5 4 size 0/1 ood_056_color_size_5_4_size
75
+ 57 5 4 color 0/1 ood_057_color_size_5_4_color
76
+ 58 5 4 size 0/1 ood_058_color_size_5_4_size
77
+ 59 4 5 color 0/1 ood_059_color_size_4_5_color
78
+ 60 4 5 size 0/1 ood_060_color_size_4_5_size
79
+ 61 3 2 color 0/1 ood_061_color_size_3_2_color
80
+ 62 3 2 size 0/1 ood_062_color_size_3_2_size
81
+ 63 1 0 color 0/1 ood_063_color_size_1_0_color
82
+ 64 1 0 size 0/1 ood_064_color_size_1_0_size
83
+ 65 3 2 color 0/1 ood_065_color_size_3_2_color
84
+ 66 3 2 size 0/1 ood_066_color_size_3_2_size
85
+ 67 4 5 color 0/1 ood_067_color_size_4_5_color
86
+ 68 4 5 size 0/1 ood_068_color_size_4_5_size
87
+ 69 2 3 color 0/1 ood_069_color_size_2_3_color
88
+ 70 2 3 size 0/1 ood_070_color_size_2_3_size
89
+ 71 0 1 color 0/1 ood_071_color_size_0_1_color
90
+ 72 0 1 size 0/1 ood_072_color_size_0_1_size
91
+ 73 1 0 color 0/1 ood_073_color_size_1_0_color
92
+ 74 1 0 size 0/1 ood_074_color_size_1_0_size
93
+ 75 5 4 color 0/1 ood_075_color_size_5_4_color
94
+ 76 5 4 size 0/1 ood_076_color_size_5_4_size
95
+ 77 3 2 color 0/1 ood_077_color_size_3_2_color
96
+ 78 3 2 size 0/1 ood_078_color_size_3_2_size
97
+ 79 2 3 color 0/1 ood_079_color_size_2_3_color
98
+ 80 2 3 size 0/1 ood_080_color_size_2_3_size
99
+ 81 2 3 color 0/1 ood_081_color_size_2_3_color
100
+ 82 2 3 size 0/1 ood_082_color_size_2_3_size
101
+ 83 1 0 color 0/1 ood_083_color_size_1_0_color
102
+ 84 1 0 size 0/1 ood_084_color_size_1_0_size
103
+ 85 1 0 color 0/1 ood_085_color_size_1_0_color
104
+ 86 1 0 size 0/1 ood_086_color_size_1_0_size
105
+ 87 2 3 color 1/1 ood_087_color_size_2_3_color
106
+ 88 2 3 size 0/1 ood_088_color_size_2_3_size
107
+ 89 0 1 color 0/1 ood_089_color_size_0_1_color
108
+ 90 0 1 size 0/1 ood_090_color_size_0_1_size
109
+ 91 0 1 color 0/1 ood_091_color_size_0_1_color
110
+ 92 0 1 size 0/1 ood_092_color_size_0_1_size
111
+ 93 3 2 color 0/1 ood_093_color_size_3_2_color
112
+ 94 3 2 size 0/1 ood_094_color_size_3_2_size
113
+ 95 0 1 color 0/1 ood_095_color_size_0_1_color
114
+ 96 0 1 size 0/1 ood_096_color_size_0_1_size
115
+ 97 2 3 color 0/1 ood_097_color_size_2_3_color
116
+ 98 2 3 size 0/1 ood_098_color_size_2_3_size
117
+ 99 2 3 color 1/1 ood_099_color_size_2_3_color
118
+ 100 2 3 size 0/1 ood_100_color_size_2_3_size
119
+ 101 4 5 color 0/1 ood_101_color_size_4_5_color
120
+ 102 4 5 size 0/1 ood_102_color_size_4_5_size
121
+ 103 2 3 color 0/1 ood_103_color_size_2_3_color
122
+ 104 2 3 size 0/1 ood_104_color_size_2_3_size
123
+ 105 0 1 color 0/1 ood_105_color_size_0_1_color
124
+ 106 0 1 size 0/1 ood_106_color_size_0_1_size
125
+ 107 5 4 color 0/1 ood_107_color_size_5_4_color
126
+ 108 5 4 size 0/1 ood_108_color_size_5_4_size
127
+ 109 3 2 color 0/1 ood_109_color_size_3_2_color
128
+ 110 3 2 size 0/1 ood_110_color_size_3_2_size
129
+ 111 4 5 color 0/1 ood_111_color_size_4_5_color
130
+ 112 4 5 size 0/1 ood_112_color_size_4_5_size
131
+ 113 0 1 color 0/1 ood_113_color_size_0_1_color
132
+ 114 0 1 size 0/1 ood_114_color_size_0_1_size
133
+ 115 3 2 color 0/1 ood_115_color_size_3_2_color
134
+ 116 3 2 size 0/1 ood_116_color_size_3_2_size
135
+ 117 0 1 color 0/1 ood_117_color_size_0_1_color
136
+ 118 0 1 size 0/1 ood_118_color_size_0_1_size
137
+ 119 4 5 color 0/1 ood_119_color_size_4_5_color
138
+ 120 4 5 size 0/1 ood_120_color_size_4_5_size
139
+ 121 2 3 color 0/1 ood_121_color_size_2_3_color
140
+ 122 2 3 size 0/1 ood_122_color_size_2_3_size
141
+ 123 5 4 color 0/1 ood_123_color_size_5_4_color
142
+ 124 5 4 size 0/1 ood_124_color_size_5_4_size
143
+ 125 4 5 color 0/1 ood_125_color_size_4_5_color
144
+ 126 4 5 size 0/1 ood_126_color_size_4_5_size
145
+ 127 2 3 color 0/1 ood_127_color_size_2_3_color
146
+ 128 2 3 size 0/1 ood_128_color_size_2_3_size
147
+ 129 4 5 color 0/1 ood_129_color_size_4_5_color
148
+ 130 4 5 size 0/1 ood_130_color_size_4_5_size
149
+ 131 1 0 color 0/1 ood_131_color_size_1_0_color
150
+ 132 1 0 size 0/1 ood_132_color_size_1_0_size
151
+ 133 5 4 color 0/1 ood_133_color_size_5_4_color
152
+ 134 5 4 size 0/1 ood_134_color_size_5_4_size
153
+ 135 0 1 color 0/1 ood_135_color_size_0_1_color
154
+ 136 0 1 size 0/1 ood_136_color_size_0_1_size
155
+ 137 0 1 color 0/1 ood_137_color_size_0_1_color
156
+ 138 0 1 size 0/1 ood_138_color_size_0_1_size
157
+ 139 5 4 color 0/1 ood_139_color_size_5_4_color
158
+ 140 5 4 size 0/1 ood_140_color_size_5_4_size
159
+ 141 1 0 color 0/1 ood_141_color_size_1_0_color
160
+ 142 1 0 size 0/1 ood_142_color_size_1_0_size
161
+ 143 2 3 color 0/1 ood_143_color_size_2_3_color
162
+ 144 2 3 size 0/1 ood_144_color_size_2_3_size
163
+ 145 0 1 color 0/1 ood_145_color_size_0_1_color
164
+ 146 0 1 size 0/1 ood_146_color_size_0_1_size
165
+ 147 1 0 color 0/1 ood_147_color_size_1_0_color
166
+ 148 1 0 size 0/1 ood_148_color_size_1_0_size
167
+ 149 0 1 color 0/1 ood_149_color_size_0_1_color
168
+ 150 0 1 size 0/1 ood_150_color_size_0_1_size
169
+ 151 3 2 color 0/1 ood_151_color_size_3_2_color
170
+ 152 3 2 size 0/1 ood_152_color_size_3_2_size
171
+ 153 2 3 color 0/1 ood_153_color_size_2_3_color
172
+ 154 2 3 size 0/1 ood_154_color_size_2_3_size
173
+ 155 3 2 color 0/1 ood_155_color_size_3_2_color
174
+ 156 3 2 size 0/1 ood_156_color_size_3_2_size
175
+ 157 5 4 color 0/1 ood_157_color_size_5_4_color
176
+ 158 5 4 size 0/1 ood_158_color_size_5_4_size
177
+ 159 2 3 color 0/1 ood_159_color_size_2_3_color
178
+ 160 2 3 size 0/1 ood_160_color_size_2_3_size
179
+ 161 1 0 color 0/1 ood_161_color_size_1_0_color
180
+ 162 1 0 size 0/1 ood_162_color_size_1_0_size
181
+ 163 2 3 color 0/1 ood_163_color_size_2_3_color
182
+ 164 2 3 size 0/1 ood_164_color_size_2_3_size
183
+ 165 2 3 color 0/1 ood_165_color_size_2_3_color
184
+ 166 2 3 size 0/1 ood_166_color_size_2_3_size
185
+ 167 1 0 color 0/1 ood_167_color_size_1_0_color
186
+ 168 1 0 size 0/1 ood_168_color_size_1_0_size
187
+ 169 5 4 color 0/1 ood_169_color_size_5_4_color
188
+ 170 5 4 size 0/1 ood_170_color_size_5_4_size
189
+ 171 2 3 color 0/1 ood_171_color_size_2_3_color
190
+ 172 2 3 size 0/1 ood_172_color_size_2_3_size
191
+ 173 5 4 color 0/1 ood_173_color_size_5_4_color
192
+ 174 5 4 size 0/1 ood_174_color_size_5_4_size
193
+ 175 5 4 color 0/1 ood_175_color_size_5_4_color
194
+ 176 5 4 size 0/1 ood_176_color_size_5_4_size
195
+ 177 5 4 color 0/1 ood_177_color_size_5_4_color
196
+ 178 5 4 size 0/1 ood_178_color_size_5_4_size
197
+ 179 0 1 color 0/1 ood_179_color_size_0_1_color
198
+ 180 0 1 size 0/1 ood_180_color_size_0_1_size
199
+ 181 4 5 color 0/1 ood_181_color_size_4_5_color
200
+ 182 4 5 size 0/1 ood_182_color_size_4_5_size
201
+ 183 5 4 color 0/1 ood_183_color_size_5_4_color
202
+ 184 5 4 size 0/1 ood_184_color_size_5_4_size
203
+ 185 1 0 color 0/1 ood_185_color_size_1_0_color
204
+ 186 1 0 size 0/1 ood_186_color_size_1_0_size
205
+ 187 4 5 color 0/1 ood_187_color_size_4_5_color
206
+ 188 4 5 size 0/1 ood_188_color_size_4_5_size
207
+ 189 5 4 color 0/1 ood_189_color_size_5_4_color
208
+ 190 5 4 size 0/1 ood_190_color_size_5_4_size
209
+ 191 1 0 color 0/1 ood_191_color_size_1_0_color
210
+ 192 1 0 size 0/1 ood_192_color_size_1_0_size
211
+ 193 1 0 color 0/1 ood_193_color_size_1_0_color
212
+ 194 1 0 size 0/1 ood_194_color_size_1_0_size
213
+ 195 3 2 color 0/1 ood_195_color_size_3_2_color
214
+ 196 3 2 size 0/1 ood_196_color_size_3_2_size
215
+ 197 3 2 color 0/1 ood_197_color_size_3_2_color
216
+ 198 3 2 size 0/1 ood_198_color_size_3_2_size
217
+ 199 2 3 color 0/1 ood_199_color_size_2_3_color
218
+ 200 2 3 size 0/1 ood_200_color_size_2_3_size
219
+ 201 5 4 color 0/1 ood_201_color_size_5_4_color
220
+ 202 5 4 size 0/1 ood_202_color_size_5_4_size
221
+ 203 5 4 color 0/1 ood_203_color_size_5_4_color
222
+ 204 5 4 size 0/1 ood_204_color_size_5_4_size
223
+ 205 4 5 color 0/1 ood_205_color_size_4_5_color
224
+ 206 4 5 size 0/1 ood_206_color_size_4_5_size
225
+ 207 1 0 color 0/1 ood_207_color_size_1_0_color
226
+ 208 1 0 size 0/1 ood_208_color_size_1_0_size
227
+ 209 5 4 color 0/1 ood_209_color_size_5_4_color
228
+ 210 5 4 size 0/1 ood_210_color_size_5_4_size
229
+ 211 2 3 color 0/1 ood_211_color_size_2_3_color
230
+ 212 2 3 size 0/1 ood_212_color_size_2_3_size
231
+ 213 0 1 color 0/1 ood_213_color_size_0_1_color
232
+ 214 0 1 size 0/1 ood_214_color_size_0_1_size
233
+ 215 1 0 color 0/1 ood_215_color_size_1_0_color
234
+ 216 1 0 size 0/1 ood_216_color_size_1_0_size
235
+ 217 0 1 color 0/1 ood_217_color_size_0_1_color
236
+ 218 0 1 size 0/1 ood_218_color_size_0_1_size
237
+ 219 2 3 color 0/1 ood_219_color_size_2_3_color
238
+ 220 2 3 size 0/1 ood_220_color_size_2_3_size
239
+ 221 3 2 color 0/1 ood_221_color_size_3_2_color
240
+ 222 3 2 size 0/1 ood_222_color_size_3_2_size
241
+ 223 2 3 color 0/1 ood_223_color_size_2_3_color
242
+ 224 2 3 size 0/1 ood_224_color_size_2_3_size
243
+ 225 0 1 color 0/1 ood_225_color_size_0_1_color
244
+ 226 0 1 size 0/1 ood_226_color_size_0_1_size
245
+ 227 1 0 color 0/1 ood_227_color_size_1_0_color
246
+ 228 1 0 size 0/1 ood_228_color_size_1_0_size
247
+ 229 4 5 color 0/1 ood_229_color_size_4_5_color
248
+ 230 4 5 size 0/1 ood_230_color_size_4_5_size
249
+ 231 5 4 color 0/1 ood_231_color_size_5_4_color
250
+ 232 5 4 size 0/1 ood_232_color_size_5_4_size
251
+ 233 2 3 color 0/1 ood_233_color_size_2_3_color
252
+ 234 2 3 size 0/1 ood_234_color_size_2_3_size
253
+ 235 1 0 color 0/1 ood_235_color_size_1_0_color
254
+ 236 1 0 size 0/1 ood_236_color_size_1_0_size
255
+ 237 5 4 color 0/1 ood_237_color_size_5_4_color
256
+ 238 5 4 size 0/1 ood_238_color_size_5_4_size
257
+ 239 3 2 color 0/1 ood_239_color_size_3_2_color
258
+ 240 3 2 size 0/1 ood_240_color_size_3_2_size
259
+ 241 3 2 color 0/1 ood_241_color_size_3_2_color
260
+ 242 3 2 size 0/1 ood_242_color_size_3_2_size
261
+ 243 5 4 color 0/1 ood_243_color_size_5_4_color
262
+ 244 5 4 size 0/1 ood_244_color_size_5_4_size
263
+ 245 3 2 color 0/1 ood_245_color_size_3_2_color
264
+ 246 3 2 size 0/1 ood_246_color_size_3_2_size
265
+ 247 1 0 color 0/1 ood_247_color_size_1_0_color
266
+ 248 1 0 size 0/1 ood_248_color_size_1_0_size
267
+ 249 2 3 color 0/1 ood_249_color_size_2_3_color
268
+ 250 2 3 size 0/1 ood_250_color_size_2_3_size
269
+ 251 1 0 color 0/1 ood_251_color_size_1_0_color
270
+ 252 1 0 size 0/1 ood_252_color_size_1_0_size
271
+ 253 1 0 color 0/1 ood_253_color_size_1_0_color
272
+ 254 1 0 size 0/1 ood_254_color_size_1_0_size
273
+ 255 5 4 color 0/1 ood_255_color_size_5_4_color
274
+ 256 5 4 size 0/1 ood_256_color_size_5_4_size
275
+ 257 4 5 color 0/1 ood_257_color_size_4_5_color
276
+ 258 4 5 size 0/1 ood_258_color_size_4_5_size
277
+ 259 4 5 color 0/1 ood_259_color_size_4_5_color
278
+ 260 4 5 size 0/1 ood_260_color_size_4_5_size
279
+ 261 2 3 color 0/1 ood_261_color_size_2_3_color
280
+ 262 2 3 size 0/1 ood_262_color_size_2_3_size
281
+ 263 5 4 color 0/1 ood_263_color_size_5_4_color
282
+ 264 5 4 size 0/1 ood_264_color_size_5_4_size
283
+ 265 4 5 color 0/1 ood_265_color_size_4_5_color
284
+ 266 4 5 size 0/1 ood_266_color_size_4_5_size
285
+ 267 3 2 color 0/1 ood_267_color_size_3_2_color
286
+ 268 3 2 size 0/1 ood_268_color_size_3_2_size
287
+ 269 4 5 color 0/1 ood_269_color_size_4_5_color
288
+ 270 4 5 size 0/1 ood_270_color_size_4_5_size
289
+ 271 3 2 color 0/1 ood_271_color_size_3_2_color
290
+ 272 3 2 size 0/1 ood_272_color_size_3_2_size
291
+ 273 2 3 color 0/1 ood_273_color_size_2_3_color
292
+ 274 2 3 size 0/1 ood_274_color_size_2_3_size
293
+ 275 1 0 color 0/1 ood_275_color_size_1_0_color
294
+ 276 1 0 size 0/1 ood_276_color_size_1_0_size
295
+ 277 1 0 color 0/1 ood_277_color_size_1_0_color
296
+ 278 1 0 size 0/1 ood_278_color_size_1_0_size
297
+ 279 4 5 color 0/1 ood_279_color_size_4_5_color
298
+ 280 4 5 size 0/1 ood_280_color_size_4_5_size
299
+ 281 3 2 color 0/1 ood_281_color_size_3_2_color
300
+ 282 3 2 size 0/1 ood_282_color_size_3_2_size
301
+ 283 0 1 color 0/1 ood_283_color_size_0_1_color
302
+ 284 0 1 size 0/1 ood_284_color_size_0_1_size
303
+ 285 0 1 color 0/1 ood_285_color_size_0_1_color
304
+ 286 0 1 size 0/1 ood_286_color_size_0_1_size
305
+ 287 0 1 color 0/1 ood_287_color_size_0_1_color
306
+ 288 0 1 size 0/1 ood_288_color_size_0_1_size
307
+ 289 1 0 color 0/1 ood_289_color_size_1_0_color
308
+ 290 1 0 size 0/1 ood_290_color_size_1_0_size
309
+ 291 5 4 color 0/1 ood_291_color_size_5_4_color
310
+ 292 5 4 size 0/1 ood_292_color_size_5_4_size
311
+ 293 1 0 color 0/1 ood_293_color_size_1_0_color
312
+ 294 1 0 size 0/1 ood_294_color_size_1_0_size
313
+ 295 5 4 color 0/1 ood_295_color_size_5_4_color
314
+ 296 5 4 size 0/1 ood_296_color_size_5_4_size
315
+ 297 3 2 color 0/1 ood_297_color_size_3_2_color
316
+ 298 3 2 size 0/1 ood_298_color_size_3_2_size
317
+ 299 4 5 color 0/1 ood_299_color_size_4_5_color
318
+ 300 4 5 size 0/1 ood_300_color_size_4_5_size
319
+ 301 0 1 color 0/1 ood_301_color_size_0_1_color
320
+ 302 0 1 size 0/1 ood_302_color_size_0_1_size
321
+ 303 3 2 color 0/1 ood_303_color_size_3_2_color
322
+ 304 3 2 size 0/1 ood_304_color_size_3_2_size
323
+ 305 3 2 color 0/1 ood_305_color_size_3_2_color
324
+ 306 3 2 size 0/1 ood_306_color_size_3_2_size
325
+ 307 4 5 color 0/1 ood_307_color_size_4_5_color
326
+ 308 4 5 size 0/1 ood_308_color_size_4_5_size
327
+ 309 3 2 color 0/1 ood_309_color_size_3_2_color
328
+ 310 3 2 size 0/1 ood_310_color_size_3_2_size
329
+ 311 4 5 color 0/1 ood_311_color_size_4_5_color
330
+ 312 4 5 size 0/1 ood_312_color_size_4_5_size
331
+ 313 2 3 color 0/1 ood_313_color_size_2_3_color
332
+ 314 2 3 size 0/1 ood_314_color_size_2_3_size
333
+ 315 4 5 color 0/1 ood_315_color_size_4_5_color
334
+ 316 4 5 size 0/1 ood_316_color_size_4_5_size
335
+ 317 0 1 color 0/1 ood_317_color_size_0_1_color
336
+ 318 0 1 size 0/1 ood_318_color_size_0_1_size
337
+ 319 5 4 color 0/1 ood_319_color_size_5_4_color
338
+ 320 5 4 size 0/1 ood_320_color_size_5_4_size
339
+ 321 5 4 color 0/1 ood_321_color_size_5_4_color
340
+ 322 5 4 size 0/1 ood_322_color_size_5_4_size
341
+ 323 0 1 color 0/1 ood_323_color_size_0_1_color
342
+ 324 0 1 size 0/1 ood_324_color_size_0_1_size
343
+ 325 5 4 color 0/1 ood_325_color_size_5_4_color
344
+ 326 5 4 size 0/1 ood_326_color_size_5_4_size
345
+ 327 4 5 color 0/1 ood_327_color_size_4_5_color
346
+ 328 4 5 size 0/1 ood_328_color_size_4_5_size
347
+ 329 2 3 color 0/1 ood_329_color_size_2_3_color
348
+ 330 2 3 size 0/1 ood_330_color_size_2_3_size
349
+ 331 5 4 color 0/1 ood_331_color_size_5_4_color
350
+ 332 5 4 size 0/1 ood_332_color_size_5_4_size
351
+ 333 2 3 color 0/1 ood_333_color_size_2_3_color
352
+ 334 2 3 size 0/1 ood_334_color_size_2_3_size
353
+ 335 0 1 color 0/1 ood_335_color_size_0_1_color
354
+ 336 0 1 size 0/1 ood_336_color_size_0_1_size
355
+ 337 2 3 color 0/1 ood_337_color_size_2_3_color
356
+ 338 2 3 size 0/1 ood_338_color_size_2_3_size
357
+ 339 3 2 color 0/1 ood_339_color_size_3_2_color
358
+ 340 3 2 size 0/1 ood_340_color_size_3_2_size
359
+ 341 1 0 color 0/1 ood_341_color_size_1_0_color
360
+ 342 1 0 size 0/1 ood_342_color_size_1_0_size
361
+ 343 3 2 color 0/1 ood_343_color_size_3_2_color
362
+ 344 3 2 size 0/1 ood_344_color_size_3_2_size
363
+ 345 0 1 color 0/1 ood_345_color_size_0_1_color
364
+ 346 0 1 size 0/1 ood_346_color_size_0_1_size
365
+ 347 5 4 color 1/1 ood_347_color_size_5_4_color
366
+ 348 5 4 size 0/1 ood_348_color_size_5_4_size
367
+ 349 5 4 color 0/1 ood_349_color_size_5_4_color
368
+ 350 5 4 size 0/1 ood_350_color_size_5_4_size
369
+ 351 2 3 color 0/1 ood_351_color_size_2_3_color
370
+ 352 2 3 size 0/1 ood_352_color_size_2_3_size
371
+ 353 4 5 color 0/1 ood_353_color_size_4_5_color
372
+ 354 4 5 size 0/1 ood_354_color_size_4_5_size
373
+ 355 1 0 color 0/1 ood_355_color_size_1_0_color
374
+ 356 1 0 size 0/1 ood_356_color_size_1_0_size
375
+ 357 4 5 color 0/1 ood_357_color_size_4_5_color
376
+ 358 4 5 size 0/1 ood_358_color_size_4_5_size
377
+ 359 0 1 color 0/1 ood_359_color_size_0_1_color
378
+ 360 0 1 size 0/1 ood_360_color_size_0_1_size
379
+ 361 5 4 color 0/1 ood_361_color_size_5_4_color
380
+ 362 5 4 size 0/1 ood_362_color_size_5_4_size
381
+ 363 2 3 color 0/1 ood_363_color_size_2_3_color
382
+ 364 2 3 size 0/1 ood_364_color_size_2_3_size
383
+ 365 5 4 color 0/1 ood_365_color_size_5_4_color
384
+ 366 5 4 size 0/1 ood_366_color_size_5_4_size
385
+ 367 4 5 color 0/1 ood_367_color_size_4_5_color
386
+ 368 4 5 size 0/1 ood_368_color_size_4_5_size
387
+ 369 4 5 color 0/1 ood_369_color_size_4_5_color
388
+ 370 4 5 size 0/1 ood_370_color_size_4_5_size
389
+ 371 1 0 color 0/1 ood_371_color_size_1_0_color
390
+ 372 1 0 size 0/1 ood_372_color_size_1_0_size
391
+ 373 1 0 color 0/1 ood_373_color_size_1_0_color
392
+ 374 1 0 size 0/1 ood_374_color_size_1_0_size
393
+ 375 2 3 color 0/1 ood_375_color_size_2_3_color
394
+ 376 2 3 size 0/1 ood_376_color_size_2_3_size
395
+ 377 1 0 color 0/1 ood_377_color_size_1_0_color
396
+ 378 1 0 size 0/1 ood_378_color_size_1_0_size
397
+ 379 4 5 color 0/1 ood_379_color_size_4_5_color
398
+ 380 4 5 size 0/1 ood_380_color_size_4_5_size
399
+ 381 4 5 color 0/1 ood_381_color_size_4_5_color
400
+ 382 4 5 size 0/1 ood_382_color_size_4_5_size
401
+ 383 0 1 color 0/1 ood_383_color_size_0_1_color
402
+ 384 0 1 size 0/1 ood_384_color_size_0_1_size
403
+ 385 4 5 color 0/1 ood_385_color_size_4_5_color
404
+ 386 4 5 size 0/1 ood_386_color_size_4_5_size
405
+ 387 2 3 color 0/1 ood_387_color_size_2_3_color
406
+ 388 2 3 size 0/1 ood_388_color_size_2_3_size
407
+ 389 3 2 color 0/1 ood_389_color_size_3_2_color
408
+ 390 3 2 size 0/1 ood_390_color_size_3_2_size
409
+ 391 0 1 color 0/1 ood_391_color_size_0_1_color
410
+ 392 0 1 size 0/1 ood_392_color_size_0_1_size
411
+ 393 0 1 color 0/1 ood_393_color_size_0_1_color
412
+ 394 0 1 size 0/1 ood_394_color_size_0_1_size
413
+ 395 2 3 color 0/1 ood_395_color_size_2_3_color
414
+ 396 2 3 size 0/1 ood_396_color_size_2_3_size
415
+ 397 2 3 color 0/1 ood_397_color_size_2_3_color
416
+ 398 2 3 size 0/1 ood_398_color_size_2_3_size
417
+ 399 1 0 color 0/1 ood_399_color_size_1_0_color
418
+ 400 1 0 size 0/1 ood_400_color_size_1_0_size
419
+
420
+ overall_color_success=3/200 (1.5%)
421
+ overall_size_success=0/200 (0.0%)
results/genie/conflict_env/genie_color_spatial_ood_seed42.txt ADDED
@@ -0,0 +1,421 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OOD pairwise inference summary (Genie-Envisioner)
2
+ experiment=color_spatial
3
+ seed=42
4
+ total_episodes_target=200
5
+ num_episodes_per_run=1
6
+ total_runs=400
7
+ total_episodes_actual=400
8
+ third_seed=42
9
+ weight=/workspace/groot_eval/genie_ckpts/color_spatial
10
+ ltx_model=/workspace/groot_eval/LTX-Video
11
+ domain_name=conflict
12
+ sim_backend=cpu
13
+ max_episode_steps=300
14
+ replan_steps=5
15
+ num_inference_steps=5
16
+ seed_base=0
17
+
18
+ index pair_i pair_j run_type success run_name
19
+ 1 0 4 color 0/1 ood_001_color_spatial_0_4_color
20
+ 2 0 4 spatial 0/1 ood_002_color_spatial_0_4_spatial
21
+ 3 0 1 color 0/1 ood_003_color_spatial_0_1_color
22
+ 4 0 1 spatial 1/1 ood_004_color_spatial_0_1_spatial
23
+ 5 2 0 color 0/1 ood_005_color_spatial_2_0_color
24
+ 6 2 0 spatial 0/1 ood_006_color_spatial_2_0_spatial
25
+ 7 1 4 color 0/1 ood_007_color_spatial_1_4_color
26
+ 8 1 4 spatial 0/1 ood_008_color_spatial_1_4_spatial
27
+ 9 1 4 color 1/1 ood_009_color_spatial_1_4_color
28
+ 10 1 4 spatial 0/1 ood_010_color_spatial_1_4_spatial
29
+ 11 1 0 color 0/1 ood_011_color_spatial_1_0_color
30
+ 12 1 0 spatial 0/1 ood_012_color_spatial_1_0_spatial
31
+ 13 0 4 color 0/1 ood_013_color_spatial_0_4_color
32
+ 14 0 4 spatial 0/1 ood_014_color_spatial_0_4_spatial
33
+ 15 4 1 color 0/1 ood_015_color_spatial_4_1_color
34
+ 16 4 1 spatial 1/1 ood_016_color_spatial_4_1_spatial
35
+ 17 0 3 color 0/1 ood_017_color_spatial_0_3_color
36
+ 18 0 3 spatial 1/1 ood_018_color_spatial_0_3_spatial
37
+ 19 4 2 color 0/1 ood_019_color_spatial_4_2_color
38
+ 20 4 2 spatial 0/1 ood_020_color_spatial_4_2_spatial
39
+ 21 3 1 color 0/1 ood_021_color_spatial_3_1_color
40
+ 22 3 1 spatial 0/1 ood_022_color_spatial_3_1_spatial
41
+ 23 0 2 color 0/1 ood_023_color_spatial_0_2_color
42
+ 24 0 2 spatial 0/1 ood_024_color_spatial_0_2_spatial
43
+ 25 0 1 color 0/1 ood_025_color_spatial_0_1_color
44
+ 26 0 1 spatial 0/1 ood_026_color_spatial_0_1_spatial
45
+ 27 0 3 color 0/1 ood_027_color_spatial_0_3_color
46
+ 28 0 3 spatial 1/1 ood_028_color_spatial_0_3_spatial
47
+ 29 1 3 color 0/1 ood_029_color_spatial_1_3_color
48
+ 30 1 3 spatial 1/1 ood_030_color_spatial_1_3_spatial
49
+ 31 1 4 color 0/1 ood_031_color_spatial_1_4_color
50
+ 32 1 4 spatial 0/1 ood_032_color_spatial_1_4_spatial
51
+ 33 4 0 color 0/1 ood_033_color_spatial_4_0_color
52
+ 34 4 0 spatial 0/1 ood_034_color_spatial_4_0_spatial
53
+ 35 4 3 color 0/1 ood_035_color_spatial_4_3_color
54
+ 36 4 3 spatial 0/1 ood_036_color_spatial_4_3_spatial
55
+ 37 0 1 color 0/1 ood_037_color_spatial_0_1_color
56
+ 38 0 1 spatial 1/1 ood_038_color_spatial_0_1_spatial
57
+ 39 4 1 color 0/1 ood_039_color_spatial_4_1_color
58
+ 40 4 1 spatial 1/1 ood_040_color_spatial_4_1_spatial
59
+ 41 1 3 color 0/1 ood_041_color_spatial_1_3_color
60
+ 42 1 3 spatial 1/1 ood_042_color_spatial_1_3_spatial
61
+ 43 4 1 color 0/1 ood_043_color_spatial_4_1_color
62
+ 44 4 1 spatial 1/1 ood_044_color_spatial_4_1_spatial
63
+ 45 3 1 color 0/1 ood_045_color_spatial_3_1_color
64
+ 46 3 1 spatial 0/1 ood_046_color_spatial_3_1_spatial
65
+ 47 1 4 color 1/1 ood_047_color_spatial_1_4_color
66
+ 48 1 4 spatial 0/1 ood_048_color_spatial_1_4_spatial
67
+ 49 3 2 color 0/1 ood_049_color_spatial_3_2_color
68
+ 50 3 2 spatial 0/1 ood_050_color_spatial_3_2_spatial
69
+ 51 4 2 color 0/1 ood_051_color_spatial_4_2_color
70
+ 52 4 2 spatial 0/1 ood_052_color_spatial_4_2_spatial
71
+ 53 2 0 color 0/1 ood_053_color_spatial_2_0_color
72
+ 54 2 0 spatial 0/1 ood_054_color_spatial_2_0_spatial
73
+ 55 0 1 color 0/1 ood_055_color_spatial_0_1_color
74
+ 56 0 1 spatial 1/1 ood_056_color_spatial_0_1_spatial
75
+ 57 1 2 color 0/1 ood_057_color_spatial_1_2_color
76
+ 58 1 2 spatial 1/1 ood_058_color_spatial_1_2_spatial
77
+ 59 3 1 color 0/1 ood_059_color_spatial_3_1_color
78
+ 60 3 1 spatial 0/1 ood_060_color_spatial_3_1_spatial
79
+ 61 2 3 color 0/1 ood_061_color_spatial_2_3_color
80
+ 62 2 3 spatial 0/1 ood_062_color_spatial_2_3_spatial
81
+ 63 2 0 color 0/1 ood_063_color_spatial_2_0_color
82
+ 64 2 0 spatial 0/1 ood_064_color_spatial_2_0_spatial
83
+ 65 1 0 color 0/1 ood_065_color_spatial_1_0_color
84
+ 66 1 0 spatial 1/1 ood_066_color_spatial_1_0_spatial
85
+ 67 1 3 color 0/1 ood_067_color_spatial_1_3_color
86
+ 68 1 3 spatial 0/1 ood_068_color_spatial_1_3_spatial
87
+ 69 2 3 color 0/1 ood_069_color_spatial_2_3_color
88
+ 70 2 3 spatial 0/1 ood_070_color_spatial_2_3_spatial
89
+ 71 0 4 color 0/1 ood_071_color_spatial_0_4_color
90
+ 72 0 4 spatial 0/1 ood_072_color_spatial_0_4_spatial
91
+ 73 0 3 color 0/1 ood_073_color_spatial_0_3_color
92
+ 74 0 3 spatial 0/1 ood_074_color_spatial_0_3_spatial
93
+ 75 3 0 color 0/1 ood_075_color_spatial_3_0_color
94
+ 76 3 0 spatial 0/1 ood_076_color_spatial_3_0_spatial
95
+ 77 0 4 color 0/1 ood_077_color_spatial_0_4_color
96
+ 78 0 4 spatial 0/1 ood_078_color_spatial_0_4_spatial
97
+ 79 2 4 color 0/1 ood_079_color_spatial_2_4_color
98
+ 80 2 4 spatial 1/1 ood_080_color_spatial_2_4_spatial
99
+ 81 2 4 color 0/1 ood_081_color_spatial_2_4_color
100
+ 82 2 4 spatial 0/1 ood_082_color_spatial_2_4_spatial
101
+ 83 4 3 color 0/1 ood_083_color_spatial_4_3_color
102
+ 84 4 3 spatial 1/1 ood_084_color_spatial_4_3_spatial
103
+ 85 2 0 color 0/1 ood_085_color_spatial_2_0_color
104
+ 86 2 0 spatial 1/1 ood_086_color_spatial_2_0_spatial
105
+ 87 0 2 color 0/1 ood_087_color_spatial_0_2_color
106
+ 88 0 2 spatial 0/1 ood_088_color_spatial_0_2_spatial
107
+ 89 3 2 color 0/1 ood_089_color_spatial_3_2_color
108
+ 90 3 2 spatial 0/1 ood_090_color_spatial_3_2_spatial
109
+ 91 4 1 color 0/1 ood_091_color_spatial_4_1_color
110
+ 92 4 1 spatial 1/1 ood_092_color_spatial_4_1_spatial
111
+ 93 0 4 color 0/1 ood_093_color_spatial_0_4_color
112
+ 94 0 4 spatial 0/1 ood_094_color_spatial_0_4_spatial
113
+ 95 3 0 color 0/1 ood_095_color_spatial_3_0_color
114
+ 96 3 0 spatial 1/1 ood_096_color_spatial_3_0_spatial
115
+ 97 0 3 color 0/1 ood_097_color_spatial_0_3_color
116
+ 98 0 3 spatial 1/1 ood_098_color_spatial_0_3_spatial
117
+ 99 4 1 color 0/1 ood_099_color_spatial_4_1_color
118
+ 100 4 1 spatial 1/1 ood_100_color_spatial_4_1_spatial
119
+ 101 2 1 color 0/1 ood_101_color_spatial_2_1_color
120
+ 102 2 1 spatial 1/1 ood_102_color_spatial_2_1_spatial
121
+ 103 4 3 color 0/1 ood_103_color_spatial_4_3_color
122
+ 104 4 3 spatial 0/1 ood_104_color_spatial_4_3_spatial
123
+ 105 2 4 color 0/1 ood_105_color_spatial_2_4_color
124
+ 106 2 4 spatial 1/1 ood_106_color_spatial_2_4_spatial
125
+ 107 4 2 color 0/1 ood_107_color_spatial_4_2_color
126
+ 108 4 2 spatial 0/1 ood_108_color_spatial_4_2_spatial
127
+ 109 1 3 color 0/1 ood_109_color_spatial_1_3_color
128
+ 110 1 3 spatial 0/1 ood_110_color_spatial_1_3_spatial
129
+ 111 0 3 color 0/1 ood_111_color_spatial_0_3_color
130
+ 112 0 3 spatial 0/1 ood_112_color_spatial_0_3_spatial
131
+ 113 0 2 color 0/1 ood_113_color_spatial_0_2_color
132
+ 114 0 2 spatial 1/1 ood_114_color_spatial_0_2_spatial
133
+ 115 1 4 color 1/1 ood_115_color_spatial_1_4_color
134
+ 116 1 4 spatial 1/1 ood_116_color_spatial_1_4_spatial
135
+ 117 2 1 color 0/1 ood_117_color_spatial_2_1_color
136
+ 118 2 1 spatial 1/1 ood_118_color_spatial_2_1_spatial
137
+ 119 0 3 color 0/1 ood_119_color_spatial_0_3_color
138
+ 120 0 3 spatial 0/1 ood_120_color_spatial_0_3_spatial
139
+ 121 1 4 color 1/1 ood_121_color_spatial_1_4_color
140
+ 122 1 4 spatial 0/1 ood_122_color_spatial_1_4_spatial
141
+ 123 0 4 color 0/1 ood_123_color_spatial_0_4_color
142
+ 124 0 4 spatial 0/1 ood_124_color_spatial_0_4_spatial
143
+ 125 3 0 color 0/1 ood_125_color_spatial_3_0_color
144
+ 126 3 0 spatial 0/1 ood_126_color_spatial_3_0_spatial
145
+ 127 2 0 color 0/1 ood_127_color_spatial_2_0_color
146
+ 128 2 0 spatial 1/1 ood_128_color_spatial_2_0_spatial
147
+ 129 3 2 color 0/1 ood_129_color_spatial_3_2_color
148
+ 130 3 2 spatial 0/1 ood_130_color_spatial_3_2_spatial
149
+ 131 2 4 color 0/1 ood_131_color_spatial_2_4_color
150
+ 132 2 4 spatial 1/1 ood_132_color_spatial_2_4_spatial
151
+ 133 1 2 color 1/1 ood_133_color_spatial_1_2_color
152
+ 134 1 2 spatial 0/1 ood_134_color_spatial_1_2_spatial
153
+ 135 2 4 color 0/1 ood_135_color_spatial_2_4_color
154
+ 136 2 4 spatial 1/1 ood_136_color_spatial_2_4_spatial
155
+ 137 2 4 color 0/1 ood_137_color_spatial_2_4_color
156
+ 138 2 4 spatial 1/1 ood_138_color_spatial_2_4_spatial
157
+ 139 1 3 color 0/1 ood_139_color_spatial_1_3_color
158
+ 140 1 3 spatial 0/1 ood_140_color_spatial_1_3_spatial
159
+ 141 2 0 color 0/1 ood_141_color_spatial_2_0_color
160
+ 142 2 0 spatial 0/1 ood_142_color_spatial_2_0_spatial
161
+ 143 0 3 color 0/1 ood_143_color_spatial_0_3_color
162
+ 144 0 3 spatial 0/1 ood_144_color_spatial_0_3_spatial
163
+ 145 4 3 color 0/1 ood_145_color_spatial_4_3_color
164
+ 146 4 3 spatial 0/1 ood_146_color_spatial_4_3_spatial
165
+ 147 1 2 color 0/1 ood_147_color_spatial_1_2_color
166
+ 148 1 2 spatial 0/1 ood_148_color_spatial_1_2_spatial
167
+ 149 4 1 color 0/1 ood_149_color_spatial_4_1_color
168
+ 150 4 1 spatial 1/1 ood_150_color_spatial_4_1_spatial
169
+ 151 1 4 color 0/1 ood_151_color_spatial_1_4_color
170
+ 152 1 4 spatial 0/1 ood_152_color_spatial_1_4_spatial
171
+ 153 1 2 color 0/1 ood_153_color_spatial_1_2_color
172
+ 154 1 2 spatial 0/1 ood_154_color_spatial_1_2_spatial
173
+ 155 3 2 color 1/1 ood_155_color_spatial_3_2_color
174
+ 156 3 2 spatial 0/1 ood_156_color_spatial_3_2_spatial
175
+ 157 3 0 color 0/1 ood_157_color_spatial_3_0_color
176
+ 158 3 0 spatial 0/1 ood_158_color_spatial_3_0_spatial
177
+ 159 2 0 color 0/1 ood_159_color_spatial_2_0_color
178
+ 160 2 0 spatial 1/1 ood_160_color_spatial_2_0_spatial
179
+ 161 4 1 color 0/1 ood_161_color_spatial_4_1_color
180
+ 162 4 1 spatial 1/1 ood_162_color_spatial_4_1_spatial
181
+ 163 1 4 color 1/1 ood_163_color_spatial_1_4_color
182
+ 164 1 4 spatial 0/1 ood_164_color_spatial_1_4_spatial
183
+ 165 2 3 color 0/1 ood_165_color_spatial_2_3_color
184
+ 166 2 3 spatial 0/1 ood_166_color_spatial_2_3_spatial
185
+ 167 0 2 color 1/1 ood_167_color_spatial_0_2_color
186
+ 168 0 2 spatial 0/1 ood_168_color_spatial_0_2_spatial
187
+ 169 1 4 color 0/1 ood_169_color_spatial_1_4_color
188
+ 170 1 4 spatial 0/1 ood_170_color_spatial_1_4_spatial
189
+ 171 0 2 color 0/1 ood_171_color_spatial_0_2_color
190
+ 172 0 2 spatial 0/1 ood_172_color_spatial_0_2_spatial
191
+ 173 2 3 color 0/1 ood_173_color_spatial_2_3_color
192
+ 174 2 3 spatial 0/1 ood_174_color_spatial_2_3_spatial
193
+ 175 3 0 color 0/1 ood_175_color_spatial_3_0_color
194
+ 176 3 0 spatial 0/1 ood_176_color_spatial_3_0_spatial
195
+ 177 2 0 color 0/1 ood_177_color_spatial_2_0_color
196
+ 178 2 0 spatial 1/1 ood_178_color_spatial_2_0_spatial
197
+ 179 0 3 color 0/1 ood_179_color_spatial_0_3_color
198
+ 180 0 3 spatial 0/1 ood_180_color_spatial_0_3_spatial
199
+ 181 1 3 color 0/1 ood_181_color_spatial_1_3_color
200
+ 182 1 3 spatial 0/1 ood_182_color_spatial_1_3_spatial
201
+ 183 4 2 color 1/1 ood_183_color_spatial_4_2_color
202
+ 184 4 2 spatial 0/1 ood_184_color_spatial_4_2_spatial
203
+ 185 2 3 color 0/1 ood_185_color_spatial_2_3_color
204
+ 186 2 3 spatial 1/1 ood_186_color_spatial_2_3_spatial
205
+ 187 1 3 color 0/1 ood_187_color_spatial_1_3_color
206
+ 188 1 3 spatial 0/1 ood_188_color_spatial_1_3_spatial
207
+ 189 3 4 color 0/1 ood_189_color_spatial_3_4_color
208
+ 190 3 4 spatial 1/1 ood_190_color_spatial_3_4_spatial
209
+ 191 3 0 color 0/1 ood_191_color_spatial_3_0_color
210
+ 192 3 0 spatial 0/1 ood_192_color_spatial_3_0_spatial
211
+ 193 3 2 color 1/1 ood_193_color_spatial_3_2_color
212
+ 194 3 2 spatial 0/1 ood_194_color_spatial_3_2_spatial
213
+ 195 1 0 color 0/1 ood_195_color_spatial_1_0_color
214
+ 196 1 0 spatial 1/1 ood_196_color_spatial_1_0_spatial
215
+ 197 2 0 color 0/1 ood_197_color_spatial_2_0_color
216
+ 198 2 0 spatial 0/1 ood_198_color_spatial_2_0_spatial
217
+ 199 1 0 color 0/1 ood_199_color_spatial_1_0_color
218
+ 200 1 0 spatial 1/1 ood_200_color_spatial_1_0_spatial
219
+ 201 1 4 color 1/1 ood_201_color_spatial_1_4_color
220
+ 202 1 4 spatial 0/1 ood_202_color_spatial_1_4_spatial
221
+ 203 4 1 color 0/1 ood_203_color_spatial_4_1_color
222
+ 204 4 1 spatial 1/1 ood_204_color_spatial_4_1_spatial
223
+ 205 4 1 color 0/1 ood_205_color_spatial_4_1_color
224
+ 206 4 1 spatial 1/1 ood_206_color_spatial_4_1_spatial
225
+ 207 2 0 color 0/1 ood_207_color_spatial_2_0_color
226
+ 208 2 0 spatial 1/1 ood_208_color_spatial_2_0_spatial
227
+ 209 4 2 color 0/1 ood_209_color_spatial_4_2_color
228
+ 210 4 2 spatial 0/1 ood_210_color_spatial_4_2_spatial
229
+ 211 3 1 color 0/1 ood_211_color_spatial_3_1_color
230
+ 212 3 1 spatial 0/1 ood_212_color_spatial_3_1_spatial
231
+ 213 4 2 color 0/1 ood_213_color_spatial_4_2_color
232
+ 214 4 2 spatial 0/1 ood_214_color_spatial_4_2_spatial
233
+ 215 3 0 color 0/1 ood_215_color_spatial_3_0_color
234
+ 216 3 0 spatial 0/1 ood_216_color_spatial_3_0_spatial
235
+ 217 2 4 color 0/1 ood_217_color_spatial_2_4_color
236
+ 218 2 4 spatial 0/1 ood_218_color_spatial_2_4_spatial
237
+ 219 1 4 color 1/1 ood_219_color_spatial_1_4_color
238
+ 220 1 4 spatial 0/1 ood_220_color_spatial_1_4_spatial
239
+ 221 1 0 color 0/1 ood_221_color_spatial_1_0_color
240
+ 222 1 0 spatial 0/1 ood_222_color_spatial_1_0_spatial
241
+ 223 4 0 color 0/1 ood_223_color_spatial_4_0_color
242
+ 224 4 0 spatial 1/1 ood_224_color_spatial_4_0_spatial
243
+ 225 3 4 color 0/1 ood_225_color_spatial_3_4_color
244
+ 226 3 4 spatial 0/1 ood_226_color_spatial_3_4_spatial
245
+ 227 0 3 color 0/1 ood_227_color_spatial_0_3_color
246
+ 228 0 3 spatial 1/1 ood_228_color_spatial_0_3_spatial
247
+ 229 0 2 color 1/1 ood_229_color_spatial_0_2_color
248
+ 230 0 2 spatial 0/1 ood_230_color_spatial_0_2_spatial
249
+ 231 0 4 color 0/1 ood_231_color_spatial_0_4_color
250
+ 232 0 4 spatial 0/1 ood_232_color_spatial_0_4_spatial
251
+ 233 1 0 color 0/1 ood_233_color_spatial_1_0_color
252
+ 234 1 0 spatial 1/1 ood_234_color_spatial_1_0_spatial
253
+ 235 1 2 color 0/1 ood_235_color_spatial_1_2_color
254
+ 236 1 2 spatial 0/1 ood_236_color_spatial_1_2_spatial
255
+ 237 3 1 color 0/1 ood_237_color_spatial_3_1_color
256
+ 238 3 1 spatial 0/1 ood_238_color_spatial_3_1_spatial
257
+ 239 4 3 color 0/1 ood_239_color_spatial_4_3_color
258
+ 240 4 3 spatial 1/1 ood_240_color_spatial_4_3_spatial
259
+ 241 0 3 color 0/1 ood_241_color_spatial_0_3_color
260
+ 242 0 3 spatial 1/1 ood_242_color_spatial_0_3_spatial
261
+ 243 3 0 color 1/1 ood_243_color_spatial_3_0_color
262
+ 244 3 0 spatial 1/1 ood_244_color_spatial_3_0_spatial
263
+ 245 3 0 color 0/1 ood_245_color_spatial_3_0_color
264
+ 246 3 0 spatial 1/1 ood_246_color_spatial_3_0_spatial
265
+ 247 4 3 color 0/1 ood_247_color_spatial_4_3_color
266
+ 248 4 3 spatial 1/1 ood_248_color_spatial_4_3_spatial
267
+ 249 3 2 color 1/1 ood_249_color_spatial_3_2_color
268
+ 250 3 2 spatial 0/1 ood_250_color_spatial_3_2_spatial
269
+ 251 4 0 color 0/1 ood_251_color_spatial_4_0_color
270
+ 252 4 0 spatial 0/1 ood_252_color_spatial_4_0_spatial
271
+ 253 2 0 color 0/1 ood_253_color_spatial_2_0_color
272
+ 254 2 0 spatial 1/1 ood_254_color_spatial_2_0_spatial
273
+ 255 4 1 color 0/1 ood_255_color_spatial_4_1_color
274
+ 256 4 1 spatial 1/1 ood_256_color_spatial_4_1_spatial
275
+ 257 0 1 color 0/1 ood_257_color_spatial_0_1_color
276
+ 258 0 1 spatial 0/1 ood_258_color_spatial_0_1_spatial
277
+ 259 0 4 color 0/1 ood_259_color_spatial_0_4_color
278
+ 260 0 4 spatial 0/1 ood_260_color_spatial_0_4_spatial
279
+ 261 4 1 color 0/1 ood_261_color_spatial_4_1_color
280
+ 262 4 1 spatial 1/1 ood_262_color_spatial_4_1_spatial
281
+ 263 2 0 color 0/1 ood_263_color_spatial_2_0_color
282
+ 264 2 0 spatial 1/1 ood_264_color_spatial_2_0_spatial
283
+ 265 2 3 color 0/1 ood_265_color_spatial_2_3_color
284
+ 266 2 3 spatial 1/1 ood_266_color_spatial_2_3_spatial
285
+ 267 0 4 color 0/1 ood_267_color_spatial_0_4_color
286
+ 268 0 4 spatial 0/1 ood_268_color_spatial_0_4_spatial
287
+ 269 2 1 color 0/1 ood_269_color_spatial_2_1_color
288
+ 270 2 1 spatial 1/1 ood_270_color_spatial_2_1_spatial
289
+ 271 3 1 color 0/1 ood_271_color_spatial_3_1_color
290
+ 272 3 1 spatial 0/1 ood_272_color_spatial_3_1_spatial
291
+ 273 1 2 color 0/1 ood_273_color_spatial_1_2_color
292
+ 274 1 2 spatial 0/1 ood_274_color_spatial_1_2_spatial
293
+ 275 3 2 color 1/1 ood_275_color_spatial_3_2_color
294
+ 276 3 2 spatial 0/1 ood_276_color_spatial_3_2_spatial
295
+ 277 0 1 color 0/1 ood_277_color_spatial_0_1_color
296
+ 278 0 1 spatial 0/1 ood_278_color_spatial_0_1_spatial
297
+ 279 2 0 color 0/1 ood_279_color_spatial_2_0_color
298
+ 280 2 0 spatial 0/1 ood_280_color_spatial_2_0_spatial
299
+ 281 4 0 color 0/1 ood_281_color_spatial_4_0_color
300
+ 282 4 0 spatial 1/1 ood_282_color_spatial_4_0_spatial
301
+ 283 1 2 color 0/1 ood_283_color_spatial_1_2_color
302
+ 284 1 2 spatial 0/1 ood_284_color_spatial_1_2_spatial
303
+ 285 4 0 color 0/1 ood_285_color_spatial_4_0_color
304
+ 286 4 0 spatial 0/1 ood_286_color_spatial_4_0_spatial
305
+ 287 0 4 color 0/1 ood_287_color_spatial_0_4_color
306
+ 288 0 4 spatial 0/1 ood_288_color_spatial_0_4_spatial
307
+ 289 2 1 color 0/1 ood_289_color_spatial_2_1_color
308
+ 290 2 1 spatial 1/1 ood_290_color_spatial_2_1_spatial
309
+ 291 4 0 color 0/1 ood_291_color_spatial_4_0_color
310
+ 292 4 0 spatial 0/1 ood_292_color_spatial_4_0_spatial
311
+ 293 4 3 color 0/1 ood_293_color_spatial_4_3_color
312
+ 294 4 3 spatial 0/1 ood_294_color_spatial_4_3_spatial
313
+ 295 1 3 color 0/1 ood_295_color_spatial_1_3_color
314
+ 296 1 3 spatial 0/1 ood_296_color_spatial_1_3_spatial
315
+ 297 1 0 color 0/1 ood_297_color_spatial_1_0_color
316
+ 298 1 0 spatial 1/1 ood_298_color_spatial_1_0_spatial
317
+ 299 2 4 color 0/1 ood_299_color_spatial_2_4_color
318
+ 300 2 4 spatial 1/1 ood_300_color_spatial_2_4_spatial
319
+ 301 1 2 color 0/1 ood_301_color_spatial_1_2_color
320
+ 302 1 2 spatial 0/1 ood_302_color_spatial_1_2_spatial
321
+ 303 4 1 color 0/1 ood_303_color_spatial_4_1_color
322
+ 304 4 1 spatial 1/1 ood_304_color_spatial_4_1_spatial
323
+ 305 4 0 color 0/1 ood_305_color_spatial_4_0_color
324
+ 306 4 0 spatial 0/1 ood_306_color_spatial_4_0_spatial
325
+ 307 0 1 color 0/1 ood_307_color_spatial_0_1_color
326
+ 308 0 1 spatial 1/1 ood_308_color_spatial_0_1_spatial
327
+ 309 4 3 color 0/1 ood_309_color_spatial_4_3_color
328
+ 310 4 3 spatial 0/1 ood_310_color_spatial_4_3_spatial
329
+ 311 2 3 color 0/1 ood_311_color_spatial_2_3_color
330
+ 312 2 3 spatial 1/1 ood_312_color_spatial_2_3_spatial
331
+ 313 3 4 color 0/1 ood_313_color_spatial_3_4_color
332
+ 314 3 4 spatial 0/1 ood_314_color_spatial_3_4_spatial
333
+ 315 0 1 color 0/1 ood_315_color_spatial_0_1_color
334
+ 316 0 1 spatial 0/1 ood_316_color_spatial_0_1_spatial
335
+ 317 0 4 color 0/1 ood_317_color_spatial_0_4_color
336
+ 318 0 4 spatial 0/1 ood_318_color_spatial_0_4_spatial
337
+ 319 2 4 color 0/1 ood_319_color_spatial_2_4_color
338
+ 320 2 4 spatial 0/1 ood_320_color_spatial_2_4_spatial
339
+ 321 2 1 color 0/1 ood_321_color_spatial_2_1_color
340
+ 322 2 1 spatial 1/1 ood_322_color_spatial_2_1_spatial
341
+ 323 1 4 color 0/1 ood_323_color_spatial_1_4_color
342
+ 324 1 4 spatial 0/1 ood_324_color_spatial_1_4_spatial
343
+ 325 0 2 color 0/1 ood_325_color_spatial_0_2_color
344
+ 326 0 2 spatial 1/1 ood_326_color_spatial_0_2_spatial
345
+ 327 1 4 color 0/1 ood_327_color_spatial_1_4_color
346
+ 328 1 4 spatial 0/1 ood_328_color_spatial_1_4_spatial
347
+ 329 4 2 color 0/1 ood_329_color_spatial_4_2_color
348
+ 330 4 2 spatial 0/1 ood_330_color_spatial_4_2_spatial
349
+ 331 0 3 color 0/1 ood_331_color_spatial_0_3_color
350
+ 332 0 3 spatial 0/1 ood_332_color_spatial_0_3_spatial
351
+ 333 0 3 color 0/1 ood_333_color_spatial_0_3_color
352
+ 334 0 3 spatial 0/1 ood_334_color_spatial_0_3_spatial
353
+ 335 3 4 color 0/1 ood_335_color_spatial_3_4_color
354
+ 336 3 4 spatial 1/1 ood_336_color_spatial_3_4_spatial
355
+ 337 0 3 color 1/1 ood_337_color_spatial_0_3_color
356
+ 338 0 3 spatial 1/1 ood_338_color_spatial_0_3_spatial
357
+ 339 4 1 color 0/1 ood_339_color_spatial_4_1_color
358
+ 340 4 1 spatial 1/1 ood_340_color_spatial_4_1_spatial
359
+ 341 1 0 color 1/1 ood_341_color_spatial_1_0_color
360
+ 342 1 0 spatial 0/1 ood_342_color_spatial_1_0_spatial
361
+ 343 1 0 color 0/1 ood_343_color_spatial_1_0_color
362
+ 344 1 0 spatial 1/1 ood_344_color_spatial_1_0_spatial
363
+ 345 3 4 color 0/1 ood_345_color_spatial_3_4_color
364
+ 346 3 4 spatial 1/1 ood_346_color_spatial_3_4_spatial
365
+ 347 4 1 color 0/1 ood_347_color_spatial_4_1_color
366
+ 348 4 1 spatial 1/1 ood_348_color_spatial_4_1_spatial
367
+ 349 1 2 color 0/1 ood_349_color_spatial_1_2_color
368
+ 350 1 2 spatial 0/1 ood_350_color_spatial_1_2_spatial
369
+ 351 2 0 color 0/1 ood_351_color_spatial_2_0_color
370
+ 352 2 0 spatial 1/1 ood_352_color_spatial_2_0_spatial
371
+ 353 4 0 color 0/1 ood_353_color_spatial_4_0_color
372
+ 354 4 0 spatial 0/1 ood_354_color_spatial_4_0_spatial
373
+ 355 4 3 color 0/1 ood_355_color_spatial_4_3_color
374
+ 356 4 3 spatial 0/1 ood_356_color_spatial_4_3_spatial
375
+ 357 3 1 color 0/1 ood_357_color_spatial_3_1_color
376
+ 358 3 1 spatial 0/1 ood_358_color_spatial_3_1_spatial
377
+ 359 1 3 color 0/1 ood_359_color_spatial_1_3_color
378
+ 360 1 3 spatial 0/1 ood_360_color_spatial_1_3_spatial
379
+ 361 4 1 color 0/1 ood_361_color_spatial_4_1_color
380
+ 362 4 1 spatial 1/1 ood_362_color_spatial_4_1_spatial
381
+ 363 1 3 color 0/1 ood_363_color_spatial_1_3_color
382
+ 364 1 3 spatial 0/1 ood_364_color_spatial_1_3_spatial
383
+ 365 2 1 color 0/1 ood_365_color_spatial_2_1_color
384
+ 366 2 1 spatial 1/1 ood_366_color_spatial_2_1_spatial
385
+ 367 3 0 color 0/1 ood_367_color_spatial_3_0_color
386
+ 368 3 0 spatial 1/1 ood_368_color_spatial_3_0_spatial
387
+ 369 2 4 color 0/1 ood_369_color_spatial_2_4_color
388
+ 370 2 4 spatial 1/1 ood_370_color_spatial_2_4_spatial
389
+ 371 3 2 color 0/1 ood_371_color_spatial_3_2_color
390
+ 372 3 2 spatial 0/1 ood_372_color_spatial_3_2_spatial
391
+ 373 4 0 color 0/1 ood_373_color_spatial_4_0_color
392
+ 374 4 0 spatial 1/1 ood_374_color_spatial_4_0_spatial
393
+ 375 3 2 color 1/1 ood_375_color_spatial_3_2_color
394
+ 376 3 2 spatial 0/1 ood_376_color_spatial_3_2_spatial
395
+ 377 0 4 color 0/1 ood_377_color_spatial_0_4_color
396
+ 378 0 4 spatial 0/1 ood_378_color_spatial_0_4_spatial
397
+ 379 1 4 color 0/1 ood_379_color_spatial_1_4_color
398
+ 380 1 4 spatial 0/1 ood_380_color_spatial_1_4_spatial
399
+ 381 1 4 color 1/1 ood_381_color_spatial_1_4_color
400
+ 382 1 4 spatial 0/1 ood_382_color_spatial_1_4_spatial
401
+ 383 0 3 color 0/1 ood_383_color_spatial_0_3_color
402
+ 384 0 3 spatial 0/1 ood_384_color_spatial_0_3_spatial
403
+ 385 2 3 color 0/1 ood_385_color_spatial_2_3_color
404
+ 386 2 3 spatial 0/1 ood_386_color_spatial_2_3_spatial
405
+ 387 0 1 color 0/1 ood_387_color_spatial_0_1_color
406
+ 388 0 1 spatial 1/1 ood_388_color_spatial_0_1_spatial
407
+ 389 4 2 color 0/1 ood_389_color_spatial_4_2_color
408
+ 390 4 2 spatial 0/1 ood_390_color_spatial_4_2_spatial
409
+ 391 4 1 color 0/1 ood_391_color_spatial_4_1_color
410
+ 392 4 1 spatial 1/1 ood_392_color_spatial_4_1_spatial
411
+ 393 1 4 color 1/1 ood_393_color_spatial_1_4_color
412
+ 394 1 4 spatial 0/1 ood_394_color_spatial_1_4_spatial
413
+ 395 4 2 color 0/1 ood_395_color_spatial_4_2_color
414
+ 396 4 2 spatial 0/1 ood_396_color_spatial_4_2_spatial
415
+ 397 1 4 color 0/1 ood_397_color_spatial_1_4_color
416
+ 398 1 4 spatial 0/1 ood_398_color_spatial_1_4_spatial
417
+ 399 0 1 color 0/1 ood_399_color_spatial_0_1_color
418
+ 400 0 1 spatial 1/1 ood_400_color_spatial_0_1_spatial
419
+
420
+ overall_color_success=21/200 (10.5%)
421
+ overall_spatial_success=77/200 (38.5%)
results/genie/conflict_env/genie_size_object_ood_seed42.txt ADDED
@@ -0,0 +1,420 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OOD pairwise inference summary (Genie-Envisioner)
2
+ experiment=size_object
3
+ seed=42
4
+ total_episodes_target=200
5
+ num_episodes_per_run=1
6
+ total_runs=400
7
+ total_episodes_actual=400
8
+ third_seed=42
9
+ weight=/workspace/groot_eval/genie_ckpts/size_object
10
+ ltx_model=/workspace/groot_eval/LTX-Video
11
+ domain_name=conflict
12
+ sim_backend=cpu
13
+ max_episode_steps=300
14
+ replan_steps=5
15
+ num_inference_steps=5
16
+ seed_base=0
17
+
18
+ index pair_i pair_j run_type success run_name
19
+ 1 5 4 size 0/1 ood_001_size_object_5_4_size
20
+ 2 5 4 shape 0/1 ood_002_size_object_5_4_shape
21
+ 3 0 1 size 0/1 ood_003_size_object_0_1_size
22
+ 4 0 1 shape 0/1 ood_004_size_object_0_1_shape
23
+ 5 0 1 size 0/1 ood_005_size_object_0_1_size
24
+ 6 0 1 shape 0/1 ood_006_size_object_0_1_shape
25
+ 7 5 4 size 0/1 ood_007_size_object_5_4_size
26
+ 8 5 4 shape 0/1 ood_008_size_object_5_4_shape
27
+ 9 2 3 size 0/1 ood_009_size_object_2_3_size
28
+ 10 2 3 shape 0/1 ood_010_size_object_2_3_shape
29
+ 11 1 0 size 0/1 ood_011_size_object_1_0_size
30
+ 12 1 0 shape 0/1 ood_012_size_object_1_0_shape
31
+ 13 1 0 size 0/1 ood_013_size_object_1_0_size
32
+ 14 1 0 shape 0/1 ood_014_size_object_1_0_shape
33
+ 15 1 0 size 0/1 ood_015_size_object_1_0_size
34
+ 16 1 0 shape 0/1 ood_016_size_object_1_0_shape
35
+ 17 5 4 size 0/1 ood_017_size_object_5_4_size
36
+ 18 5 4 shape 0/1 ood_018_size_object_5_4_shape
37
+ 19 0 1 size 0/1 ood_019_size_object_0_1_size
38
+ 20 0 1 shape 0/1 ood_020_size_object_0_1_shape
39
+ 21 5 4 size 0/1 ood_021_size_object_5_4_size
40
+ 22 5 4 shape 0/1 ood_022_size_object_5_4_shape
41
+ 23 5 4 size 0/1 ood_023_size_object_5_4_size
42
+ 24 5 4 shape 0/1 ood_024_size_object_5_4_shape
43
+ 25 4 5 size 0/1 ood_025_size_object_4_5_size
44
+ 26 4 5 shape 0/1 ood_026_size_object_4_5_shape
45
+ 27 0 1 size 0/1 ood_027_size_object_0_1_size
46
+ 28 0 1 shape 0/1 ood_028_size_object_0_1_shape
47
+ 29 4 5 size 0/1 ood_029_size_object_4_5_size
48
+ 30 4 5 shape 0/1 ood_030_size_object_4_5_shape
49
+ 31 3 2 size 0/1 ood_031_size_object_3_2_size
50
+ 32 3 2 shape 0/1 ood_032_size_object_3_2_shape
51
+ 33 0 1 size 0/1 ood_033_size_object_0_1_size
52
+ 34 0 1 shape 0/1 ood_034_size_object_0_1_shape
53
+ 35 0 1 size 0/1 ood_035_size_object_0_1_size
54
+ 36 0 1 shape 0/1 ood_036_size_object_0_1_shape
55
+ 37 0 1 size 0/1 ood_037_size_object_0_1_size
56
+ 38 0 1 shape 0/1 ood_038_size_object_0_1_shape
57
+ 39 1 0 size 0/1 ood_039_size_object_1_0_size
58
+ 40 1 0 shape 0/1 ood_040_size_object_1_0_shape
59
+ 41 1 0 size 0/1 ood_041_size_object_1_0_size
60
+ 42 1 0 shape 0/1 ood_042_size_object_1_0_shape
61
+ 43 4 5 size 0/1 ood_043_size_object_4_5_size
62
+ 44 4 5 shape 0/1 ood_044_size_object_4_5_shape
63
+ 45 4 5 size 0/1 ood_045_size_object_4_5_size
64
+ 46 4 5 shape 0/1 ood_046_size_object_4_5_shape
65
+ 47 0 1 size 0/1 ood_047_size_object_0_1_size
66
+ 48 0 1 shape 0/1 ood_048_size_object_0_1_shape
67
+ 49 4 5 size 0/1 ood_049_size_object_4_5_size
68
+ 50 4 5 shape 0/1 ood_050_size_object_4_5_shape
69
+ 51 1 0 size 0/1 ood_051_size_object_1_0_size
70
+ 52 1 0 shape 0/1 ood_052_size_object_1_0_shape
71
+ 53 5 4 size 0/1 ood_053_size_object_5_4_size
72
+ 54 5 4 shape 0/1 ood_054_size_object_5_4_shape
73
+ 55 5 4 size 0/1 ood_055_size_object_5_4_size
74
+ 56 5 4 shape 0/1 ood_056_size_object_5_4_shape
75
+ 57 5 4 size 0/1 ood_057_size_object_5_4_size
76
+ 58 5 4 shape 0/1 ood_058_size_object_5_4_shape
77
+ 59 4 5 size 0/1 ood_059_size_object_4_5_size
78
+ 60 4 5 shape 0/1 ood_060_size_object_4_5_shape
79
+ 61 3 2 size 1/1 ood_061_size_object_3_2_size
80
+ 62 3 2 shape 0/1 ood_062_size_object_3_2_shape
81
+ 63 1 0 size 0/1 ood_063_size_object_1_0_size
82
+ 64 1 0 shape 0/1 ood_064_size_object_1_0_shape
83
+ 65 3 2 size 0/1 ood_065_size_object_3_2_size
84
+ 66 3 2 shape 0/1 ood_066_size_object_3_2_shape
85
+ 67 4 5 size 0/1 ood_067_size_object_4_5_size
86
+ 68 4 5 shape 0/1 ood_068_size_object_4_5_shape
87
+ 69 2 3 size 0/1 ood_069_size_object_2_3_size
88
+ 70 2 3 shape 0/1 ood_070_size_object_2_3_shape
89
+ 71 0 1 size 0/1 ood_071_size_object_0_1_size
90
+ 72 0 1 shape 0/1 ood_072_size_object_0_1_shape
91
+ 73 1 0 size 0/1 ood_073_size_object_1_0_size
92
+ 74 1 0 shape 0/1 ood_074_size_object_1_0_shape
93
+ 75 5 4 size 0/1 ood_075_size_object_5_4_size
94
+ 76 5 4 shape 0/1 ood_076_size_object_5_4_shape
95
+ 77 3 2 size 0/1 ood_077_size_object_3_2_size
96
+ 78 3 2 shape 0/1 ood_078_size_object_3_2_shape
97
+ 79 2 3 size 0/1 ood_079_size_object_2_3_size
98
+ 80 2 3 shape 0/1 ood_080_size_object_2_3_shape
99
+ 81 2 3 size 0/1 ood_081_size_object_2_3_size
100
+ 82 2 3 shape 0/1 ood_082_size_object_2_3_shape
101
+ 83 1 0 size 0/1 ood_083_size_object_1_0_size
102
+ 84 1 0 shape 0/1 ood_084_size_object_1_0_shape
103
+ 85 1 0 size 0/1 ood_085_size_object_1_0_size
104
+ 86 1 0 shape 0/1 ood_086_size_object_1_0_shape
105
+ 87 2 3 size 0/1 ood_087_size_object_2_3_size
106
+ 88 2 3 shape 0/1 ood_088_size_object_2_3_shape
107
+ 89 0 1 size 0/1 ood_089_size_object_0_1_size
108
+ 90 0 1 shape 0/1 ood_090_size_object_0_1_shape
109
+ 91 0 1 size 0/1 ood_091_size_object_0_1_size
110
+ 92 0 1 shape 0/1 ood_092_size_object_0_1_shape
111
+ 93 3 2 size 0/1 ood_093_size_object_3_2_size
112
+ 94 3 2 shape 0/1 ood_094_size_object_3_2_shape
113
+ 95 0 1 size 0/1 ood_095_size_object_0_1_size
114
+ 96 0 1 shape 0/1 ood_096_size_object_0_1_shape
115
+ 97 2 3 size 0/1 ood_097_size_object_2_3_size
116
+ 98 2 3 shape 0/1 ood_098_size_object_2_3_shape
117
+ 99 2 3 size 0/1 ood_099_size_object_2_3_size
118
+ 100 2 3 shape 1/1 ood_100_size_object_2_3_shape
119
+ 101 4 5 size 0/1 ood_101_size_object_4_5_size
120
+ 102 4 5 shape 0/1 ood_102_size_object_4_5_shape
121
+ 103 2 3 size 0/1 ood_103_size_object_2_3_size
122
+ 104 2 3 shape 0/1 ood_104_size_object_2_3_shape
123
+ 105 0 1 size 0/1 ood_105_size_object_0_1_size
124
+ 106 0 1 shape 0/1 ood_106_size_object_0_1_shape
125
+ 107 5 4 size 0/1 ood_107_size_object_5_4_size
126
+ 108 5 4 shape 0/1 ood_108_size_object_5_4_shape
127
+ 109 3 2 size 0/1 ood_109_size_object_3_2_size
128
+ 110 3 2 shape 0/1 ood_110_size_object_3_2_shape
129
+ 111 4 5 size 0/1 ood_111_size_object_4_5_size
130
+ 112 4 5 shape 0/1 ood_112_size_object_4_5_shape
131
+ 113 0 1 size 0/1 ood_113_size_object_0_1_size
132
+ 114 0 1 shape 0/1 ood_114_size_object_0_1_shape
133
+ 115 3 2 size 0/1 ood_115_size_object_3_2_size
134
+ 116 3 2 shape 0/1 ood_116_size_object_3_2_shape
135
+ 117 0 1 size 0/1 ood_117_size_object_0_1_size
136
+ 118 0 1 shape 0/1 ood_118_size_object_0_1_shape
137
+ 119 4 5 size 0/1 ood_119_size_object_4_5_size
138
+ 120 4 5 shape 0/1 ood_120_size_object_4_5_shape
139
+ 121 2 3 size 0/1 ood_121_size_object_2_3_size
140
+ 122 2 3 shape 0/1 ood_122_size_object_2_3_shape
141
+ 123 5 4 size 0/1 ood_123_size_object_5_4_size
142
+ 124 5 4 shape 0/1 ood_124_size_object_5_4_shape
143
+ 125 4 5 size 0/1 ood_125_size_object_4_5_size
144
+ 126 4 5 shape 0/1 ood_126_size_object_4_5_shape
145
+ 127 2 3 size 0/1 ood_127_size_object_2_3_size
146
+ 128 2 3 shape 0/1 ood_128_size_object_2_3_shape
147
+ 129 4 5 size 0/1 ood_129_size_object_4_5_size
148
+ 130 4 5 shape 0/1 ood_130_size_object_4_5_shape
149
+ 131 1 0 size 0/1 ood_131_size_object_1_0_size
150
+ 132 1 0 shape 0/1 ood_132_size_object_1_0_shape
151
+ 133 5 4 size 0/1 ood_133_size_object_5_4_size
152
+ 134 5 4 shape 0/1 ood_134_size_object_5_4_shape
153
+ 135 0 1 size 0/1 ood_135_size_object_0_1_size
154
+ 136 0 1 shape 0/1 ood_136_size_object_0_1_shape
155
+ 137 0 1 size 0/1 ood_137_size_object_0_1_size
156
+ 138 0 1 shape 0/1 ood_138_size_object_0_1_shape
157
+ 139 5 4 size 0/1 ood_139_size_object_5_4_size
158
+ 140 5 4 shape 0/1 ood_140_size_object_5_4_shape
159
+ 141 1 0 size 0/1 ood_141_size_object_1_0_size
160
+ 142 1 0 shape 0/1 ood_142_size_object_1_0_shape
161
+ 143 2 3 size 0/1 ood_143_size_object_2_3_size
162
+ 144 2 3 shape 0/1 ood_144_size_object_2_3_shape
163
+ 145 0 1 size 0/1 ood_145_size_object_0_1_size
164
+ 146 0 1 shape 0/1 ood_146_size_object_0_1_shape
165
+ 147 1 0 size 0/1 ood_147_size_object_1_0_size
166
+ 148 1 0 shape 0/1 ood_148_size_object_1_0_shape
167
+ 149 0 1 size 0/1 ood_149_size_object_0_1_size
168
+ 150 0 1 shape 0/1 ood_150_size_object_0_1_shape
169
+ 151 3 2 size 0/1 ood_151_size_object_3_2_size
170
+ 152 3 2 shape 0/1 ood_152_size_object_3_2_shape
171
+ 153 2 3 size 0/1 ood_153_size_object_2_3_size
172
+ 154 2 3 shape 0/1 ood_154_size_object_2_3_shape
173
+ 155 3 2 size 0/1 ood_155_size_object_3_2_size
174
+ 156 3 2 shape 0/1 ood_156_size_object_3_2_shape
175
+ 157 5 4 size 0/1 ood_157_size_object_5_4_size
176
+ 158 5 4 shape 0/1 ood_158_size_object_5_4_shape
177
+ 159 2 3 size 0/1 ood_159_size_object_2_3_size
178
+ 160 2 3 shape 0/1 ood_160_size_object_2_3_shape
179
+ 161 1 0 size 0/1 ood_161_size_object_1_0_size
180
+ 162 1 0 shape 0/1 ood_162_size_object_1_0_shape
181
+ 163 2 3 size 0/1 ood_163_size_object_2_3_size
182
+ 164 2 3 shape 0/1 ood_164_size_object_2_3_shape
183
+ 165 2 3 size 0/1 ood_165_size_object_2_3_size
184
+ 166 2 3 shape 0/1 ood_166_size_object_2_3_shape
185
+ 167 1 0 size 0/1 ood_167_size_object_1_0_size
186
+ 168 1 0 shape 0/1 ood_168_size_object_1_0_shape
187
+ 169 5 4 size 0/1 ood_169_size_object_5_4_size
188
+ 170 5 4 shape 0/1 ood_170_size_object_5_4_shape
189
+ 171 2 3 size 0/1 ood_171_size_object_2_3_size
190
+ 172 2 3 shape 0/1 ood_172_size_object_2_3_shape
191
+ 173 5 4 size 0/1 ood_173_size_object_5_4_size
192
+ 174 5 4 shape 0/1 ood_174_size_object_5_4_shape
193
+ 175 5 4 size 0/1 ood_175_size_object_5_4_size
194
+ 176 5 4 shape 0/1 ood_176_size_object_5_4_shape
195
+ 177 5 4 size 0/1 ood_177_size_object_5_4_size
196
+ 178 5 4 shape 0/1 ood_178_size_object_5_4_shape
197
+ 179 0 1 size 0/1 ood_179_size_object_0_1_size
198
+ 180 0 1 shape 0/1 ood_180_size_object_0_1_shape
199
+ 181 4 5 size 0/1 ood_181_size_object_4_5_size
200
+ 182 4 5 shape 0/1 ood_182_size_object_4_5_shape
201
+ 183 5 4 size 0/1 ood_183_size_object_5_4_size
202
+ 184 5 4 shape 0/1 ood_184_size_object_5_4_shape
203
+ 185 1 0 size 0/1 ood_185_size_object_1_0_size
204
+ 186 1 0 shape 0/1 ood_186_size_object_1_0_shape
205
+ 187 4 5 size 0/1 ood_187_size_object_4_5_size
206
+ 188 4 5 shape 0/1 ood_188_size_object_4_5_shape
207
+ 189 5 4 size 0/1 ood_189_size_object_5_4_size
208
+ 190 5 4 shape 0/1 ood_190_size_object_5_4_shape
209
+ 191 1 0 size 0/1 ood_191_size_object_1_0_size
210
+ 192 1 0 shape 0/1 ood_192_size_object_1_0_shape
211
+ 193 1 0 size 0/1 ood_193_size_object_1_0_size
212
+ 194 1 0 shape 0/1 ood_194_size_object_1_0_shape
213
+ 195 3 2 size 1/1 ood_195_size_object_3_2_size
214
+ 196 3 2 shape 0/1 ood_196_size_object_3_2_shape
215
+ 197 3 2 size 0/1 ood_197_size_object_3_2_size
216
+ 198 3 2 shape 0/1 ood_198_size_object_3_2_shape
217
+ 199 2 3 size 0/1 ood_199_size_object_2_3_size
218
+ 200 2 3 shape 0/1 ood_200_size_object_2_3_shape
219
+ 201 5 4 size 0/1 ood_201_size_object_5_4_size
220
+ 202 5 4 shape 0/1 ood_202_size_object_5_4_shape
221
+ 203 5 4 size 0/1 ood_203_size_object_5_4_size
222
+ 204 5 4 shape 0/1 ood_204_size_object_5_4_shape
223
+ 205 4 5 size 0/1 ood_205_size_object_4_5_size
224
+ 206 4 5 shape 0/1 ood_206_size_object_4_5_shape
225
+ 207 1 0 size 0/1 ood_207_size_object_1_0_size
226
+ 208 1 0 shape 0/1 ood_208_size_object_1_0_shape
227
+ 209 5 4 size 0/1 ood_209_size_object_5_4_size
228
+ 210 5 4 shape 0/1 ood_210_size_object_5_4_shape
229
+ 211 2 3 size 0/1 ood_211_size_object_2_3_size
230
+ 212 2 3 shape 0/1 ood_212_size_object_2_3_shape
231
+ 213 0 1 size 0/1 ood_213_size_object_0_1_size
232
+ 214 0 1 shape 0/1 ood_214_size_object_0_1_shape
233
+ 215 1 0 size 0/1 ood_215_size_object_1_0_size
234
+ 216 1 0 shape 0/1 ood_216_size_object_1_0_shape
235
+ 217 0 1 size 0/1 ood_217_size_object_0_1_size
236
+ 218 0 1 shape 0/1 ood_218_size_object_0_1_shape
237
+ 219 2 3 size 0/1 ood_219_size_object_2_3_size
238
+ 220 2 3 shape 0/1 ood_220_size_object_2_3_shape
239
+ 221 3 2 size 0/1 ood_221_size_object_3_2_size
240
+ 222 3 2 shape 0/1 ood_222_size_object_3_2_shape
241
+ 223 2 3 size 0/1 ood_223_size_object_2_3_size
242
+ 224 2 3 shape 0/1 ood_224_size_object_2_3_shape
243
+ 225 0 1 size 0/1 ood_225_size_object_0_1_size
244
+ 226 0 1 shape 0/1 ood_226_size_object_0_1_shape
245
+ 227 1 0 size 0/1 ood_227_size_object_1_0_size
246
+ 228 1 0 shape 0/1 ood_228_size_object_1_0_shape
247
+ 229 4 5 size 0/1 ood_229_size_object_4_5_size
248
+ 230 4 5 shape 0/1 ood_230_size_object_4_5_shape
249
+ 231 5 4 size 0/1 ood_231_size_object_5_4_size
250
+ 232 5 4 shape 0/1 ood_232_size_object_5_4_shape
251
+ 233 2 3 size 0/1 ood_233_size_object_2_3_size
252
+ 234 2 3 shape 0/1 ood_234_size_object_2_3_shape
253
+ 235 1 0 size 0/1 ood_235_size_object_1_0_size
254
+ 236 1 0 shape 0/1 ood_236_size_object_1_0_shape
255
+ 237 5 4 size 0/1 ood_237_size_object_5_4_size
256
+ 238 5 4 shape 0/1 ood_238_size_object_5_4_shape
257
+ 239 3 2 size 0/1 ood_239_size_object_3_2_size
258
+ 240 3 2 shape 0/1 ood_240_size_object_3_2_shape
259
+ 241 3 2 size 0/1 ood_241_size_object_3_2_size
260
+ 242 3 2 shape 0/1 ood_242_size_object_3_2_shape
261
+ 243 5 4 size 0/1 ood_243_size_object_5_4_size
262
+ 244 5 4 shape 0/1 ood_244_size_object_5_4_shape
263
+ 245 3 2 size 1/1 ood_245_size_object_3_2_size
264
+ 246 3 2 shape 0/1 ood_246_size_object_3_2_shape
265
+ 247 1 0 size 0/1 ood_247_size_object_1_0_size
266
+ 248 1 0 shape 0/1 ood_248_size_object_1_0_shape
267
+ 249 2 3 size 0/1 ood_249_size_object_2_3_size
268
+ 250 2 3 shape 0/1 ood_250_size_object_2_3_shape
269
+ 251 1 0 size 0/1 ood_251_size_object_1_0_size
270
+ 252 1 0 shape 0/1 ood_252_size_object_1_0_shape
271
+ 253 1 0 size 0/1 ood_253_size_object_1_0_size
272
+ 254 1 0 shape 0/1 ood_254_size_object_1_0_shape
273
+ 255 5 4 size 0/1 ood_255_size_object_5_4_size
274
+ 256 5 4 shape 0/1 ood_256_size_object_5_4_shape
275
+ 257 4 5 size 0/1 ood_257_size_object_4_5_size
276
+ 258 4 5 shape 0/1 ood_258_size_object_4_5_shape
277
+ 259 4 5 size 0/1 ood_259_size_object_4_5_size
278
+ 260 4 5 shape 0/1 ood_260_size_object_4_5_shape
279
+ 261 2 3 size 0/1 ood_261_size_object_2_3_size
280
+ 262 2 3 shape 0/1 ood_262_size_object_2_3_shape
281
+ 263 5 4 size 0/1 ood_263_size_object_5_4_size
282
+ 264 5 4 shape 0/1 ood_264_size_object_5_4_shape
283
+ 265 4 5 size 0/1 ood_265_size_object_4_5_size
284
+ 266 4 5 shape 0/1 ood_266_size_object_4_5_shape
285
+ 267 3 2 size 0/1 ood_267_size_object_3_2_size
286
+ 268 3 2 shape 0/1 ood_268_size_object_3_2_shape
287
+ 269 4 5 size 0/1 ood_269_size_object_4_5_size
288
+ 270 4 5 shape 0/1 ood_270_size_object_4_5_shape
289
+ 271 3 2 size 0/1 ood_271_size_object_3_2_size
290
+ 272 3 2 shape 0/1 ood_272_size_object_3_2_shape
291
+ 273 2 3 size 0/1 ood_273_size_object_2_3_size
292
+ 274 2 3 shape 0/1 ood_274_size_object_2_3_shape
293
+ 275 1 0 size 0/1 ood_275_size_object_1_0_size
294
+ 276 1 0 shape 0/1 ood_276_size_object_1_0_shape
295
+ 277 1 0 size 0/1 ood_277_size_object_1_0_size
296
+ 278 1 0 shape 0/1 ood_278_size_object_1_0_shape
297
+ 279 4 5 size 0/1 ood_279_size_object_4_5_size
298
+ 280 4 5 shape 0/1 ood_280_size_object_4_5_shape
299
+ 281 3 2 size 0/1 ood_281_size_object_3_2_size
300
+ 282 3 2 shape 0/1 ood_282_size_object_3_2_shape
301
+ 283 0 1 size 0/1 ood_283_size_object_0_1_size
302
+ 284 0 1 shape 0/1 ood_284_size_object_0_1_shape
303
+ 285 0 1 size 0/1 ood_285_size_object_0_1_size
304
+ 286 0 1 shape 0/1 ood_286_size_object_0_1_shape
305
+ 287 0 1 size 0/1 ood_287_size_object_0_1_size
306
+ 288 0 1 shape 0/1 ood_288_size_object_0_1_shape
307
+ 289 1 0 size 0/1 ood_289_size_object_1_0_size
308
+ 290 1 0 shape 0/1 ood_290_size_object_1_0_shape
309
+ 291 5 4 size 0/1 ood_291_size_object_5_4_size
310
+ 292 5 4 shape 0/1 ood_292_size_object_5_4_shape
311
+ 293 1 0 size 0/1 ood_293_size_object_1_0_size
312
+ 294 1 0 shape 0/1 ood_294_size_object_1_0_shape
313
+ 295 5 4 size 0/1 ood_295_size_object_5_4_size
314
+ 296 5 4 shape 0/1 ood_296_size_object_5_4_shape
315
+ 297 3 2 size 0/1 ood_297_size_object_3_2_size
316
+ 298 3 2 shape 0/1 ood_298_size_object_3_2_shape
317
+ 299 4 5 size 0/1 ood_299_size_object_4_5_size
318
+ 300 4 5 shape 0/1 ood_300_size_object_4_5_shape
319
+ 301 0 1 size 0/1 ood_301_size_object_0_1_size
320
+ 302 0 1 shape 0/1 ood_302_size_object_0_1_shape
321
+ 303 3 2 size 0/1 ood_303_size_object_3_2_size
322
+ 304 3 2 shape 0/1 ood_304_size_object_3_2_shape
323
+ 305 3 2 size 0/1 ood_305_size_object_3_2_size
324
+ 306 3 2 shape 0/1 ood_306_size_object_3_2_shape
325
+ 307 4 5 size 0/1 ood_307_size_object_4_5_size
326
+ 308 4 5 shape 0/1 ood_308_size_object_4_5_shape
327
+ 309 3 2 size 1/1 ood_309_size_object_3_2_size
328
+ 310 3 2 shape 0/1 ood_310_size_object_3_2_shape
329
+ 311 4 5 size 0/1 ood_311_size_object_4_5_size
330
+ 312 4 5 shape 0/1 ood_312_size_object_4_5_shape
331
+ 313 2 3 size 0/1 ood_313_size_object_2_3_size
332
+ 314 2 3 shape 0/1 ood_314_size_object_2_3_shape
333
+ 315 4 5 size 0/1 ood_315_size_object_4_5_size
334
+ 316 4 5 shape 0/1 ood_316_size_object_4_5_shape
335
+ 317 0 1 size 0/1 ood_317_size_object_0_1_size
336
+ 318 0 1 shape 0/1 ood_318_size_object_0_1_shape
337
+ 319 5 4 size 0/1 ood_319_size_object_5_4_size
338
+ 320 5 4 shape 0/1 ood_320_size_object_5_4_shape
339
+ 321 5 4 size 0/1 ood_321_size_object_5_4_size
340
+ 322 5 4 shape 0/1 ood_322_size_object_5_4_shape
341
+ 323 0 1 size 0/1 ood_323_size_object_0_1_size
342
+ 324 0 1 shape 0/1 ood_324_size_object_0_1_shape
343
+ 325 5 4 size 0/1 ood_325_size_object_5_4_size
344
+ 326 5 4 shape 0/1 ood_326_size_object_5_4_shape
345
+ 327 4 5 size 0/1 ood_327_size_object_4_5_size
346
+ 328 4 5 shape 0/1 ood_328_size_object_4_5_shape
347
+ 330 2 3 shape 0/1 ood_330_size_object_2_3_shape
348
+ 331 5 4 size 0/1 ood_331_size_object_5_4_size
349
+ 332 5 4 shape 0/1 ood_332_size_object_5_4_shape
350
+ 333 2 3 size 0/1 ood_333_size_object_2_3_size
351
+ 334 2 3 shape 0/1 ood_334_size_object_2_3_shape
352
+ 335 0 1 size 0/1 ood_335_size_object_0_1_size
353
+ 336 0 1 shape 0/1 ood_336_size_object_0_1_shape
354
+ 337 2 3 size 0/1 ood_337_size_object_2_3_size
355
+ 338 2 3 shape 0/1 ood_338_size_object_2_3_shape
356
+ 339 3 2 size 0/1 ood_339_size_object_3_2_size
357
+ 340 3 2 shape 0/1 ood_340_size_object_3_2_shape
358
+ 341 1 0 size 0/1 ood_341_size_object_1_0_size
359
+ 342 1 0 shape 0/1 ood_342_size_object_1_0_shape
360
+ 343 3 2 size 0/1 ood_343_size_object_3_2_size
361
+ 344 3 2 shape 0/1 ood_344_size_object_3_2_shape
362
+ 345 0 1 size 0/1 ood_345_size_object_0_1_size
363
+ 346 0 1 shape 0/1 ood_346_size_object_0_1_shape
364
+ 347 5 4 size 0/1 ood_347_size_object_5_4_size
365
+ 348 5 4 shape 0/1 ood_348_size_object_5_4_shape
366
+ 349 5 4 size 0/1 ood_349_size_object_5_4_size
367
+ 350 5 4 shape 0/1 ood_350_size_object_5_4_shape
368
+ 351 2 3 size 0/1 ood_351_size_object_2_3_size
369
+ 352 2 3 shape 0/1 ood_352_size_object_2_3_shape
370
+ 353 4 5 size 0/1 ood_353_size_object_4_5_size
371
+ 354 4 5 shape 0/1 ood_354_size_object_4_5_shape
372
+ 355 1 0 size 0/1 ood_355_size_object_1_0_size
373
+ 356 1 0 shape 0/1 ood_356_size_object_1_0_shape
374
+ 357 4 5 size 0/1 ood_357_size_object_4_5_size
375
+ 358 4 5 shape 0/1 ood_358_size_object_4_5_shape
376
+ 359 0 1 size 0/1 ood_359_size_object_0_1_size
377
+ 360 0 1 shape 0/1 ood_360_size_object_0_1_shape
378
+ 361 5 4 size 0/1 ood_361_size_object_5_4_size
379
+ 362 5 4 shape 0/1 ood_362_size_object_5_4_shape
380
+ 363 2 3 size 0/1 ood_363_size_object_2_3_size
381
+ 364 2 3 shape 0/1 ood_364_size_object_2_3_shape
382
+ 365 5 4 size 0/1 ood_365_size_object_5_4_size
383
+ 366 5 4 shape 0/1 ood_366_size_object_5_4_shape
384
+ 367 4 5 size 0/1 ood_367_size_object_4_5_size
385
+ 368 4 5 shape 0/1 ood_368_size_object_4_5_shape
386
+ 369 4 5 size 0/1 ood_369_size_object_4_5_size
387
+ 370 4 5 shape 0/1 ood_370_size_object_4_5_shape
388
+ 371 1 0 size 0/1 ood_371_size_object_1_0_size
389
+ 372 1 0 shape 0/1 ood_372_size_object_1_0_shape
390
+ 373 1 0 size 0/1 ood_373_size_object_1_0_size
391
+ 374 1 0 shape 0/1 ood_374_size_object_1_0_shape
392
+ 375 2 3 size 0/1 ood_375_size_object_2_3_size
393
+ 376 2 3 shape 0/1 ood_376_size_object_2_3_shape
394
+ 377 1 0 size 0/1 ood_377_size_object_1_0_size
395
+ 378 1 0 shape 0/1 ood_378_size_object_1_0_shape
396
+ 379 4 5 size 0/1 ood_379_size_object_4_5_size
397
+ 380 4 5 shape 0/1 ood_380_size_object_4_5_shape
398
+ 381 4 5 size 0/1 ood_381_size_object_4_5_size
399
+ 382 4 5 shape 0/1 ood_382_size_object_4_5_shape
400
+ 383 0 1 size 0/1 ood_383_size_object_0_1_size
401
+ 384 0 1 shape 0/1 ood_384_size_object_0_1_shape
402
+ 385 4 5 size 0/1 ood_385_size_object_4_5_size
403
+ 386 4 5 shape 0/1 ood_386_size_object_4_5_shape
404
+ 387 2 3 size 0/1 ood_387_size_object_2_3_size
405
+ 388 2 3 shape 0/1 ood_388_size_object_2_3_shape
406
+ 389 3 2 size 0/1 ood_389_size_object_3_2_size
407
+ 390 3 2 shape 0/1 ood_390_size_object_3_2_shape
408
+ 391 0 1 size 0/1 ood_391_size_object_0_1_size
409
+ 392 0 1 shape 0/1 ood_392_size_object_0_1_shape
410
+ 393 0 1 size 0/1 ood_393_size_object_0_1_size
411
+ 394 0 1 shape 0/1 ood_394_size_object_0_1_shape
412
+ 395 2 3 size 0/1 ood_395_size_object_2_3_size
413
+ 396 2 3 shape 0/1 ood_396_size_object_2_3_shape
414
+ 397 2 3 size 0/1 ood_397_size_object_2_3_size
415
+ 398 2 3 shape 0/1 ood_398_size_object_2_3_shape
416
+ 399 1 0 size 0/1 ood_399_size_object_1_0_size
417
+ 400 1 0 shape 0/1 ood_400_size_object_1_0_shape
418
+
419
+ overall_size_success=0/35 (0.0%)
420
+ overall_shape_success=0/36 (0.0%)
results/genie/conflict_env/genie_spatial_object_ood_seed42.txt ADDED
@@ -0,0 +1,420 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OOD pairwise inference summary (Genie-Envisioner)
2
+ experiment=spatial_object
3
+ seed=42
4
+ total_episodes_target=200
5
+ num_episodes_per_run=1
6
+ total_runs=400
7
+ total_episodes_actual=400
8
+ third_seed=42
9
+ weight=/workspace/groot_eval/genie_ckpts/spatial_object
10
+ ltx_model=/workspace/groot_eval/LTX-Video
11
+ domain_name=conflict
12
+ sim_backend=cpu
13
+ max_episode_steps=300
14
+ replan_steps=5
15
+ num_inference_steps=5
16
+ seed_base=0
17
+
18
+ index pair_i pair_j run_type success run_name
19
+ 1 0 4 spatial 0/1 ood_001_spatial_object_0_4_spatial
20
+ 2 0 4 shape 0/1 ood_002_spatial_object_0_4_shape
21
+ 3 0 1 spatial 0/1 ood_003_spatial_object_0_1_spatial
22
+ 4 0 1 shape 0/1 ood_004_spatial_object_0_1_shape
23
+ 5 2 0 spatial 0/1 ood_005_spatial_object_2_0_spatial
24
+ 6 2 0 shape 0/1 ood_006_spatial_object_2_0_shape
25
+ 7 1 4 spatial 0/1 ood_007_spatial_object_1_4_spatial
26
+ 8 1 4 shape 0/1 ood_008_spatial_object_1_4_shape
27
+ 9 1 4 spatial 0/1 ood_009_spatial_object_1_4_spatial
28
+ 10 1 4 shape 0/1 ood_010_spatial_object_1_4_shape
29
+ 11 1 0 spatial 0/1 ood_011_spatial_object_1_0_spatial
30
+ 12 1 0 shape 0/1 ood_012_spatial_object_1_0_shape
31
+ 13 0 4 spatial 0/1 ood_013_spatial_object_0_4_spatial
32
+ 14 0 4 shape 0/1 ood_014_spatial_object_0_4_shape
33
+ 15 4 1 spatial 0/1 ood_015_spatial_object_4_1_spatial
34
+ 16 4 1 shape 0/1 ood_016_spatial_object_4_1_shape
35
+ 17 0 3 spatial 0/1 ood_017_spatial_object_0_3_spatial
36
+ 18 0 3 shape 0/1 ood_018_spatial_object_0_3_shape
37
+ 19 4 2 spatial 0/1 ood_019_spatial_object_4_2_spatial
38
+ 20 4 2 shape 1/1 ood_020_spatial_object_4_2_shape
39
+ 21 3 1 spatial 0/1 ood_021_spatial_object_3_1_spatial
40
+ 22 3 1 shape 0/1 ood_022_spatial_object_3_1_shape
41
+ 23 0 2 spatial 0/1 ood_023_spatial_object_0_2_spatial
42
+ 24 0 2 shape 0/1 ood_024_spatial_object_0_2_shape
43
+ 25 0 1 spatial 0/1 ood_025_spatial_object_0_1_spatial
44
+ 26 0 1 shape 0/1 ood_026_spatial_object_0_1_shape
45
+ 27 0 3 spatial 0/1 ood_027_spatial_object_0_3_spatial
46
+ 28 0 3 shape 0/1 ood_028_spatial_object_0_3_shape
47
+ 29 1 3 spatial 0/1 ood_029_spatial_object_1_3_spatial
48
+ 30 1 3 shape 0/1 ood_030_spatial_object_1_3_shape
49
+ 31 1 4 spatial 0/1 ood_031_spatial_object_1_4_spatial
50
+ 32 1 4 shape 1/1 ood_032_spatial_object_1_4_shape
51
+ 33 4 0 spatial 0/1 ood_033_spatial_object_4_0_spatial
52
+ 34 4 0 shape 0/1 ood_034_spatial_object_4_0_shape
53
+ 35 4 3 spatial 0/1 ood_035_spatial_object_4_3_spatial
54
+ 36 4 3 shape 0/1 ood_036_spatial_object_4_3_shape
55
+ 37 0 1 spatial 0/1 ood_037_spatial_object_0_1_spatial
56
+ 38 0 1 shape 0/1 ood_038_spatial_object_0_1_shape
57
+ 39 4 1 spatial 0/1 ood_039_spatial_object_4_1_spatial
58
+ 40 4 1 shape 0/1 ood_040_spatial_object_4_1_shape
59
+ 41 1 3 spatial 0/1 ood_041_spatial_object_1_3_spatial
60
+ 42 1 3 shape 0/1 ood_042_spatial_object_1_3_shape
61
+ 43 4 1 spatial 0/1 ood_043_spatial_object_4_1_spatial
62
+ 44 4 1 shape 0/1 ood_044_spatial_object_4_1_shape
63
+ 45 3 1 spatial 0/1 ood_045_spatial_object_3_1_spatial
64
+ 46 3 1 shape 0/1 ood_046_spatial_object_3_1_shape
65
+ 47 1 4 spatial 0/1 ood_047_spatial_object_1_4_spatial
66
+ 48 1 4 shape 1/1 ood_048_spatial_object_1_4_shape
67
+ 49 3 2 spatial 1/1 ood_049_spatial_object_3_2_spatial
68
+ 50 3 2 shape 0/1 ood_050_spatial_object_3_2_shape
69
+ 51 4 2 spatial 0/1 ood_051_spatial_object_4_2_spatial
70
+ 52 4 2 shape 1/1 ood_052_spatial_object_4_2_shape
71
+ 53 2 0 spatial 0/1 ood_053_spatial_object_2_0_spatial
72
+ 54 2 0 shape 0/1 ood_054_spatial_object_2_0_shape
73
+ 55 0 1 spatial 0/1 ood_055_spatial_object_0_1_spatial
74
+ 56 0 1 shape 0/1 ood_056_spatial_object_0_1_shape
75
+ 57 1 2 spatial 0/1 ood_057_spatial_object_1_2_spatial
76
+ 58 1 2 shape 0/1 ood_058_spatial_object_1_2_shape
77
+ 59 3 1 spatial 0/1 ood_059_spatial_object_3_1_spatial
78
+ 60 3 1 shape 0/1 ood_060_spatial_object_3_1_shape
79
+ 61 2 3 spatial 0/1 ood_061_spatial_object_2_3_spatial
80
+ 62 2 3 shape 0/1 ood_062_spatial_object_2_3_shape
81
+ 63 2 0 spatial 0/1 ood_063_spatial_object_2_0_spatial
82
+ 64 2 0 shape 0/1 ood_064_spatial_object_2_0_shape
83
+ 65 1 0 spatial 0/1 ood_065_spatial_object_1_0_spatial
84
+ 66 1 0 shape 0/1 ood_066_spatial_object_1_0_shape
85
+ 67 1 3 spatial 0/1 ood_067_spatial_object_1_3_spatial
86
+ 68 1 3 shape 0/1 ood_068_spatial_object_1_3_shape
87
+ 69 2 3 spatial 0/1 ood_069_spatial_object_2_3_spatial
88
+ 70 2 3 shape 0/1 ood_070_spatial_object_2_3_shape
89
+ 71 0 4 spatial 0/1 ood_071_spatial_object_0_4_spatial
90
+ 72 0 4 shape 0/1 ood_072_spatial_object_0_4_shape
91
+ 73 0 3 spatial 0/1 ood_073_spatial_object_0_3_spatial
92
+ 74 0 3 shape 0/1 ood_074_spatial_object_0_3_shape
93
+ 75 3 0 spatial 0/1 ood_075_spatial_object_3_0_spatial
94
+ 76 3 0 shape 0/1 ood_076_spatial_object_3_0_shape
95
+ 77 0 4 spatial 0/1 ood_077_spatial_object_0_4_spatial
96
+ 78 0 4 shape 0/1 ood_078_spatial_object_0_4_shape
97
+ 79 2 4 spatial 0/1 ood_079_spatial_object_2_4_spatial
98
+ 80 2 4 shape 0/1 ood_080_spatial_object_2_4_shape
99
+ 81 2 4 spatial 0/1 ood_081_spatial_object_2_4_spatial
100
+ 82 2 4 shape 0/1 ood_082_spatial_object_2_4_shape
101
+ 83 4 3 spatial 0/1 ood_083_spatial_object_4_3_spatial
102
+ 84 4 3 shape 0/1 ood_084_spatial_object_4_3_shape
103
+ 85 2 0 spatial 0/1 ood_085_spatial_object_2_0_spatial
104
+ 86 2 0 shape 0/1 ood_086_spatial_object_2_0_shape
105
+ 87 0 2 spatial 0/1 ood_087_spatial_object_0_2_spatial
106
+ 88 0 2 shape 0/1 ood_088_spatial_object_0_2_shape
107
+ 89 3 2 spatial 1/1 ood_089_spatial_object_3_2_spatial
108
+ 90 3 2 shape 0/1 ood_090_spatial_object_3_2_shape
109
+ 91 4 1 spatial 0/1 ood_091_spatial_object_4_1_spatial
110
+ 92 4 1 shape 0/1 ood_092_spatial_object_4_1_shape
111
+ 93 0 4 spatial 0/1 ood_093_spatial_object_0_4_spatial
112
+ 94 0 4 shape 0/1 ood_094_spatial_object_0_4_shape
113
+ 95 3 0 spatial 0/1 ood_095_spatial_object_3_0_spatial
114
+ 96 3 0 shape 0/1 ood_096_spatial_object_3_0_shape
115
+ 97 0 3 spatial 0/1 ood_097_spatial_object_0_3_spatial
116
+ 98 0 3 shape 0/1 ood_098_spatial_object_0_3_shape
117
+ 99 4 1 spatial 0/1 ood_099_spatial_object_4_1_spatial
118
+ 100 4 1 shape 0/1 ood_100_spatial_object_4_1_shape
119
+ 101 2 1 spatial 0/1 ood_101_spatial_object_2_1_spatial
120
+ 102 2 1 shape 0/1 ood_102_spatial_object_2_1_shape
121
+ 103 4 3 spatial 0/1 ood_103_spatial_object_4_3_spatial
122
+ 104 4 3 shape 0/1 ood_104_spatial_object_4_3_shape
123
+ 105 2 4 spatial 0/1 ood_105_spatial_object_2_4_spatial
124
+ 106 2 4 shape 0/1 ood_106_spatial_object_2_4_shape
125
+ 107 4 2 spatial 0/1 ood_107_spatial_object_4_2_spatial
126
+ 108 4 2 shape 1/1 ood_108_spatial_object_4_2_shape
127
+ 109 1 3 spatial 0/1 ood_109_spatial_object_1_3_spatial
128
+ 110 1 3 shape 1/1 ood_110_spatial_object_1_3_shape
129
+ 111 0 3 spatial 0/1 ood_111_spatial_object_0_3_spatial
130
+ 112 0 3 shape 0/1 ood_112_spatial_object_0_3_shape
131
+ 113 0 2 spatial 0/1 ood_113_spatial_object_0_2_spatial
132
+ 114 0 2 shape 0/1 ood_114_spatial_object_0_2_shape
133
+ 115 1 4 spatial 0/1 ood_115_spatial_object_1_4_spatial
134
+ 116 1 4 shape 1/1 ood_116_spatial_object_1_4_shape
135
+ 117 2 1 spatial 0/1 ood_117_spatial_object_2_1_spatial
136
+ 118 2 1 shape 1/1 ood_118_spatial_object_2_1_shape
137
+ 119 0 3 spatial 0/1 ood_119_spatial_object_0_3_spatial
138
+ 120 0 3 shape 0/1 ood_120_spatial_object_0_3_shape
139
+ 121 1 4 spatial 0/1 ood_121_spatial_object_1_4_spatial
140
+ 122 1 4 shape 1/1 ood_122_spatial_object_1_4_shape
141
+ 123 0 4 spatial 0/1 ood_123_spatial_object_0_4_spatial
142
+ 124 0 4 shape 0/1 ood_124_spatial_object_0_4_shape
143
+ 125 3 0 spatial 0/1 ood_125_spatial_object_3_0_spatial
144
+ 126 3 0 shape 1/1 ood_126_spatial_object_3_0_shape
145
+ 127 2 0 spatial 0/1 ood_127_spatial_object_2_0_spatial
146
+ 128 2 0 shape 0/1 ood_128_spatial_object_2_0_shape
147
+ 129 3 2 spatial 0/1 ood_129_spatial_object_3_2_spatial
148
+ 130 3 2 shape 0/1 ood_130_spatial_object_3_2_shape
149
+ 131 2 4 spatial 0/1 ood_131_spatial_object_2_4_spatial
150
+ 132 2 4 shape 0/1 ood_132_spatial_object_2_4_shape
151
+ 133 1 2 spatial 0/1 ood_133_spatial_object_1_2_spatial
152
+ 134 1 2 shape 0/1 ood_134_spatial_object_1_2_shape
153
+ 135 2 4 spatial 1/1 ood_135_spatial_object_2_4_spatial
154
+ 136 2 4 shape 0/1 ood_136_spatial_object_2_4_shape
155
+ 137 2 4 spatial 0/1 ood_137_spatial_object_2_4_spatial
156
+ 138 2 4 shape 0/1 ood_138_spatial_object_2_4_shape
157
+ 139 1 3 spatial 0/1 ood_139_spatial_object_1_3_spatial
158
+ 140 1 3 shape 0/1 ood_140_spatial_object_1_3_shape
159
+ 141 2 0 spatial 0/1 ood_141_spatial_object_2_0_spatial
160
+ 142 2 0 shape 0/1 ood_142_spatial_object_2_0_shape
161
+ 143 0 3 spatial 0/1 ood_143_spatial_object_0_3_spatial
162
+ 144 0 3 shape 0/1 ood_144_spatial_object_0_3_shape
163
+ 145 4 3 spatial 0/1 ood_145_spatial_object_4_3_spatial
164
+ 146 4 3 shape 0/1 ood_146_spatial_object_4_3_shape
165
+ 147 1 2 spatial 0/1 ood_147_spatial_object_1_2_spatial
166
+ 148 1 2 shape 0/1 ood_148_spatial_object_1_2_shape
167
+ 149 4 1 spatial 0/1 ood_149_spatial_object_4_1_spatial
168
+ 150 4 1 shape 0/1 ood_150_spatial_object_4_1_shape
169
+ 151 1 4 spatial 0/1 ood_151_spatial_object_1_4_spatial
170
+ 152 1 4 shape 0/1 ood_152_spatial_object_1_4_shape
171
+ 153 1 2 spatial 0/1 ood_153_spatial_object_1_2_spatial
172
+ 154 1 2 shape 0/1 ood_154_spatial_object_1_2_shape
173
+ 155 3 2 spatial 0/1 ood_155_spatial_object_3_2_spatial
174
+ 156 3 2 shape 0/1 ood_156_spatial_object_3_2_shape
175
+ 157 3 0 spatial 0/1 ood_157_spatial_object_3_0_spatial
176
+ 158 3 0 shape 0/1 ood_158_spatial_object_3_0_shape
177
+ 159 2 0 spatial 0/1 ood_159_spatial_object_2_0_spatial
178
+ 160 2 0 shape 0/1 ood_160_spatial_object_2_0_shape
179
+ 161 4 1 spatial 0/1 ood_161_spatial_object_4_1_spatial
180
+ 162 4 1 shape 0/1 ood_162_spatial_object_4_1_shape
181
+ 163 1 4 spatial 0/1 ood_163_spatial_object_1_4_spatial
182
+ 164 1 4 shape 1/1 ood_164_spatial_object_1_4_shape
183
+ 165 2 3 spatial 0/1 ood_165_spatial_object_2_3_spatial
184
+ 166 2 3 shape 0/1 ood_166_spatial_object_2_3_shape
185
+ 167 0 2 spatial 0/1 ood_167_spatial_object_0_2_spatial
186
+ 168 0 2 shape 0/1 ood_168_spatial_object_0_2_shape
187
+ 169 1 4 spatial 0/1 ood_169_spatial_object_1_4_spatial
188
+ 170 1 4 shape 1/1 ood_170_spatial_object_1_4_shape
189
+ 171 0 2 spatial 0/1 ood_171_spatial_object_0_2_spatial
190
+ 172 0 2 shape 0/1 ood_172_spatial_object_0_2_shape
191
+ 173 2 3 spatial 0/1 ood_173_spatial_object_2_3_spatial
192
+ 174 2 3 shape 0/1 ood_174_spatial_object_2_3_shape
193
+ 175 3 0 spatial 0/1 ood_175_spatial_object_3_0_spatial
194
+ 176 3 0 shape 0/1 ood_176_spatial_object_3_0_shape
195
+ 177 2 0 spatial 0/1 ood_177_spatial_object_2_0_spatial
196
+ 178 2 0 shape 1/1 ood_178_spatial_object_2_0_shape
197
+ 179 0 3 spatial 0/1 ood_179_spatial_object_0_3_spatial
198
+ 180 0 3 shape 0/1 ood_180_spatial_object_0_3_shape
199
+ 181 1 3 spatial 0/1 ood_181_spatial_object_1_3_spatial
200
+ 182 1 3 shape 1/1 ood_182_spatial_object_1_3_shape
201
+ 183 4 2 spatial 0/1 ood_183_spatial_object_4_2_spatial
202
+ 184 4 2 shape 0/1 ood_184_spatial_object_4_2_shape
203
+ 185 2 3 spatial 0/1 ood_185_spatial_object_2_3_spatial
204
+ 186 2 3 shape 0/1 ood_186_spatial_object_2_3_shape
205
+ 187 1 3 spatial 0/1 ood_187_spatial_object_1_3_spatial
206
+ 188 1 3 shape 0/1 ood_188_spatial_object_1_3_shape
207
+ 189 3 4 spatial 0/1 ood_189_spatial_object_3_4_spatial
208
+ 190 3 4 shape 0/1 ood_190_spatial_object_3_4_shape
209
+ 191 3 0 spatial 0/1 ood_191_spatial_object_3_0_spatial
210
+ 192 3 0 shape 0/1 ood_192_spatial_object_3_0_shape
211
+ 193 3 2 spatial 0/1 ood_193_spatial_object_3_2_spatial
212
+ 194 3 2 shape 0/1 ood_194_spatial_object_3_2_shape
213
+ 195 1 0 spatial 0/1 ood_195_spatial_object_1_0_spatial
214
+ 196 1 0 shape 0/1 ood_196_spatial_object_1_0_shape
215
+ 197 2 0 spatial 0/1 ood_197_spatial_object_2_0_spatial
216
+ 198 2 0 shape 0/1 ood_198_spatial_object_2_0_shape
217
+ 199 1 0 spatial 0/1 ood_199_spatial_object_1_0_spatial
218
+ 200 1 0 shape 0/1 ood_200_spatial_object_1_0_shape
219
+ 201 1 4 spatial 0/1 ood_201_spatial_object_1_4_spatial
220
+ 202 1 4 shape 0/1 ood_202_spatial_object_1_4_shape
221
+ 203 4 1 spatial 0/1 ood_203_spatial_object_4_1_spatial
222
+ 204 4 1 shape 0/1 ood_204_spatial_object_4_1_shape
223
+ 205 4 1 spatial 0/1 ood_205_spatial_object_4_1_spatial
224
+ 206 4 1 shape 0/1 ood_206_spatial_object_4_1_shape
225
+ 207 2 0 spatial 0/1 ood_207_spatial_object_2_0_spatial
226
+ 208 2 0 shape 0/1 ood_208_spatial_object_2_0_shape
227
+ 209 4 2 spatial 0/1 ood_209_spatial_object_4_2_spatial
228
+ 210 4 2 shape 0/1 ood_210_spatial_object_4_2_shape
229
+ 211 3 1 spatial 0/1 ood_211_spatial_object_3_1_spatial
230
+ 212 3 1 shape 0/1 ood_212_spatial_object_3_1_shape
231
+ 213 4 2 spatial 0/1 ood_213_spatial_object_4_2_spatial
232
+ 214 4 2 shape 1/1 ood_214_spatial_object_4_2_shape
233
+ 215 3 0 spatial 0/1 ood_215_spatial_object_3_0_spatial
234
+ 216 3 0 shape 0/1 ood_216_spatial_object_3_0_shape
235
+ 217 2 4 spatial 1/1 ood_217_spatial_object_2_4_spatial
236
+ 218 2 4 shape 0/1 ood_218_spatial_object_2_4_shape
237
+ 219 1 4 spatial 0/1 ood_219_spatial_object_1_4_spatial
238
+ 220 1 4 shape 0/1 ood_220_spatial_object_1_4_shape
239
+ 221 1 0 spatial 0/1 ood_221_spatial_object_1_0_spatial
240
+ 222 1 0 shape 0/1 ood_222_spatial_object_1_0_shape
241
+ 223 4 0 spatial 0/1 ood_223_spatial_object_4_0_spatial
242
+ 224 4 0 shape 0/1 ood_224_spatial_object_4_0_shape
243
+ 225 3 4 spatial 0/1 ood_225_spatial_object_3_4_spatial
244
+ 226 3 4 shape 0/1 ood_226_spatial_object_3_4_shape
245
+ 227 0 3 spatial 0/1 ood_227_spatial_object_0_3_spatial
246
+ 228 0 3 shape 0/1 ood_228_spatial_object_0_3_shape
247
+ 229 0 2 spatial 0/1 ood_229_spatial_object_0_2_spatial
248
+ 230 0 2 shape 0/1 ood_230_spatial_object_0_2_shape
249
+ 231 0 4 spatial 0/1 ood_231_spatial_object_0_4_spatial
250
+ 232 0 4 shape 0/1 ood_232_spatial_object_0_4_shape
251
+ 233 1 0 spatial 0/1 ood_233_spatial_object_1_0_spatial
252
+ 234 1 0 shape 0/1 ood_234_spatial_object_1_0_shape
253
+ 235 1 2 spatial 0/1 ood_235_spatial_object_1_2_spatial
254
+ 236 1 2 shape 0/1 ood_236_spatial_object_1_2_shape
255
+ 237 3 1 spatial 0/1 ood_237_spatial_object_3_1_spatial
256
+ 238 3 1 shape 0/1 ood_238_spatial_object_3_1_shape
257
+ 239 4 3 spatial 0/1 ood_239_spatial_object_4_3_spatial
258
+ 240 4 3 shape 1/1 ood_240_spatial_object_4_3_shape
259
+ 241 0 3 spatial 0/1 ood_241_spatial_object_0_3_spatial
260
+ 242 0 3 shape 1/1 ood_242_spatial_object_0_3_shape
261
+ 243 3 0 spatial 0/1 ood_243_spatial_object_3_0_spatial
262
+ 244 3 0 shape 0/1 ood_244_spatial_object_3_0_shape
263
+ 245 3 0 spatial 0/1 ood_245_spatial_object_3_0_spatial
264
+ 246 3 0 shape 0/1 ood_246_spatial_object_3_0_shape
265
+ 247 4 3 spatial 0/1 ood_247_spatial_object_4_3_spatial
266
+ 248 4 3 shape 0/1 ood_248_spatial_object_4_3_shape
267
+ 249 3 2 spatial 0/1 ood_249_spatial_object_3_2_spatial
268
+ 250 3 2 shape 0/1 ood_250_spatial_object_3_2_shape
269
+ 251 4 0 spatial 0/1 ood_251_spatial_object_4_0_spatial
270
+ 252 4 0 shape 1/1 ood_252_spatial_object_4_0_shape
271
+ 253 2 0 spatial 0/1 ood_253_spatial_object_2_0_spatial
272
+ 254 2 0 shape 1/1 ood_254_spatial_object_2_0_shape
273
+ 255 4 1 spatial 0/1 ood_255_spatial_object_4_1_spatial
274
+ 256 4 1 shape 0/1 ood_256_spatial_object_4_1_shape
275
+ 257 0 1 spatial 0/1 ood_257_spatial_object_0_1_spatial
276
+ 258 0 1 shape 0/1 ood_258_spatial_object_0_1_shape
277
+ 259 0 4 spatial 0/1 ood_259_spatial_object_0_4_spatial
278
+ 260 0 4 shape 0/1 ood_260_spatial_object_0_4_shape
279
+ 261 4 1 spatial 0/1 ood_261_spatial_object_4_1_spatial
280
+ 262 4 1 shape 0/1 ood_262_spatial_object_4_1_shape
281
+ 263 2 0 spatial 0/1 ood_263_spatial_object_2_0_spatial
282
+ 264 2 0 shape 0/1 ood_264_spatial_object_2_0_shape
283
+ 266 2 3 shape 0/1 ood_266_spatial_object_2_3_shape
284
+ 267 0 4 spatial 0/1 ood_267_spatial_object_0_4_spatial
285
+ 268 0 4 shape 0/1 ood_268_spatial_object_0_4_shape
286
+ 269 2 1 spatial 0/1 ood_269_spatial_object_2_1_spatial
287
+ 270 2 1 shape 0/1 ood_270_spatial_object_2_1_shape
288
+ 271 3 1 spatial 0/1 ood_271_spatial_object_3_1_spatial
289
+ 272 3 1 shape 0/1 ood_272_spatial_object_3_1_shape
290
+ 273 1 2 spatial 0/1 ood_273_spatial_object_1_2_spatial
291
+ 274 1 2 shape 0/1 ood_274_spatial_object_1_2_shape
292
+ 275 3 2 spatial 0/1 ood_275_spatial_object_3_2_spatial
293
+ 276 3 2 shape 0/1 ood_276_spatial_object_3_2_shape
294
+ 277 0 1 spatial 0/1 ood_277_spatial_object_0_1_spatial
295
+ 278 0 1 shape 0/1 ood_278_spatial_object_0_1_shape
296
+ 279 2 0 spatial 0/1 ood_279_spatial_object_2_0_spatial
297
+ 280 2 0 shape 0/1 ood_280_spatial_object_2_0_shape
298
+ 281 4 0 spatial 0/1 ood_281_spatial_object_4_0_spatial
299
+ 282 4 0 shape 0/1 ood_282_spatial_object_4_0_shape
300
+ 283 1 2 spatial 0/1 ood_283_spatial_object_1_2_spatial
301
+ 284 1 2 shape 0/1 ood_284_spatial_object_1_2_shape
302
+ 285 4 0 spatial 0/1 ood_285_spatial_object_4_0_spatial
303
+ 286 4 0 shape 0/1 ood_286_spatial_object_4_0_shape
304
+ 287 0 4 spatial 0/1 ood_287_spatial_object_0_4_spatial
305
+ 288 0 4 shape 0/1 ood_288_spatial_object_0_4_shape
306
+ 289 2 1 spatial 0/1 ood_289_spatial_object_2_1_spatial
307
+ 290 2 1 shape 0/1 ood_290_spatial_object_2_1_shape
308
+ 291 4 0 spatial 0/1 ood_291_spatial_object_4_0_spatial
309
+ 292 4 0 shape 0/1 ood_292_spatial_object_4_0_shape
310
+ 293 4 3 spatial 0/1 ood_293_spatial_object_4_3_spatial
311
+ 294 4 3 shape 0/1 ood_294_spatial_object_4_3_shape
312
+ 295 1 3 spatial 0/1 ood_295_spatial_object_1_3_spatial
313
+ 296 1 3 shape 0/1 ood_296_spatial_object_1_3_shape
314
+ 297 1 0 spatial 0/1 ood_297_spatial_object_1_0_spatial
315
+ 298 1 0 shape 1/1 ood_298_spatial_object_1_0_shape
316
+ 299 2 4 spatial 0/1 ood_299_spatial_object_2_4_spatial
317
+ 300 2 4 shape 0/1 ood_300_spatial_object_2_4_shape
318
+ 301 1 2 spatial 0/1 ood_301_spatial_object_1_2_spatial
319
+ 302 1 2 shape 1/1 ood_302_spatial_object_1_2_shape
320
+ 303 4 1 spatial 0/1 ood_303_spatial_object_4_1_spatial
321
+ 304 4 1 shape 0/1 ood_304_spatial_object_4_1_shape
322
+ 305 4 0 spatial 0/1 ood_305_spatial_object_4_0_spatial
323
+ 306 4 0 shape 0/1 ood_306_spatial_object_4_0_shape
324
+ 307 0 1 spatial 0/1 ood_307_spatial_object_0_1_spatial
325
+ 308 0 1 shape 0/1 ood_308_spatial_object_0_1_shape
326
+ 309 4 3 spatial 0/1 ood_309_spatial_object_4_3_spatial
327
+ 310 4 3 shape 1/1 ood_310_spatial_object_4_3_shape
328
+ 311 2 3 spatial 0/1 ood_311_spatial_object_2_3_spatial
329
+ 312 2 3 shape 1/1 ood_312_spatial_object_2_3_shape
330
+ 313 3 4 spatial 0/1 ood_313_spatial_object_3_4_spatial
331
+ 314 3 4 shape 0/1 ood_314_spatial_object_3_4_shape
332
+ 315 0 1 spatial 0/1 ood_315_spatial_object_0_1_spatial
333
+ 316 0 1 shape 0/1 ood_316_spatial_object_0_1_shape
334
+ 317 0 4 spatial 0/1 ood_317_spatial_object_0_4_spatial
335
+ 318 0 4 shape 0/1 ood_318_spatial_object_0_4_shape
336
+ 319 2 4 spatial 1/1 ood_319_spatial_object_2_4_spatial
337
+ 320 2 4 shape 0/1 ood_320_spatial_object_2_4_shape
338
+ 321 2 1 spatial 0/1 ood_321_spatial_object_2_1_spatial
339
+ 322 2 1 shape 0/1 ood_322_spatial_object_2_1_shape
340
+ 323 1 4 spatial 0/1 ood_323_spatial_object_1_4_spatial
341
+ 324 1 4 shape 0/1 ood_324_spatial_object_1_4_shape
342
+ 325 0 2 spatial 0/1 ood_325_spatial_object_0_2_spatial
343
+ 326 0 2 shape 0/1 ood_326_spatial_object_0_2_shape
344
+ 327 1 4 spatial 0/1 ood_327_spatial_object_1_4_spatial
345
+ 328 1 4 shape 1/1 ood_328_spatial_object_1_4_shape
346
+ 329 4 2 spatial 0/1 ood_329_spatial_object_4_2_spatial
347
+ 330 4 2 shape 0/1 ood_330_spatial_object_4_2_shape
348
+ 331 0 3 spatial 0/1 ood_331_spatial_object_0_3_spatial
349
+ 332 0 3 shape 0/1 ood_332_spatial_object_0_3_shape
350
+ 333 0 3 spatial 0/1 ood_333_spatial_object_0_3_spatial
351
+ 334 0 3 shape 0/1 ood_334_spatial_object_0_3_shape
352
+ 335 3 4 spatial 0/1 ood_335_spatial_object_3_4_spatial
353
+ 336 3 4 shape 0/1 ood_336_spatial_object_3_4_shape
354
+ 337 0 3 spatial 0/1 ood_337_spatial_object_0_3_spatial
355
+ 338 0 3 shape 0/1 ood_338_spatial_object_0_3_shape
356
+ 339 4 1 spatial 0/1 ood_339_spatial_object_4_1_spatial
357
+ 340 4 1 shape 0/1 ood_340_spatial_object_4_1_shape
358
+ 341 1 0 spatial 0/1 ood_341_spatial_object_1_0_spatial
359
+ 342 1 0 shape 1/1 ood_342_spatial_object_1_0_shape
360
+ 343 1 0 spatial 0/1 ood_343_spatial_object_1_0_spatial
361
+ 344 1 0 shape 0/1 ood_344_spatial_object_1_0_shape
362
+ 345 3 4 spatial 0/1 ood_345_spatial_object_3_4_spatial
363
+ 346 3 4 shape 0/1 ood_346_spatial_object_3_4_shape
364
+ 347 4 1 spatial 0/1 ood_347_spatial_object_4_1_spatial
365
+ 348 4 1 shape 0/1 ood_348_spatial_object_4_1_shape
366
+ 349 1 2 spatial 0/1 ood_349_spatial_object_1_2_spatial
367
+ 350 1 2 shape 0/1 ood_350_spatial_object_1_2_shape
368
+ 351 2 0 spatial 0/1 ood_351_spatial_object_2_0_spatial
369
+ 352 2 0 shape 0/1 ood_352_spatial_object_2_0_shape
370
+ 353 4 0 spatial 0/1 ood_353_spatial_object_4_0_spatial
371
+ 354 4 0 shape 0/1 ood_354_spatial_object_4_0_shape
372
+ 355 4 3 spatial 0/1 ood_355_spatial_object_4_3_spatial
373
+ 356 4 3 shape 0/1 ood_356_spatial_object_4_3_shape
374
+ 357 3 1 spatial 0/1 ood_357_spatial_object_3_1_spatial
375
+ 358 3 1 shape 0/1 ood_358_spatial_object_3_1_shape
376
+ 359 1 3 spatial 0/1 ood_359_spatial_object_1_3_spatial
377
+ 360 1 3 shape 1/1 ood_360_spatial_object_1_3_shape
378
+ 361 4 1 spatial 0/1 ood_361_spatial_object_4_1_spatial
379
+ 362 4 1 shape 0/1 ood_362_spatial_object_4_1_shape
380
+ 363 1 3 spatial 0/1 ood_363_spatial_object_1_3_spatial
381
+ 364 1 3 shape 0/1 ood_364_spatial_object_1_3_shape
382
+ 365 2 1 spatial 0/1 ood_365_spatial_object_2_1_spatial
383
+ 366 2 1 shape 0/1 ood_366_spatial_object_2_1_shape
384
+ 367 3 0 spatial 0/1 ood_367_spatial_object_3_0_spatial
385
+ 368 3 0 shape 0/1 ood_368_spatial_object_3_0_shape
386
+ 369 2 4 spatial 0/1 ood_369_spatial_object_2_4_spatial
387
+ 370 2 4 shape 0/1 ood_370_spatial_object_2_4_shape
388
+ 371 3 2 spatial 0/1 ood_371_spatial_object_3_2_spatial
389
+ 372 3 2 shape 0/1 ood_372_spatial_object_3_2_shape
390
+ 373 4 0 spatial 0/1 ood_373_spatial_object_4_0_spatial
391
+ 374 4 0 shape 0/1 ood_374_spatial_object_4_0_shape
392
+ 375 3 2 spatial 0/1 ood_375_spatial_object_3_2_spatial
393
+ 376 3 2 shape 0/1 ood_376_spatial_object_3_2_shape
394
+ 377 0 4 spatial 0/1 ood_377_spatial_object_0_4_spatial
395
+ 378 0 4 shape 0/1 ood_378_spatial_object_0_4_shape
396
+ 379 1 4 spatial 0/1 ood_379_spatial_object_1_4_spatial
397
+ 380 1 4 shape 0/1 ood_380_spatial_object_1_4_shape
398
+ 381 1 4 spatial 0/1 ood_381_spatial_object_1_4_spatial
399
+ 382 1 4 shape 1/1 ood_382_spatial_object_1_4_shape
400
+ 383 0 3 spatial 0/1 ood_383_spatial_object_0_3_spatial
401
+ 384 0 3 shape 0/1 ood_384_spatial_object_0_3_shape
402
+ 385 2 3 spatial 0/1 ood_385_spatial_object_2_3_spatial
403
+ 386 2 3 shape 0/1 ood_386_spatial_object_2_3_shape
404
+ 387 0 1 spatial 0/1 ood_387_spatial_object_0_1_spatial
405
+ 388 0 1 shape 0/1 ood_388_spatial_object_0_1_shape
406
+ 389 4 2 spatial 0/1 ood_389_spatial_object_4_2_spatial
407
+ 390 4 2 shape 1/1 ood_390_spatial_object_4_2_shape
408
+ 391 4 1 spatial 0/1 ood_391_spatial_object_4_1_spatial
409
+ 392 4 1 shape 0/1 ood_392_spatial_object_4_1_shape
410
+ 393 1 4 spatial 0/1 ood_393_spatial_object_1_4_spatial
411
+ 394 1 4 shape 1/1 ood_394_spatial_object_1_4_shape
412
+ 395 4 2 spatial 0/1 ood_395_spatial_object_4_2_spatial
413
+ 396 4 2 shape 1/1 ood_396_spatial_object_4_2_shape
414
+ 397 1 4 spatial 0/1 ood_397_spatial_object_1_4_spatial
415
+ 398 1 4 shape 0/1 ood_398_spatial_object_1_4_shape
416
+ 399 0 1 spatial 0/1 ood_399_spatial_object_0_1_spatial
417
+ 400 0 1 shape 0/1 ood_400_spatial_object_0_1_shape
418
+
419
+ overall_spatial_success=1/67 (1.5%)
420
+ overall_shape_success=11/68 (16.2%)
results/genie/conflict_env/genie_spatial_size_ood_seed42.txt ADDED
@@ -0,0 +1,421 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OOD pairwise inference summary (Genie-Envisioner)
2
+ experiment=spatial_size
3
+ seed=42
4
+ total_episodes_target=200
5
+ num_episodes_per_run=1
6
+ total_runs=400
7
+ total_episodes_actual=400
8
+ third_seed=42
9
+ weight=/workspace/groot_eval/genie_ckpts/spatial_size
10
+ ltx_model=/workspace/groot_eval/LTX-Video
11
+ domain_name=conflict
12
+ sim_backend=cpu
13
+ max_episode_steps=300
14
+ replan_steps=5
15
+ num_inference_steps=5
16
+ seed_base=0
17
+
18
+ index pair_i pair_j run_type success run_name
19
+ 1 0 1 spatial 1/1 ood_001_spatial_size_0_1_spatial
20
+ 2 0 1 size 0/1 ood_002_spatial_size_0_1_size
21
+ 3 0 1 spatial 0/1 ood_003_spatial_size_0_1_spatial
22
+ 4 0 1 size 0/1 ood_004_spatial_size_0_1_size
23
+ 5 2 3 spatial 1/1 ood_005_spatial_size_2_3_spatial
24
+ 6 2 3 size 1/1 ood_006_spatial_size_2_3_size
25
+ 7 1 0 spatial 0/1 ood_007_spatial_size_1_0_spatial
26
+ 8 1 0 size 0/1 ood_008_spatial_size_1_0_size
27
+ 9 1 0 spatial 0/1 ood_009_spatial_size_1_0_spatial
28
+ 10 1 0 size 0/1 ood_010_spatial_size_1_0_size
29
+ 11 1 0 spatial 1/1 ood_011_spatial_size_1_0_spatial
30
+ 12 1 0 size 0/1 ood_012_spatial_size_1_0_size
31
+ 13 0 1 spatial 1/1 ood_013_spatial_size_0_1_spatial
32
+ 14 0 1 size 0/1 ood_014_spatial_size_0_1_size
33
+ 15 0 1 spatial 1/1 ood_015_spatial_size_0_1_spatial
34
+ 16 0 1 size 0/1 ood_016_spatial_size_0_1_size
35
+ 17 3 2 spatial 1/1 ood_017_spatial_size_3_2_spatial
36
+ 18 3 2 size 0/1 ood_018_spatial_size_3_2_size
37
+ 19 0 1 spatial 1/1 ood_019_spatial_size_0_1_spatial
38
+ 20 0 1 size 0/1 ood_020_spatial_size_0_1_size
39
+ 21 0 1 spatial 0/1 ood_021_spatial_size_0_1_spatial
40
+ 22 0 1 size 0/1 ood_022_spatial_size_0_1_size
41
+ 23 0 1 spatial 1/1 ood_023_spatial_size_0_1_spatial
42
+ 24 0 1 size 0/1 ood_024_spatial_size_0_1_size
43
+ 25 1 0 spatial 0/1 ood_025_spatial_size_1_0_spatial
44
+ 26 1 0 size 0/1 ood_026_spatial_size_1_0_size
45
+ 27 1 0 spatial 0/1 ood_027_spatial_size_1_0_spatial
46
+ 28 1 0 size 0/1 ood_028_spatial_size_1_0_size
47
+ 29 0 1 spatial 1/1 ood_029_spatial_size_0_1_spatial
48
+ 30 0 1 size 0/1 ood_030_spatial_size_0_1_size
49
+ 31 1 0 spatial 0/1 ood_031_spatial_size_1_0_spatial
50
+ 32 1 0 size 0/1 ood_032_spatial_size_1_0_size
51
+ 33 3 2 spatial 0/1 ood_033_spatial_size_3_2_spatial
52
+ 34 3 2 size 0/1 ood_034_spatial_size_3_2_size
53
+ 35 1 0 spatial 0/1 ood_035_spatial_size_1_0_spatial
54
+ 36 1 0 size 0/1 ood_036_spatial_size_1_0_size
55
+ 37 3 2 spatial 0/1 ood_037_spatial_size_3_2_spatial
56
+ 38 3 2 size 0/1 ood_038_spatial_size_3_2_size
57
+ 39 2 3 spatial 0/1 ood_039_spatial_size_2_3_spatial
58
+ 40 2 3 size 0/1 ood_040_spatial_size_2_3_size
59
+ 41 0 1 spatial 0/1 ood_041_spatial_size_0_1_spatial
60
+ 42 0 1 size 0/1 ood_042_spatial_size_0_1_size
61
+ 43 1 0 spatial 0/1 ood_043_spatial_size_1_0_spatial
62
+ 44 1 0 size 0/1 ood_044_spatial_size_1_0_size
63
+ 45 3 2 spatial 0/1 ood_045_spatial_size_3_2_spatial
64
+ 46 3 2 size 0/1 ood_046_spatial_size_3_2_size
65
+ 47 2 3 spatial 0/1 ood_047_spatial_size_2_3_spatial
66
+ 48 2 3 size 1/1 ood_048_spatial_size_2_3_size
67
+ 49 2 3 spatial 0/1 ood_049_spatial_size_2_3_spatial
68
+ 50 2 3 size 1/1 ood_050_spatial_size_2_3_size
69
+ 51 1 0 spatial 0/1 ood_051_spatial_size_1_0_spatial
70
+ 52 1 0 size 0/1 ood_052_spatial_size_1_0_size
71
+ 53 1 0 spatial 0/1 ood_053_spatial_size_1_0_spatial
72
+ 54 1 0 size 0/1 ood_054_spatial_size_1_0_size
73
+ 55 2 3 spatial 0/1 ood_055_spatial_size_2_3_spatial
74
+ 56 2 3 size 1/1 ood_056_spatial_size_2_3_size
75
+ 57 0 1 spatial 0/1 ood_057_spatial_size_0_1_spatial
76
+ 58 0 1 size 0/1 ood_058_spatial_size_0_1_size
77
+ 59 0 1 spatial 0/1 ood_059_spatial_size_0_1_spatial
78
+ 60 0 1 size 0/1 ood_060_spatial_size_0_1_size
79
+ 61 3 2 spatial 1/1 ood_061_spatial_size_3_2_spatial
80
+ 62 3 2 size 0/1 ood_062_spatial_size_3_2_size
81
+ 63 0 1 spatial 0/1 ood_063_spatial_size_0_1_spatial
82
+ 64 0 1 size 0/1 ood_064_spatial_size_0_1_size
83
+ 65 2 3 spatial 0/1 ood_065_spatial_size_2_3_spatial
84
+ 66 2 3 size 1/1 ood_066_spatial_size_2_3_size
85
+ 67 2 3 spatial 0/1 ood_067_spatial_size_2_3_spatial
86
+ 68 2 3 size 1/1 ood_068_spatial_size_2_3_size
87
+ 69 2 3 spatial 0/1 ood_069_spatial_size_2_3_spatial
88
+ 70 2 3 size 1/1 ood_070_spatial_size_2_3_size
89
+ 71 0 1 spatial 1/1 ood_071_spatial_size_0_1_spatial
90
+ 72 0 1 size 0/1 ood_072_spatial_size_0_1_size
91
+ 73 3 2 spatial 1/1 ood_073_spatial_size_3_2_spatial
92
+ 74 3 2 size 0/1 ood_074_spatial_size_3_2_size
93
+ 75 0 1 spatial 1/1 ood_075_spatial_size_0_1_spatial
94
+ 76 0 1 size 0/1 ood_076_spatial_size_0_1_size
95
+ 77 3 2 spatial 0/1 ood_077_spatial_size_3_2_spatial
96
+ 78 3 2 size 0/1 ood_078_spatial_size_3_2_size
97
+ 79 0 1 spatial 0/1 ood_079_spatial_size_0_1_spatial
98
+ 80 0 1 size 0/1 ood_080_spatial_size_0_1_size
99
+ 81 2 3 spatial 0/1 ood_081_spatial_size_2_3_spatial
100
+ 82 2 3 size 0/1 ood_082_spatial_size_2_3_size
101
+ 83 2 3 spatial 0/1 ood_083_spatial_size_2_3_spatial
102
+ 84 2 3 size 1/1 ood_084_spatial_size_2_3_size
103
+ 85 1 0 spatial 0/1 ood_085_spatial_size_1_0_spatial
104
+ 86 1 0 size 0/1 ood_086_spatial_size_1_0_size
105
+ 87 0 1 spatial 0/1 ood_087_spatial_size_0_1_spatial
106
+ 88 0 1 size 0/1 ood_088_spatial_size_0_1_size
107
+ 89 0 1 spatial 0/1 ood_089_spatial_size_0_1_spatial
108
+ 90 0 1 size 0/1 ood_090_spatial_size_0_1_size
109
+ 91 1 0 spatial 0/1 ood_091_spatial_size_1_0_spatial
110
+ 92 1 0 size 0/1 ood_092_spatial_size_1_0_size
111
+ 93 2 3 spatial 1/1 ood_093_spatial_size_2_3_spatial
112
+ 94 2 3 size 1/1 ood_094_spatial_size_2_3_size
113
+ 95 0 1 spatial 0/1 ood_095_spatial_size_0_1_spatial
114
+ 96 0 1 size 0/1 ood_096_spatial_size_0_1_size
115
+ 97 1 0 spatial 0/1 ood_097_spatial_size_1_0_spatial
116
+ 98 1 0 size 0/1 ood_098_spatial_size_1_0_size
117
+ 99 0 1 spatial 0/1 ood_099_spatial_size_0_1_spatial
118
+ 100 0 1 size 0/1 ood_100_spatial_size_0_1_size
119
+ 101 3 2 spatial 1/1 ood_101_spatial_size_3_2_spatial
120
+ 102 3 2 size 0/1 ood_102_spatial_size_3_2_size
121
+ 103 2 3 spatial 0/1 ood_103_spatial_size_2_3_spatial
122
+ 104 2 3 size 1/1 ood_104_spatial_size_2_3_size
123
+ 105 3 2 spatial 1/1 ood_105_spatial_size_3_2_spatial
124
+ 106 3 2 size 0/1 ood_106_spatial_size_3_2_size
125
+ 107 2 3 spatial 0/1 ood_107_spatial_size_2_3_spatial
126
+ 108 2 3 size 1/1 ood_108_spatial_size_2_3_size
127
+ 109 1 0 spatial 1/1 ood_109_spatial_size_1_0_spatial
128
+ 110 1 0 size 0/1 ood_110_spatial_size_1_0_size
129
+ 111 2 3 spatial 0/1 ood_111_spatial_size_2_3_spatial
130
+ 112 2 3 size 1/1 ood_112_spatial_size_2_3_size
131
+ 113 2 3 spatial 0/1 ood_113_spatial_size_2_3_spatial
132
+ 114 2 3 size 1/1 ood_114_spatial_size_2_3_size
133
+ 115 1 0 spatial 0/1 ood_115_spatial_size_1_0_spatial
134
+ 116 1 0 size 0/1 ood_116_spatial_size_1_0_size
135
+ 117 2 3 spatial 0/1 ood_117_spatial_size_2_3_spatial
136
+ 118 2 3 size 1/1 ood_118_spatial_size_2_3_size
137
+ 119 0 1 spatial 1/1 ood_119_spatial_size_0_1_spatial
138
+ 120 0 1 size 0/1 ood_120_spatial_size_0_1_size
139
+ 121 1 0 spatial 0/1 ood_121_spatial_size_1_0_spatial
140
+ 122 1 0 size 0/1 ood_122_spatial_size_1_0_size
141
+ 123 1 0 spatial 0/1 ood_123_spatial_size_1_0_spatial
142
+ 124 1 0 size 0/1 ood_124_spatial_size_1_0_size
143
+ 125 1 0 spatial 0/1 ood_125_spatial_size_1_0_spatial
144
+ 126 1 0 size 0/1 ood_126_spatial_size_1_0_size
145
+ 127 3 2 spatial 1/1 ood_127_spatial_size_3_2_spatial
146
+ 128 3 2 size 0/1 ood_128_spatial_size_3_2_size
147
+ 129 3 2 spatial 0/1 ood_129_spatial_size_3_2_spatial
148
+ 130 3 2 size 0/1 ood_130_spatial_size_3_2_size
149
+ 131 2 3 spatial 0/1 ood_131_spatial_size_2_3_spatial
150
+ 132 2 3 size 1/1 ood_132_spatial_size_2_3_size
151
+ 133 1 0 spatial 0/1 ood_133_spatial_size_1_0_spatial
152
+ 134 1 0 size 0/1 ood_134_spatial_size_1_0_size
153
+ 135 2 3 spatial 0/1 ood_135_spatial_size_2_3_spatial
154
+ 136 2 3 size 1/1 ood_136_spatial_size_2_3_size
155
+ 137 0 1 spatial 0/1 ood_137_spatial_size_0_1_spatial
156
+ 138 0 1 size 0/1 ood_138_spatial_size_0_1_size
157
+ 139 1 0 spatial 0/1 ood_139_spatial_size_1_0_spatial
158
+ 140 1 0 size 0/1 ood_140_spatial_size_1_0_size
159
+ 141 0 1 spatial 0/1 ood_141_spatial_size_0_1_spatial
160
+ 142 0 1 size 0/1 ood_142_spatial_size_0_1_size
161
+ 143 2 3 spatial 0/1 ood_143_spatial_size_2_3_spatial
162
+ 144 2 3 size 1/1 ood_144_spatial_size_2_3_size
163
+ 145 3 2 spatial 0/1 ood_145_spatial_size_3_2_spatial
164
+ 146 3 2 size 0/1 ood_146_spatial_size_3_2_size
165
+ 147 2 3 spatial 0/1 ood_147_spatial_size_2_3_spatial
166
+ 148 2 3 size 1/1 ood_148_spatial_size_2_3_size
167
+ 149 0 1 spatial 0/1 ood_149_spatial_size_0_1_spatial
168
+ 150 0 1 size 0/1 ood_150_spatial_size_0_1_size
169
+ 151 1 0 spatial 0/1 ood_151_spatial_size_1_0_spatial
170
+ 152 1 0 size 0/1 ood_152_spatial_size_1_0_size
171
+ 153 2 3 spatial 0/1 ood_153_spatial_size_2_3_spatial
172
+ 154 2 3 size 0/1 ood_154_spatial_size_2_3_size
173
+ 155 1 0 spatial 1/1 ood_155_spatial_size_1_0_spatial
174
+ 156 1 0 size 0/1 ood_156_spatial_size_1_0_size
175
+ 157 3 2 spatial 0/1 ood_157_spatial_size_3_2_spatial
176
+ 158 3 2 size 0/1 ood_158_spatial_size_3_2_size
177
+ 159 3 2 spatial 1/1 ood_159_spatial_size_3_2_spatial
178
+ 160 3 2 size 0/1 ood_160_spatial_size_3_2_size
179
+ 161 3 2 spatial 0/1 ood_161_spatial_size_3_2_spatial
180
+ 162 3 2 size 0/1 ood_162_spatial_size_3_2_size
181
+ 163 1 0 spatial 1/1 ood_163_spatial_size_1_0_spatial
182
+ 164 1 0 size 0/1 ood_164_spatial_size_1_0_size
183
+ 165 2 3 spatial 0/1 ood_165_spatial_size_2_3_spatial
184
+ 166 2 3 size 1/1 ood_166_spatial_size_2_3_size
185
+ 167 1 0 spatial 0/1 ood_167_spatial_size_1_0_spatial
186
+ 168 1 0 size 0/1 ood_168_spatial_size_1_0_size
187
+ 169 1 0 spatial 0/1 ood_169_spatial_size_1_0_spatial
188
+ 170 1 0 size 0/1 ood_170_spatial_size_1_0_size
189
+ 171 2 3 spatial 0/1 ood_171_spatial_size_2_3_spatial
190
+ 172 2 3 size 1/1 ood_172_spatial_size_2_3_size
191
+ 173 3 2 spatial 1/1 ood_173_spatial_size_3_2_spatial
192
+ 174 3 2 size 0/1 ood_174_spatial_size_3_2_size
193
+ 175 3 2 spatial 0/1 ood_175_spatial_size_3_2_spatial
194
+ 176 3 2 size 0/1 ood_176_spatial_size_3_2_size
195
+ 177 2 3 spatial 0/1 ood_177_spatial_size_2_3_spatial
196
+ 178 2 3 size 1/1 ood_178_spatial_size_2_3_size
197
+ 179 1 0 spatial 0/1 ood_179_spatial_size_1_0_spatial
198
+ 180 1 0 size 0/1 ood_180_spatial_size_1_0_size
199
+ 181 1 0 spatial 0/1 ood_181_spatial_size_1_0_spatial
200
+ 182 1 0 size 0/1 ood_182_spatial_size_1_0_size
201
+ 183 3 2 spatial 1/1 ood_183_spatial_size_3_2_spatial
202
+ 184 3 2 size 0/1 ood_184_spatial_size_3_2_size
203
+ 185 0 1 spatial 1/1 ood_185_spatial_size_0_1_spatial
204
+ 186 0 1 size 0/1 ood_186_spatial_size_0_1_size
205
+ 187 0 1 spatial 0/1 ood_187_spatial_size_0_1_spatial
206
+ 188 0 1 size 0/1 ood_188_spatial_size_0_1_size
207
+ 189 0 1 spatial 1/1 ood_189_spatial_size_0_1_spatial
208
+ 190 0 1 size 0/1 ood_190_spatial_size_0_1_size
209
+ 191 1 0 spatial 0/1 ood_191_spatial_size_1_0_spatial
210
+ 192 1 0 size 0/1 ood_192_spatial_size_1_0_size
211
+ 193 1 0 spatial 0/1 ood_193_spatial_size_1_0_spatial
212
+ 194 1 0 size 0/1 ood_194_spatial_size_1_0_size
213
+ 195 3 2 spatial 1/1 ood_195_spatial_size_3_2_spatial
214
+ 196 3 2 size 0/1 ood_196_spatial_size_3_2_size
215
+ 197 0 1 spatial 0/1 ood_197_spatial_size_0_1_spatial
216
+ 198 0 1 size 0/1 ood_198_spatial_size_0_1_size
217
+ 199 3 2 spatial 1/1 ood_199_spatial_size_3_2_spatial
218
+ 200 3 2 size 0/1 ood_200_spatial_size_3_2_size
219
+ 201 3 2 spatial 0/1 ood_201_spatial_size_3_2_spatial
220
+ 202 3 2 size 0/1 ood_202_spatial_size_3_2_size
221
+ 203 3 2 spatial 1/1 ood_203_spatial_size_3_2_spatial
222
+ 204 3 2 size 0/1 ood_204_spatial_size_3_2_size
223
+ 205 2 3 spatial 0/1 ood_205_spatial_size_2_3_spatial
224
+ 206 2 3 size 1/1 ood_206_spatial_size_2_3_size
225
+ 207 0 1 spatial 0/1 ood_207_spatial_size_0_1_spatial
226
+ 208 0 1 size 0/1 ood_208_spatial_size_0_1_size
227
+ 209 0 1 spatial 1/1 ood_209_spatial_size_0_1_spatial
228
+ 210 0 1 size 0/1 ood_210_spatial_size_0_1_size
229
+ 211 2 3 spatial 0/1 ood_211_spatial_size_2_3_spatial
230
+ 212 2 3 size 1/1 ood_212_spatial_size_2_3_size
231
+ 213 2 3 spatial 0/1 ood_213_spatial_size_2_3_spatial
232
+ 214 2 3 size 1/1 ood_214_spatial_size_2_3_size
233
+ 215 0 1 spatial 1/1 ood_215_spatial_size_0_1_spatial
234
+ 216 0 1 size 0/1 ood_216_spatial_size_0_1_size
235
+ 217 2 3 spatial 0/1 ood_217_spatial_size_2_3_spatial
236
+ 218 2 3 size 1/1 ood_218_spatial_size_2_3_size
237
+ 219 3 2 spatial 1/1 ood_219_spatial_size_3_2_spatial
238
+ 220 3 2 size 0/1 ood_220_spatial_size_3_2_size
239
+ 221 1 0 spatial 0/1 ood_221_spatial_size_1_0_spatial
240
+ 222 1 0 size 0/1 ood_222_spatial_size_1_0_size
241
+ 223 3 2 spatial 0/1 ood_223_spatial_size_3_2_spatial
242
+ 224 3 2 size 0/1 ood_224_spatial_size_3_2_size
243
+ 225 0 1 spatial 0/1 ood_225_spatial_size_0_1_spatial
244
+ 226 0 1 size 0/1 ood_226_spatial_size_0_1_size
245
+ 227 2 3 spatial 0/1 ood_227_spatial_size_2_3_spatial
246
+ 228 2 3 size 1/1 ood_228_spatial_size_2_3_size
247
+ 229 1 0 spatial 0/1 ood_229_spatial_size_1_0_spatial
248
+ 230 1 0 size 0/1 ood_230_spatial_size_1_0_size
249
+ 231 0 1 spatial 0/1 ood_231_spatial_size_0_1_spatial
250
+ 232 0 1 size 0/1 ood_232_spatial_size_0_1_size
251
+ 233 2 3 spatial 0/1 ood_233_spatial_size_2_3_spatial
252
+ 234 2 3 size 0/1 ood_234_spatial_size_2_3_size
253
+ 235 1 0 spatial 0/1 ood_235_spatial_size_1_0_spatial
254
+ 236 1 0 size 0/1 ood_236_spatial_size_1_0_size
255
+ 237 1 0 spatial 0/1 ood_237_spatial_size_1_0_spatial
256
+ 238 1 0 size 0/1 ood_238_spatial_size_1_0_size
257
+ 239 2 3 spatial 0/1 ood_239_spatial_size_2_3_spatial
258
+ 240 2 3 size 1/1 ood_240_spatial_size_2_3_size
259
+ 241 1 0 spatial 0/1 ood_241_spatial_size_1_0_spatial
260
+ 242 1 0 size 0/1 ood_242_spatial_size_1_0_size
261
+ 243 0 1 spatial 1/1 ood_243_spatial_size_0_1_spatial
262
+ 244 0 1 size 0/1 ood_244_spatial_size_0_1_size
263
+ 245 2 3 spatial 0/1 ood_245_spatial_size_2_3_spatial
264
+ 246 2 3 size 1/1 ood_246_spatial_size_2_3_size
265
+ 247 3 2 spatial 0/1 ood_247_spatial_size_3_2_spatial
266
+ 248 3 2 size 0/1 ood_248_spatial_size_3_2_size
267
+ 249 0 1 spatial 0/1 ood_249_spatial_size_0_1_spatial
268
+ 250 0 1 size 0/1 ood_250_spatial_size_0_1_size
269
+ 251 0 1 spatial 1/1 ood_251_spatial_size_0_1_spatial
270
+ 252 0 1 size 0/1 ood_252_spatial_size_0_1_size
271
+ 253 2 3 spatial 0/1 ood_253_spatial_size_2_3_spatial
272
+ 254 2 3 size 1/1 ood_254_spatial_size_2_3_size
273
+ 255 2 3 spatial 0/1 ood_255_spatial_size_2_3_spatial
274
+ 256 2 3 size 1/1 ood_256_spatial_size_2_3_size
275
+ 257 1 0 spatial 0/1 ood_257_spatial_size_1_0_spatial
276
+ 258 1 0 size 0/1 ood_258_spatial_size_1_0_size
277
+ 259 0 1 spatial 0/1 ood_259_spatial_size_0_1_spatial
278
+ 260 0 1 size 0/1 ood_260_spatial_size_0_1_size
279
+ 261 1 0 spatial 0/1 ood_261_spatial_size_1_0_spatial
280
+ 262 1 0 size 0/1 ood_262_spatial_size_1_0_size
281
+ 263 0 1 spatial 0/1 ood_263_spatial_size_0_1_spatial
282
+ 264 0 1 size 0/1 ood_264_spatial_size_0_1_size
283
+ 265 0 1 spatial 0/1 ood_265_spatial_size_0_1_spatial
284
+ 266 0 1 size 0/1 ood_266_spatial_size_0_1_size
285
+ 267 3 2 spatial 1/1 ood_267_spatial_size_3_2_spatial
286
+ 268 3 2 size 0/1 ood_268_spatial_size_3_2_size
287
+ 269 0 1 spatial 1/1 ood_269_spatial_size_0_1_spatial
288
+ 270 0 1 size 0/1 ood_270_spatial_size_0_1_size
289
+ 271 1 0 spatial 0/1 ood_271_spatial_size_1_0_spatial
290
+ 272 1 0 size 0/1 ood_272_spatial_size_1_0_size
291
+ 273 1 0 spatial 0/1 ood_273_spatial_size_1_0_spatial
292
+ 274 1 0 size 0/1 ood_274_spatial_size_1_0_size
293
+ 275 3 2 spatial 0/1 ood_275_spatial_size_3_2_spatial
294
+ 276 3 2 size 0/1 ood_276_spatial_size_3_2_size
295
+ 277 1 0 spatial 0/1 ood_277_spatial_size_1_0_spatial
296
+ 278 1 0 size 0/1 ood_278_spatial_size_1_0_size
297
+ 279 2 3 spatial 0/1 ood_279_spatial_size_2_3_spatial
298
+ 280 2 3 size 1/1 ood_280_spatial_size_2_3_size
299
+ 281 3 2 spatial 1/1 ood_281_spatial_size_3_2_spatial
300
+ 282 3 2 size 0/1 ood_282_spatial_size_3_2_size
301
+ 283 1 0 spatial 0/1 ood_283_spatial_size_1_0_spatial
302
+ 284 1 0 size 0/1 ood_284_spatial_size_1_0_size
303
+ 285 1 0 spatial 0/1 ood_285_spatial_size_1_0_spatial
304
+ 286 1 0 size 0/1 ood_286_spatial_size_1_0_size
305
+ 287 2 3 spatial 0/1 ood_287_spatial_size_2_3_spatial
306
+ 288 2 3 size 0/1 ood_288_spatial_size_2_3_size
307
+ 289 3 2 spatial 0/1 ood_289_spatial_size_3_2_spatial
308
+ 290 3 2 size 0/1 ood_290_spatial_size_3_2_size
309
+ 291 2 3 spatial 0/1 ood_291_spatial_size_2_3_spatial
310
+ 292 2 3 size 1/1 ood_292_spatial_size_2_3_size
311
+ 293 3 2 spatial 0/1 ood_293_spatial_size_3_2_spatial
312
+ 294 3 2 size 0/1 ood_294_spatial_size_3_2_size
313
+ 295 3 2 spatial 0/1 ood_295_spatial_size_3_2_spatial
314
+ 296 3 2 size 0/1 ood_296_spatial_size_3_2_size
315
+ 297 0 1 spatial 1/1 ood_297_spatial_size_0_1_spatial
316
+ 298 0 1 size 0/1 ood_298_spatial_size_0_1_size
317
+ 299 1 0 spatial 0/1 ood_299_spatial_size_1_0_spatial
318
+ 300 1 0 size 0/1 ood_300_spatial_size_1_0_size
319
+ 301 1 0 spatial 0/1 ood_301_spatial_size_1_0_spatial
320
+ 302 1 0 size 0/1 ood_302_spatial_size_1_0_size
321
+ 303 0 1 spatial 1/1 ood_303_spatial_size_0_1_spatial
322
+ 304 0 1 size 0/1 ood_304_spatial_size_0_1_size
323
+ 305 2 3 spatial 0/1 ood_305_spatial_size_2_3_spatial
324
+ 306 2 3 size 1/1 ood_306_spatial_size_2_3_size
325
+ 307 0 1 spatial 1/1 ood_307_spatial_size_0_1_spatial
326
+ 308 0 1 size 0/1 ood_308_spatial_size_0_1_size
327
+ 309 1 0 spatial 0/1 ood_309_spatial_size_1_0_spatial
328
+ 310 1 0 size 0/1 ood_310_spatial_size_1_0_size
329
+ 311 1 0 spatial 0/1 ood_311_spatial_size_1_0_spatial
330
+ 312 1 0 size 0/1 ood_312_spatial_size_1_0_size
331
+ 313 0 1 spatial 1/1 ood_313_spatial_size_0_1_spatial
332
+ 314 0 1 size 0/1 ood_314_spatial_size_0_1_size
333
+ 315 0 1 spatial 1/1 ood_315_spatial_size_0_1_spatial
334
+ 316 0 1 size 0/1 ood_316_spatial_size_0_1_size
335
+ 317 0 1 spatial 0/1 ood_317_spatial_size_0_1_spatial
336
+ 318 0 1 size 0/1 ood_318_spatial_size_0_1_size
337
+ 319 1 0 spatial 0/1 ood_319_spatial_size_1_0_spatial
338
+ 320 1 0 size 0/1 ood_320_spatial_size_1_0_size
339
+ 321 0 1 spatial 1/1 ood_321_spatial_size_0_1_spatial
340
+ 322 0 1 size 0/1 ood_322_spatial_size_0_1_size
341
+ 323 0 1 spatial 1/1 ood_323_spatial_size_0_1_spatial
342
+ 324 0 1 size 0/1 ood_324_spatial_size_0_1_size
343
+ 325 2 3 spatial 0/1 ood_325_spatial_size_2_3_spatial
344
+ 326 2 3 size 0/1 ood_326_spatial_size_2_3_size
345
+ 327 0 1 spatial 0/1 ood_327_spatial_size_0_1_spatial
346
+ 328 0 1 size 0/1 ood_328_spatial_size_0_1_size
347
+ 329 1 0 spatial 0/1 ood_329_spatial_size_1_0_spatial
348
+ 330 1 0 size 0/1 ood_330_spatial_size_1_0_size
349
+ 331 2 3 spatial 0/1 ood_331_spatial_size_2_3_spatial
350
+ 332 2 3 size 1/1 ood_332_spatial_size_2_3_size
351
+ 333 3 2 spatial 0/1 ood_333_spatial_size_3_2_spatial
352
+ 334 3 2 size 0/1 ood_334_spatial_size_3_2_size
353
+ 335 1 0 spatial 0/1 ood_335_spatial_size_1_0_spatial
354
+ 336 1 0 size 0/1 ood_336_spatial_size_1_0_size
355
+ 337 1 0 spatial 0/1 ood_337_spatial_size_1_0_spatial
356
+ 338 1 0 size 0/1 ood_338_spatial_size_1_0_size
357
+ 339 3 2 spatial 1/1 ood_339_spatial_size_3_2_spatial
358
+ 340 3 2 size 0/1 ood_340_spatial_size_3_2_size
359
+ 341 1 0 spatial 0/1 ood_341_spatial_size_1_0_spatial
360
+ 342 1 0 size 0/1 ood_342_spatial_size_1_0_size
361
+ 343 3 2 spatial 1/1 ood_343_spatial_size_3_2_spatial
362
+ 344 3 2 size 0/1 ood_344_spatial_size_3_2_size
363
+ 345 3 2 spatial 1/1 ood_345_spatial_size_3_2_spatial
364
+ 346 3 2 size 0/1 ood_346_spatial_size_3_2_size
365
+ 347 1 0 spatial 0/1 ood_347_spatial_size_1_0_spatial
366
+ 348 1 0 size 0/1 ood_348_spatial_size_1_0_size
367
+ 349 0 1 spatial 1/1 ood_349_spatial_size_0_1_spatial
368
+ 350 0 1 size 0/1 ood_350_spatial_size_0_1_size
369
+ 351 0 1 spatial 0/1 ood_351_spatial_size_0_1_spatial
370
+ 352 0 1 size 0/1 ood_352_spatial_size_0_1_size
371
+ 353 3 2 spatial 0/1 ood_353_spatial_size_3_2_spatial
372
+ 354 3 2 size 0/1 ood_354_spatial_size_3_2_size
373
+ 355 2 3 spatial 0/1 ood_355_spatial_size_2_3_spatial
374
+ 356 2 3 size 1/1 ood_356_spatial_size_2_3_size
375
+ 357 3 2 spatial 0/1 ood_357_spatial_size_3_2_spatial
376
+ 358 3 2 size 0/1 ood_358_spatial_size_3_2_size
377
+ 359 3 2 spatial 1/1 ood_359_spatial_size_3_2_spatial
378
+ 360 3 2 size 0/1 ood_360_spatial_size_3_2_size
379
+ 361 3 2 spatial 1/1 ood_361_spatial_size_3_2_spatial
380
+ 362 3 2 size 0/1 ood_362_spatial_size_3_2_size
381
+ 363 0 1 spatial 1/1 ood_363_spatial_size_0_1_spatial
382
+ 364 0 1 size 0/1 ood_364_spatial_size_0_1_size
383
+ 365 0 1 spatial 1/1 ood_365_spatial_size_0_1_spatial
384
+ 366 0 1 size 0/1 ood_366_spatial_size_0_1_size
385
+ 367 0 1 spatial 1/1 ood_367_spatial_size_0_1_spatial
386
+ 368 0 1 size 0/1 ood_368_spatial_size_0_1_size
387
+ 369 3 2 spatial 1/1 ood_369_spatial_size_3_2_spatial
388
+ 370 3 2 size 0/1 ood_370_spatial_size_3_2_size
389
+ 371 2 3 spatial 0/1 ood_371_spatial_size_2_3_spatial
390
+ 372 2 3 size 1/1 ood_372_spatial_size_2_3_size
391
+ 373 0 1 spatial 1/1 ood_373_spatial_size_0_1_spatial
392
+ 374 0 1 size 0/1 ood_374_spatial_size_0_1_size
393
+ 375 1 0 spatial 0/1 ood_375_spatial_size_1_0_spatial
394
+ 376 1 0 size 0/1 ood_376_spatial_size_1_0_size
395
+ 377 1 0 spatial 0/1 ood_377_spatial_size_1_0_spatial
396
+ 378 1 0 size 0/1 ood_378_spatial_size_1_0_size
397
+ 379 1 0 spatial 0/1 ood_379_spatial_size_1_0_spatial
398
+ 380 1 0 size 0/1 ood_380_spatial_size_1_0_size
399
+ 381 3 2 spatial 1/1 ood_381_spatial_size_3_2_spatial
400
+ 382 3 2 size 0/1 ood_382_spatial_size_3_2_size
401
+ 383 1 0 spatial 0/1 ood_383_spatial_size_1_0_spatial
402
+ 384 1 0 size 0/1 ood_384_spatial_size_1_0_size
403
+ 385 3 2 spatial 1/1 ood_385_spatial_size_3_2_spatial
404
+ 386 3 2 size 0/1 ood_386_spatial_size_3_2_size
405
+ 387 1 0 spatial 0/1 ood_387_spatial_size_1_0_spatial
406
+ 388 1 0 size 0/1 ood_388_spatial_size_1_0_size
407
+ 389 2 3 spatial 0/1 ood_389_spatial_size_2_3_spatial
408
+ 390 2 3 size 1/1 ood_390_spatial_size_2_3_size
409
+ 391 3 2 spatial 1/1 ood_391_spatial_size_3_2_spatial
410
+ 392 3 2 size 0/1 ood_392_spatial_size_3_2_size
411
+ 393 1 0 spatial 1/1 ood_393_spatial_size_1_0_spatial
412
+ 394 1 0 size 0/1 ood_394_spatial_size_1_0_size
413
+ 395 0 1 spatial 0/1 ood_395_spatial_size_0_1_spatial
414
+ 396 0 1 size 0/1 ood_396_spatial_size_0_1_size
415
+ 397 3 2 spatial 1/1 ood_397_spatial_size_3_2_spatial
416
+ 398 3 2 size 0/1 ood_398_spatial_size_3_2_size
417
+ 399 0 1 spatial 1/1 ood_399_spatial_size_0_1_spatial
418
+ 400 0 1 size 0/1 ood_400_spatial_size_0_1_size
419
+
420
+ overall_spatial_success=61/200 (30.5%)
421
+ overall_size_success=37/200 (18.5%)
results/genie/conflict_env/genie_verb_color_ood_seed42.txt ADDED
@@ -0,0 +1,421 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OOD pairwise inference summary (Genie-Envisioner)
2
+ experiment=verb_color
3
+ seed=42
4
+ total_episodes_target=200
5
+ num_episodes_per_run=1
6
+ total_runs=400
7
+ total_episodes_actual=400
8
+ third_seed=42
9
+ weight=/workspace/groot_eval/genie_ckpts/verb_color
10
+ ltx_model=/workspace/groot_eval/LTX-Video
11
+ domain_name=conflict
12
+ sim_backend=cpu
13
+ max_episode_steps=300
14
+ replan_steps=5
15
+ num_inference_steps=5
16
+ seed_base=0
17
+
18
+ index pair_i pair_j run_type success run_name
19
+ 1 4 0 verb 0/1 ood_001_verb_color_4_0_verb
20
+ 2 4 0 color 0/1 ood_002_verb_color_4_0_color
21
+ 3 0 4 verb 0/1 ood_003_verb_color_0_4_verb
22
+ 4 0 4 color 1/1 ood_004_verb_color_0_4_color
23
+ 5 0 1 verb 0/1 ood_005_verb_color_0_1_verb
24
+ 6 0 1 color 1/1 ood_006_verb_color_0_1_color
25
+ 7 4 3 verb 0/1 ood_007_verb_color_4_3_verb
26
+ 8 4 3 color 0/1 ood_008_verb_color_4_3_color
27
+ 9 1 4 verb 0/1 ood_009_verb_color_1_4_verb
28
+ 10 1 4 color 1/1 ood_010_verb_color_1_4_color
29
+ 11 1 3 verb 1/1 ood_011_verb_color_1_3_verb
30
+ 12 1 3 color 0/1 ood_012_verb_color_1_3_color
31
+ 13 1 3 verb 0/1 ood_013_verb_color_1_3_verb
32
+ 14 1 3 color 0/1 ood_014_verb_color_1_3_color
33
+ 15 0 5 verb 1/1 ood_015_verb_color_0_5_verb
34
+ 16 0 5 color 1/1 ood_016_verb_color_0_5_color
35
+ 17 4 3 verb 0/1 ood_017_verb_color_4_3_verb
36
+ 18 4 3 color 0/1 ood_018_verb_color_4_3_color
37
+ 19 0 4 verb 0/1 ood_019_verb_color_0_4_verb
38
+ 20 0 4 color 0/1 ood_020_verb_color_0_4_color
39
+ 21 4 1 verb 0/1 ood_021_verb_color_4_1_verb
40
+ 22 4 1 color 0/1 ood_022_verb_color_4_1_color
41
+ 23 4 3 verb 1/1 ood_023_verb_color_4_3_verb
42
+ 24 4 3 color 0/1 ood_024_verb_color_4_3_color
43
+ 25 5 3 verb 0/1 ood_025_verb_color_5_3_verb
44
+ 26 5 3 color 0/1 ood_026_verb_color_5_3_color
45
+ 27 3 2 verb 0/1 ood_027_verb_color_3_2_verb
46
+ 28 3 2 color 0/1 ood_028_verb_color_3_2_color
47
+ 29 0 3 verb 0/1 ood_029_verb_color_0_3_verb
48
+ 30 0 3 color 0/1 ood_030_verb_color_0_3_color
49
+ 31 3 4 verb 0/1 ood_031_verb_color_3_4_verb
50
+ 32 3 4 color 0/1 ood_032_verb_color_3_4_color
51
+ 33 2 4 verb 0/1 ood_033_verb_color_2_4_verb
52
+ 34 2 4 color 0/1 ood_034_verb_color_2_4_color
53
+ 35 0 2 verb 0/1 ood_035_verb_color_0_2_verb
54
+ 36 0 2 color 0/1 ood_036_verb_color_0_2_color
55
+ 37 0 1 verb 0/1 ood_037_verb_color_0_1_verb
56
+ 38 0 1 color 0/1 ood_038_verb_color_0_1_color
57
+ 39 0 3 verb 0/1 ood_039_verb_color_0_3_verb
58
+ 40 0 3 color 0/1 ood_040_verb_color_0_3_color
59
+ 41 1 2 verb 1/1 ood_041_verb_color_1_2_verb
60
+ 42 1 2 color 0/1 ood_042_verb_color_1_2_color
61
+ 43 1 3 verb 0/1 ood_043_verb_color_1_3_verb
62
+ 44 1 3 color 0/1 ood_044_verb_color_1_3_color
63
+ 45 3 1 verb 0/1 ood_045_verb_color_3_1_verb
64
+ 46 3 1 color 0/1 ood_046_verb_color_3_1_color
65
+ 47 3 5 verb 0/1 ood_047_verb_color_3_5_verb
66
+ 48 3 5 color 0/1 ood_048_verb_color_3_5_color
67
+ 49 0 1 verb 0/1 ood_049_verb_color_0_1_verb
68
+ 50 0 1 color 0/1 ood_050_verb_color_0_1_color
69
+ 51 3 2 verb 0/1 ood_051_verb_color_3_2_verb
70
+ 52 3 2 color 0/1 ood_052_verb_color_3_2_color
71
+ 53 1 2 verb 0/1 ood_053_verb_color_1_2_verb
72
+ 54 1 2 color 0/1 ood_054_verb_color_1_2_color
73
+ 55 4 2 verb 0/1 ood_055_verb_color_4_2_verb
74
+ 56 4 2 color 0/1 ood_056_verb_color_4_2_color
75
+ 57 4 0 verb 0/1 ood_057_verb_color_4_0_verb
76
+ 58 4 0 color 0/1 ood_058_verb_color_4_0_color
77
+ 59 4 2 verb 0/1 ood_059_verb_color_4_2_verb
78
+ 60 4 2 color 0/1 ood_060_verb_color_4_2_color
79
+ 61 3 2 verb 0/1 ood_061_verb_color_3_2_verb
80
+ 62 3 2 color 0/1 ood_062_verb_color_3_2_color
81
+ 63 2 4 verb 0/1 ood_063_verb_color_2_4_verb
82
+ 64 2 4 color 0/1 ood_064_verb_color_2_4_color
83
+ 65 1 3 verb 0/1 ood_065_verb_color_1_3_verb
84
+ 66 1 3 color 0/1 ood_066_verb_color_1_3_color
85
+ 67 2 5 verb 0/1 ood_067_verb_color_2_5_verb
86
+ 68 2 5 color 0/1 ood_068_verb_color_2_5_color
87
+ 69 3 4 verb 0/1 ood_069_verb_color_3_4_verb
88
+ 70 3 4 color 1/1 ood_070_verb_color_3_4_color
89
+ 71 1 4 verb 0/1 ood_071_verb_color_1_4_verb
90
+ 72 1 4 color 1/1 ood_072_verb_color_1_4_color
91
+ 73 5 0 verb 0/1 ood_073_verb_color_5_0_verb
92
+ 74 5 0 color 0/1 ood_074_verb_color_5_0_color
93
+ 75 5 2 verb 0/1 ood_075_verb_color_5_2_verb
94
+ 76 5 2 color 0/1 ood_076_verb_color_5_2_color
95
+ 77 0 1 verb 1/1 ood_077_verb_color_0_1_verb
96
+ 78 0 1 color 0/1 ood_078_verb_color_0_1_color
97
+ 79 4 5 verb 1/1 ood_079_verb_color_4_5_verb
98
+ 80 4 5 color 0/1 ood_080_verb_color_4_5_color
99
+ 81 5 0 verb 0/1 ood_081_verb_color_5_0_verb
100
+ 82 5 0 color 0/1 ood_082_verb_color_5_0_color
101
+ 83 1 0 verb 0/1 ood_083_verb_color_1_0_verb
102
+ 84 1 0 color 0/1 ood_084_verb_color_1_0_color
103
+ 85 4 2 verb 1/1 ood_085_verb_color_4_2_verb
104
+ 86 4 2 color 0/1 ood_086_verb_color_4_2_color
105
+ 87 2 4 verb 0/1 ood_087_verb_color_2_4_verb
106
+ 88 2 4 color 0/1 ood_088_verb_color_2_4_color
107
+ 89 2 0 verb 0/1 ood_089_verb_color_2_0_verb
108
+ 90 2 0 color 0/1 ood_090_verb_color_2_0_color
109
+ 91 1 4 verb 0/1 ood_091_verb_color_1_4_verb
110
+ 92 1 4 color 0/1 ood_092_verb_color_1_4_color
111
+ 93 0 5 verb 0/1 ood_093_verb_color_0_5_verb
112
+ 94 0 5 color 0/1 ood_094_verb_color_0_5_color
113
+ 95 1 2 verb 0/1 ood_095_verb_color_1_2_verb
114
+ 96 1 2 color 0/1 ood_096_verb_color_1_2_color
115
+ 97 4 5 verb 0/1 ood_097_verb_color_4_5_verb
116
+ 98 4 5 color 0/1 ood_098_verb_color_4_5_color
117
+ 99 2 0 verb 0/1 ood_099_verb_color_2_0_verb
118
+ 100 2 0 color 0/1 ood_100_verb_color_2_0_color
119
+ 101 0 4 verb 0/1 ood_101_verb_color_0_4_verb
120
+ 102 0 4 color 0/1 ood_102_verb_color_0_4_color
121
+ 103 0 3 verb 0/1 ood_103_verb_color_0_3_verb
122
+ 104 0 3 color 0/1 ood_104_verb_color_0_3_color
123
+ 105 2 3 verb 0/1 ood_105_verb_color_2_3_verb
124
+ 106 2 3 color 1/1 ood_106_verb_color_2_3_color
125
+ 107 0 4 verb 0/1 ood_107_verb_color_0_4_verb
126
+ 108 0 4 color 0/1 ood_108_verb_color_0_4_color
127
+ 109 2 1 verb 0/1 ood_109_verb_color_2_1_verb
128
+ 110 2 1 color 0/1 ood_110_verb_color_2_1_color
129
+ 111 5 2 verb 0/1 ood_111_verb_color_5_2_verb
130
+ 112 5 2 color 0/1 ood_112_verb_color_5_2_color
131
+ 113 2 1 verb 0/1 ood_113_verb_color_2_1_verb
132
+ 114 2 1 color 0/1 ood_114_verb_color_2_1_color
133
+ 115 3 5 verb 0/1 ood_115_verb_color_3_5_verb
134
+ 116 3 5 color 0/1 ood_116_verb_color_3_5_color
135
+ 117 1 4 verb 0/1 ood_117_verb_color_1_4_verb
136
+ 118 1 4 color 0/1 ood_118_verb_color_1_4_color
137
+ 119 5 0 verb 0/1 ood_119_verb_color_5_0_verb
138
+ 120 5 0 color 0/1 ood_120_verb_color_5_0_color
139
+ 121 0 2 verb 0/1 ood_121_verb_color_0_2_verb
140
+ 122 0 2 color 0/1 ood_122_verb_color_0_2_color
141
+ 123 4 3 verb 1/1 ood_123_verb_color_4_3_verb
142
+ 124 4 3 color 0/1 ood_124_verb_color_4_3_color
143
+ 125 2 5 verb 0/1 ood_125_verb_color_2_5_verb
144
+ 126 2 5 color 0/1 ood_126_verb_color_2_5_color
145
+ 127 3 2 verb 0/1 ood_127_verb_color_3_2_verb
146
+ 128 3 2 color 0/1 ood_128_verb_color_3_2_color
147
+ 129 0 4 verb 0/1 ood_129_verb_color_0_4_verb
148
+ 130 0 4 color 0/1 ood_130_verb_color_0_4_color
149
+ 131 5 4 verb 0/1 ood_131_verb_color_5_4_verb
150
+ 132 5 4 color 0/1 ood_132_verb_color_5_4_color
151
+ 133 2 3 verb 0/1 ood_133_verb_color_2_3_verb
152
+ 134 2 3 color 0/1 ood_134_verb_color_2_3_color
153
+ 135 0 3 verb 0/1 ood_135_verb_color_0_3_verb
154
+ 136 0 3 color 0/1 ood_136_verb_color_0_3_color
155
+ 137 3 2 verb 0/1 ood_137_verb_color_3_2_verb
156
+ 138 3 2 color 0/1 ood_138_verb_color_3_2_color
157
+ 139 1 5 verb 1/1 ood_139_verb_color_1_5_verb
158
+ 140 1 5 color 0/1 ood_140_verb_color_1_5_color
159
+ 141 5 1 verb 0/1 ood_141_verb_color_5_1_verb
160
+ 142 5 1 color 0/1 ood_142_verb_color_5_1_color
161
+ 143 4 0 verb 0/1 ood_143_verb_color_4_0_verb
162
+ 144 4 0 color 0/1 ood_144_verb_color_4_0_color
163
+ 145 3 5 verb 0/1 ood_145_verb_color_3_5_verb
164
+ 146 3 5 color 0/1 ood_146_verb_color_3_5_color
165
+ 147 5 3 verb 0/1 ood_147_verb_color_5_3_verb
166
+ 148 5 3 color 0/1 ood_148_verb_color_5_3_color
167
+ 149 5 2 verb 0/1 ood_149_verb_color_5_2_verb
168
+ 150 5 2 color 0/1 ood_150_verb_color_5_2_color
169
+ 151 2 1 verb 0/1 ood_151_verb_color_2_1_verb
170
+ 152 2 1 color 0/1 ood_152_verb_color_2_1_color
171
+ 153 3 4 verb 0/1 ood_153_verb_color_3_4_verb
172
+ 154 3 4 color 0/1 ood_154_verb_color_3_4_color
173
+ 155 1 2 verb 0/1 ood_155_verb_color_1_2_verb
174
+ 156 1 2 color 1/1 ood_156_verb_color_1_2_color
175
+ 157 4 2 verb 1/1 ood_157_verb_color_4_2_verb
176
+ 158 4 2 color 0/1 ood_158_verb_color_4_2_color
177
+ 159 0 3 verb 0/1 ood_159_verb_color_0_3_verb
178
+ 160 0 3 color 0/1 ood_160_verb_color_0_3_color
179
+ 161 0 2 verb 0/1 ood_161_verb_color_0_2_verb
180
+ 162 0 2 color 0/1 ood_162_verb_color_0_2_color
181
+ 163 4 1 verb 0/1 ood_163_verb_color_4_1_verb
182
+ 164 4 1 color 1/1 ood_164_verb_color_4_1_color
183
+ 165 1 3 verb 1/1 ood_165_verb_color_1_3_verb
184
+ 166 1 3 color 0/1 ood_166_verb_color_1_3_color
185
+ 167 4 5 verb 0/1 ood_167_verb_color_4_5_verb
186
+ 168 4 5 color 0/1 ood_168_verb_color_4_5_color
187
+ 169 1 5 verb 1/1 ood_169_verb_color_1_5_verb
188
+ 170 1 5 color 0/1 ood_170_verb_color_1_5_color
189
+ 171 0 3 verb 0/1 ood_171_verb_color_0_3_verb
190
+ 172 0 3 color 0/1 ood_172_verb_color_0_3_color
191
+ 173 5 2 verb 0/1 ood_173_verb_color_5_2_verb
192
+ 174 5 2 color 0/1 ood_174_verb_color_5_2_color
193
+ 175 1 3 verb 0/1 ood_175_verb_color_1_3_verb
194
+ 176 1 3 color 0/1 ood_176_verb_color_1_3_color
195
+ 177 5 2 verb 0/1 ood_177_verb_color_5_2_verb
196
+ 178 5 2 color 0/1 ood_178_verb_color_5_2_color
197
+ 179 0 4 verb 0/1 ood_179_verb_color_0_4_verb
198
+ 180 0 4 color 1/1 ood_180_verb_color_0_4_color
199
+ 181 2 3 verb 0/1 ood_181_verb_color_2_3_verb
200
+ 182 2 3 color 0/1 ood_182_verb_color_2_3_color
201
+ 183 1 4 verb 0/1 ood_183_verb_color_1_4_verb
202
+ 184 1 4 color 0/1 ood_184_verb_color_1_4_color
203
+ 185 2 5 verb 0/1 ood_185_verb_color_2_5_verb
204
+ 186 2 5 color 0/1 ood_186_verb_color_2_5_color
205
+ 187 4 0 verb 0/1 ood_187_verb_color_4_0_verb
206
+ 188 4 0 color 0/1 ood_188_verb_color_4_0_color
207
+ 189 5 1 verb 0/1 ood_189_verb_color_5_1_verb
208
+ 190 5 1 color 1/1 ood_190_verb_color_5_1_color
209
+ 191 2 1 verb 0/1 ood_191_verb_color_2_1_verb
210
+ 192 2 1 color 0/1 ood_192_verb_color_2_1_color
211
+ 193 1 0 verb 0/1 ood_193_verb_color_1_0_verb
212
+ 194 1 0 color 0/1 ood_194_verb_color_1_0_color
213
+ 195 2 1 verb 0/1 ood_195_verb_color_2_1_verb
214
+ 196 2 1 color 1/1 ood_196_verb_color_2_1_color
215
+ 197 2 1 verb 0/1 ood_197_verb_color_2_1_verb
216
+ 198 2 1 color 1/1 ood_198_verb_color_2_1_color
217
+ 199 1 2 verb 1/1 ood_199_verb_color_1_2_verb
218
+ 200 1 2 color 0/1 ood_200_verb_color_1_2_color
219
+ 201 4 1 verb 0/1 ood_201_verb_color_4_1_verb
220
+ 202 4 1 color 1/1 ood_202_verb_color_4_1_color
221
+ 203 1 4 verb 1/1 ood_203_verb_color_1_4_verb
222
+ 204 1 4 color 0/1 ood_204_verb_color_1_4_color
223
+ 205 4 2 verb 0/1 ood_205_verb_color_4_2_verb
224
+ 206 4 2 color 0/1 ood_206_verb_color_4_2_color
225
+ 207 5 4 verb 0/1 ood_207_verb_color_5_4_verb
226
+ 208 5 4 color 0/1 ood_208_verb_color_5_4_color
227
+ 209 4 1 verb 0/1 ood_209_verb_color_4_1_verb
228
+ 210 4 1 color 0/1 ood_210_verb_color_4_1_color
229
+ 211 4 0 verb 1/1 ood_211_verb_color_4_0_verb
230
+ 212 4 0 color 0/1 ood_212_verb_color_4_0_color
231
+ 213 0 3 verb 0/1 ood_213_verb_color_0_3_verb
232
+ 214 0 3 color 0/1 ood_214_verb_color_0_3_color
233
+ 215 3 5 verb 0/1 ood_215_verb_color_3_5_verb
234
+ 216 3 5 color 1/1 ood_216_verb_color_3_5_color
235
+ 217 4 0 verb 0/1 ood_217_verb_color_4_0_verb
236
+ 218 4 0 color 0/1 ood_218_verb_color_4_0_color
237
+ 219 1 0 verb 0/1 ood_219_verb_color_1_0_verb
238
+ 220 1 0 color 1/1 ood_220_verb_color_1_0_color
239
+ 221 3 2 verb 0/1 ood_221_verb_color_3_2_verb
240
+ 222 3 2 color 0/1 ood_222_verb_color_3_2_color
241
+ 223 4 3 verb 0/1 ood_223_verb_color_4_3_verb
242
+ 224 4 3 color 0/1 ood_224_verb_color_4_3_color
243
+ 225 1 3 verb 0/1 ood_225_verb_color_1_3_verb
244
+ 226 1 3 color 0/1 ood_226_verb_color_1_3_color
245
+ 227 1 0 verb 0/1 ood_227_verb_color_1_0_verb
246
+ 228 1 0 color 0/1 ood_228_verb_color_1_0_color
247
+ 229 2 5 verb 0/1 ood_229_verb_color_2_5_verb
248
+ 230 2 5 color 0/1 ood_230_verb_color_2_5_color
249
+ 231 2 3 verb 0/1 ood_231_verb_color_2_3_verb
250
+ 232 2 3 color 0/1 ood_232_verb_color_2_3_color
251
+ 233 1 4 verb 0/1 ood_233_verb_color_1_4_verb
252
+ 234 1 4 color 0/1 ood_234_verb_color_1_4_color
253
+ 235 5 4 verb 1/1 ood_235_verb_color_5_4_verb
254
+ 236 5 4 color 0/1 ood_236_verb_color_5_4_color
255
+ 237 4 0 verb 0/1 ood_237_verb_color_4_0_verb
256
+ 238 4 0 color 0/1 ood_238_verb_color_4_0_color
257
+ 239 4 2 verb 1/1 ood_239_verb_color_4_2_verb
258
+ 240 4 2 color 0/1 ood_240_verb_color_4_2_color
259
+ 241 3 2 verb 0/1 ood_241_verb_color_3_2_verb
260
+ 242 3 2 color 0/1 ood_242_verb_color_3_2_color
261
+ 243 1 3 verb 1/1 ood_243_verb_color_1_3_verb
262
+ 244 1 3 color 0/1 ood_244_verb_color_1_3_color
263
+ 245 4 1 verb 0/1 ood_245_verb_color_4_1_verb
264
+ 246 4 1 color 0/1 ood_246_verb_color_4_1_color
265
+ 247 2 0 verb 0/1 ood_247_verb_color_2_0_verb
266
+ 248 2 0 color 0/1 ood_248_verb_color_2_0_color
267
+ 249 5 1 verb 1/1 ood_249_verb_color_5_1_verb
268
+ 250 5 1 color 0/1 ood_250_verb_color_5_1_color
269
+ 251 4 5 verb 0/1 ood_251_verb_color_4_5_verb
270
+ 252 4 5 color 0/1 ood_252_verb_color_4_5_color
271
+ 253 4 5 verb 0/1 ood_253_verb_color_4_5_verb
272
+ 254 4 5 color 0/1 ood_254_verb_color_4_5_color
273
+ 255 0 2 verb 0/1 ood_255_verb_color_0_2_verb
274
+ 256 0 2 color 0/1 ood_256_verb_color_0_2_color
275
+ 257 1 3 verb 1/1 ood_257_verb_color_1_3_verb
276
+ 258 1 3 color 0/1 ood_258_verb_color_1_3_color
277
+ 259 5 1 verb 0/1 ood_259_verb_color_5_1_verb
278
+ 260 5 1 color 0/1 ood_260_verb_color_5_1_color
279
+ 261 0 2 verb 0/1 ood_261_verb_color_0_2_verb
280
+ 262 0 2 color 0/1 ood_262_verb_color_0_2_color
281
+ 263 5 0 verb 0/1 ood_263_verb_color_5_0_verb
282
+ 264 5 0 color 0/1 ood_264_verb_color_5_0_color
283
+ 265 2 0 verb 0/1 ood_265_verb_color_2_0_verb
284
+ 266 2 0 color 0/1 ood_266_verb_color_2_0_color
285
+ 267 2 3 verb 0/1 ood_267_verb_color_2_3_verb
286
+ 268 2 3 color 0/1 ood_268_verb_color_2_3_color
287
+ 269 1 4 verb 1/1 ood_269_verb_color_1_4_verb
288
+ 270 1 4 color 0/1 ood_270_verb_color_1_4_color
289
+ 271 0 3 verb 0/1 ood_271_verb_color_0_3_verb
290
+ 272 0 3 color 0/1 ood_272_verb_color_0_3_color
291
+ 273 1 2 verb 0/1 ood_273_verb_color_1_2_verb
292
+ 274 1 2 color 0/1 ood_274_verb_color_1_2_color
293
+ 275 5 4 verb 0/1 ood_275_verb_color_5_4_verb
294
+ 276 5 4 color 0/1 ood_276_verb_color_5_4_color
295
+ 277 3 4 verb 0/1 ood_277_verb_color_3_4_verb
296
+ 278 3 4 color 1/1 ood_278_verb_color_3_4_color
297
+ 279 5 3 verb 0/1 ood_279_verb_color_5_3_verb
298
+ 280 5 3 color 0/1 ood_280_verb_color_5_3_color
299
+ 281 4 2 verb 1/1 ood_281_verb_color_4_2_verb
300
+ 282 4 2 color 0/1 ood_282_verb_color_4_2_color
301
+ 283 2 0 verb 0/1 ood_283_verb_color_2_0_verb
302
+ 284 2 0 color 0/1 ood_284_verb_color_2_0_color
303
+ 285 1 2 verb 0/1 ood_285_verb_color_1_2_verb
304
+ 286 1 2 color 0/1 ood_286_verb_color_1_2_color
305
+ 287 4 0 verb 0/1 ood_287_verb_color_4_0_verb
306
+ 288 4 0 color 0/1 ood_288_verb_color_4_0_color
307
+ 289 3 0 verb 0/1 ood_289_verb_color_3_0_verb
308
+ 290 3 0 color 0/1 ood_290_verb_color_3_0_color
309
+ 291 2 3 verb 0/1 ood_291_verb_color_2_3_verb
310
+ 292 2 3 color 0/1 ood_292_verb_color_2_3_color
311
+ 293 5 3 verb 0/1 ood_293_verb_color_5_3_verb
312
+ 294 5 3 color 0/1 ood_294_verb_color_5_3_color
313
+ 295 5 4 verb 0/1 ood_295_verb_color_5_4_verb
314
+ 296 5 4 color 0/1 ood_296_verb_color_5_4_color
315
+ 297 4 0 verb 0/1 ood_297_verb_color_4_0_verb
316
+ 298 4 0 color 0/1 ood_298_verb_color_4_0_color
317
+ 299 2 5 verb 0/1 ood_299_verb_color_2_5_verb
318
+ 300 2 5 color 1/1 ood_300_verb_color_2_5_color
319
+ 301 0 5 verb 0/1 ood_301_verb_color_0_5_verb
320
+ 302 0 5 color 0/1 ood_302_verb_color_0_5_color
321
+ 303 1 4 verb 0/1 ood_303_verb_color_1_4_verb
322
+ 304 1 4 color 0/1 ood_304_verb_color_1_4_color
323
+ 305 0 5 verb 0/1 ood_305_verb_color_0_5_verb
324
+ 306 0 5 color 1/1 ood_306_verb_color_0_5_color
325
+ 307 1 3 verb 0/1 ood_307_verb_color_1_3_verb
326
+ 308 1 3 color 0/1 ood_308_verb_color_1_3_color
327
+ 309 4 3 verb 0/1 ood_309_verb_color_4_3_verb
328
+ 310 4 3 color 0/1 ood_310_verb_color_4_3_color
329
+ 311 3 2 verb 0/1 ood_311_verb_color_3_2_verb
330
+ 312 3 2 color 0/1 ood_312_verb_color_3_2_color
331
+ 313 3 2 verb 0/1 ood_313_verb_color_3_2_verb
332
+ 314 3 2 color 0/1 ood_314_verb_color_3_2_color
333
+ 315 1 4 verb 0/1 ood_315_verb_color_1_4_verb
334
+ 316 1 4 color 0/1 ood_316_verb_color_1_4_color
335
+ 317 4 3 verb 0/1 ood_317_verb_color_4_3_verb
336
+ 318 4 3 color 0/1 ood_318_verb_color_4_3_color
337
+ 319 3 4 verb 0/1 ood_319_verb_color_3_4_verb
338
+ 320 3 4 color 0/1 ood_320_verb_color_3_4_color
339
+ 321 2 4 verb 0/1 ood_321_verb_color_2_4_verb
340
+ 322 2 4 color 0/1 ood_322_verb_color_2_4_color
341
+ 323 5 3 verb 0/1 ood_323_verb_color_5_3_verb
342
+ 324 5 3 color 0/1 ood_324_verb_color_5_3_color
343
+ 325 3 4 verb 0/1 ood_325_verb_color_3_4_verb
344
+ 326 3 4 color 0/1 ood_326_verb_color_3_4_color
345
+ 327 2 3 verb 0/1 ood_327_verb_color_2_3_verb
346
+ 328 2 3 color 0/1 ood_328_verb_color_2_3_color
347
+ 329 2 1 verb 0/1 ood_329_verb_color_2_1_verb
348
+ 330 2 1 color 0/1 ood_330_verb_color_2_1_color
349
+ 331 1 3 verb 0/1 ood_331_verb_color_1_3_verb
350
+ 332 1 3 color 0/1 ood_332_verb_color_1_3_color
351
+ 333 0 5 verb 0/1 ood_333_verb_color_0_5_verb
352
+ 334 0 5 color 0/1 ood_334_verb_color_0_5_color
353
+ 335 3 1 verb 0/1 ood_335_verb_color_3_1_verb
354
+ 336 3 1 color 0/1 ood_336_verb_color_3_1_color
355
+ 337 3 0 verb 0/1 ood_337_verb_color_3_0_verb
356
+ 338 3 0 color 1/1 ood_338_verb_color_3_0_color
357
+ 339 0 3 verb 1/1 ood_339_verb_color_0_3_verb
358
+ 340 0 3 color 0/1 ood_340_verb_color_0_3_color
359
+ 341 4 5 verb 0/1 ood_341_verb_color_4_5_verb
360
+ 342 4 5 color 0/1 ood_342_verb_color_4_5_color
361
+ 343 0 2 verb 0/1 ood_343_verb_color_0_2_verb
362
+ 344 0 2 color 0/1 ood_344_verb_color_0_2_color
363
+ 345 5 2 verb 0/1 ood_345_verb_color_5_2_verb
364
+ 346 5 2 color 0/1 ood_346_verb_color_5_2_color
365
+ 347 0 4 verb 0/1 ood_347_verb_color_0_4_verb
366
+ 348 0 4 color 0/1 ood_348_verb_color_0_4_color
367
+ 349 0 5 verb 0/1 ood_349_verb_color_0_5_verb
368
+ 350 0 5 color 0/1 ood_350_verb_color_0_5_color
369
+ 351 4 0 verb 0/1 ood_351_verb_color_4_0_verb
370
+ 352 4 0 color 0/1 ood_352_verb_color_4_0_color
371
+ 353 1 0 verb 1/1 ood_353_verb_color_1_0_verb
372
+ 354 1 0 color 0/1 ood_354_verb_color_1_0_color
373
+ 355 5 0 verb 0/1 ood_355_verb_color_5_0_verb
374
+ 356 5 0 color 0/1 ood_356_verb_color_5_0_color
375
+ 357 4 1 verb 0/1 ood_357_verb_color_4_1_verb
376
+ 358 4 1 color 0/1 ood_358_verb_color_4_1_color
377
+ 359 2 4 verb 0/1 ood_359_verb_color_2_4_verb
378
+ 360 2 4 color 0/1 ood_360_verb_color_2_4_color
379
+ 361 3 5 verb 0/1 ood_361_verb_color_3_5_verb
380
+ 362 3 5 color 1/1 ood_362_verb_color_3_5_color
381
+ 363 0 3 verb 0/1 ood_363_verb_color_0_3_verb
382
+ 364 0 3 color 0/1 ood_364_verb_color_0_3_color
383
+ 365 2 3 verb 1/1 ood_365_verb_color_2_3_verb
384
+ 366 2 3 color 0/1 ood_366_verb_color_2_3_color
385
+ 367 2 3 verb 0/1 ood_367_verb_color_2_3_verb
386
+ 368 2 3 color 0/1 ood_368_verb_color_2_3_color
387
+ 369 3 5 verb 0/1 ood_369_verb_color_3_5_verb
388
+ 370 3 5 color 0/1 ood_370_verb_color_3_5_color
389
+ 371 2 5 verb 0/1 ood_371_verb_color_2_5_verb
390
+ 372 2 5 color 0/1 ood_372_verb_color_2_5_color
391
+ 373 3 1 verb 0/1 ood_373_verb_color_3_1_verb
392
+ 374 3 1 color 0/1 ood_374_verb_color_3_1_color
393
+ 375 1 4 verb 1/1 ood_375_verb_color_1_4_verb
394
+ 376 1 4 color 0/1 ood_376_verb_color_1_4_color
395
+ 377 3 2 verb 0/1 ood_377_verb_color_3_2_verb
396
+ 378 3 2 color 0/1 ood_378_verb_color_3_2_color
397
+ 379 5 2 verb 0/1 ood_379_verb_color_5_2_verb
398
+ 380 5 2 color 0/1 ood_380_verb_color_5_2_color
399
+ 381 0 1 verb 0/1 ood_381_verb_color_0_1_verb
400
+ 382 0 1 color 1/1 ood_382_verb_color_0_1_color
401
+ 383 4 1 verb 1/1 ood_383_verb_color_4_1_verb
402
+ 384 4 1 color 0/1 ood_384_verb_color_4_1_color
403
+ 385 4 3 verb 0/1 ood_385_verb_color_4_3_verb
404
+ 386 4 3 color 0/1 ood_386_verb_color_4_3_color
405
+ 387 0 4 verb 0/1 ood_387_verb_color_0_4_verb
406
+ 388 0 4 color 0/1 ood_388_verb_color_0_4_color
407
+ 389 4 1 verb 0/1 ood_389_verb_color_4_1_verb
408
+ 390 4 1 color 0/1 ood_390_verb_color_4_1_color
409
+ 391 5 3 verb 0/1 ood_391_verb_color_5_3_verb
410
+ 392 5 3 color 0/1 ood_392_verb_color_5_3_color
411
+ 393 3 2 verb 0/1 ood_393_verb_color_3_2_verb
412
+ 394 3 2 color 0/1 ood_394_verb_color_3_2_color
413
+ 395 4 5 verb 0/1 ood_395_verb_color_4_5_verb
414
+ 396 4 5 color 0/1 ood_396_verb_color_4_5_color
415
+ 397 1 4 verb 0/1 ood_397_verb_color_1_4_verb
416
+ 398 1 4 color 0/1 ood_398_verb_color_1_4_color
417
+ 399 4 5 verb 0/1 ood_399_verb_color_4_5_verb
418
+ 400 4 5 color 1/1 ood_400_verb_color_4_5_color
419
+
420
+ overall_verb_success=27/200 (13.5%)
421
+ overall_color_success=23/200 (11.5%)
results/genie/conflict_env/genie_verb_object_ood_seed42.txt ADDED
@@ -0,0 +1,420 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OOD pairwise inference summary (Genie-Envisioner)
2
+ experiment=verb_object
3
+ seed=42
4
+ total_episodes_target=200
5
+ num_episodes_per_run=1
6
+ total_runs=400
7
+ total_episodes_actual=400
8
+ third_seed=42
9
+ weight=/workspace/groot_eval/genie_ckpts/verb_object
10
+ ltx_model=/workspace/groot_eval/LTX-Video
11
+ domain_name=conflict
12
+ sim_backend=cpu
13
+ max_episode_steps=300
14
+ replan_steps=5
15
+ num_inference_steps=5
16
+ seed_base=0
17
+
18
+ index pair_i pair_j run_type success run_name
19
+ 1 4 0 verb 0/1 ood_001_verb_object_4_0_verb
20
+ 2 4 0 shape 0/1 ood_002_verb_object_4_0_shape
21
+ 3 0 4 verb 0/1 ood_003_verb_object_0_4_verb
22
+ 4 0 4 shape 0/1 ood_004_verb_object_0_4_shape
23
+ 5 0 1 verb 0/1 ood_005_verb_object_0_1_verb
24
+ 6 0 1 shape 0/1 ood_006_verb_object_0_1_shape
25
+ 7 4 3 verb 0/1 ood_007_verb_object_4_3_verb
26
+ 8 4 3 shape 0/1 ood_008_verb_object_4_3_shape
27
+ 9 1 4 verb 0/1 ood_009_verb_object_1_4_verb
28
+ 10 1 4 shape 0/1 ood_010_verb_object_1_4_shape
29
+ 11 1 3 verb 0/1 ood_011_verb_object_1_3_verb
30
+ 12 1 3 shape 0/1 ood_012_verb_object_1_3_shape
31
+ 13 1 3 verb 0/1 ood_013_verb_object_1_3_verb
32
+ 14 1 3 shape 0/1 ood_014_verb_object_1_3_shape
33
+ 15 0 5 verb 0/1 ood_015_verb_object_0_5_verb
34
+ 16 0 5 shape 0/1 ood_016_verb_object_0_5_shape
35
+ 17 4 3 verb 0/1 ood_017_verb_object_4_3_verb
36
+ 18 4 3 shape 0/1 ood_018_verb_object_4_3_shape
37
+ 19 0 4 verb 0/1 ood_019_verb_object_0_4_verb
38
+ 20 0 4 shape 0/1 ood_020_verb_object_0_4_shape
39
+ 21 4 1 verb 0/1 ood_021_verb_object_4_1_verb
40
+ 22 4 1 shape 1/1 ood_022_verb_object_4_1_shape
41
+ 23 4 3 verb 0/1 ood_023_verb_object_4_3_verb
42
+ 24 4 3 shape 0/1 ood_024_verb_object_4_3_shape
43
+ 25 5 3 verb 0/1 ood_025_verb_object_5_3_verb
44
+ 26 5 3 shape 0/1 ood_026_verb_object_5_3_shape
45
+ 27 3 2 verb 0/1 ood_027_verb_object_3_2_verb
46
+ 28 3 2 shape 0/1 ood_028_verb_object_3_2_shape
47
+ 29 0 3 verb 0/1 ood_029_verb_object_0_3_verb
48
+ 30 0 3 shape 0/1 ood_030_verb_object_0_3_shape
49
+ 31 3 4 verb 0/1 ood_031_verb_object_3_4_verb
50
+ 32 3 4 shape 1/1 ood_032_verb_object_3_4_shape
51
+ 33 2 4 verb 0/1 ood_033_verb_object_2_4_verb
52
+ 34 2 4 shape 0/1 ood_034_verb_object_2_4_shape
53
+ 35 0 2 verb 0/1 ood_035_verb_object_0_2_verb
54
+ 36 0 2 shape 0/1 ood_036_verb_object_0_2_shape
55
+ 37 0 1 verb 0/1 ood_037_verb_object_0_1_verb
56
+ 38 0 1 shape 1/1 ood_038_verb_object_0_1_shape
57
+ 39 0 3 verb 0/1 ood_039_verb_object_0_3_verb
58
+ 40 0 3 shape 0/1 ood_040_verb_object_0_3_shape
59
+ 41 1 2 verb 0/1 ood_041_verb_object_1_2_verb
60
+ 42 1 2 shape 0/1 ood_042_verb_object_1_2_shape
61
+ 43 1 3 verb 0/1 ood_043_verb_object_1_3_verb
62
+ 44 1 3 shape 0/1 ood_044_verb_object_1_3_shape
63
+ 45 3 1 verb 0/1 ood_045_verb_object_3_1_verb
64
+ 46 3 1 shape 0/1 ood_046_verb_object_3_1_shape
65
+ 47 3 5 verb 0/1 ood_047_verb_object_3_5_verb
66
+ 48 3 5 shape 0/1 ood_048_verb_object_3_5_shape
67
+ 49 0 1 verb 0/1 ood_049_verb_object_0_1_verb
68
+ 50 0 1 shape 0/1 ood_050_verb_object_0_1_shape
69
+ 51 3 2 verb 0/1 ood_051_verb_object_3_2_verb
70
+ 52 3 2 shape 0/1 ood_052_verb_object_3_2_shape
71
+ 53 1 2 verb 0/1 ood_053_verb_object_1_2_verb
72
+ 54 1 2 shape 0/1 ood_054_verb_object_1_2_shape
73
+ 55 4 2 verb 0/1 ood_055_verb_object_4_2_verb
74
+ 56 4 2 shape 0/1 ood_056_verb_object_4_2_shape
75
+ 57 4 0 verb 0/1 ood_057_verb_object_4_0_verb
76
+ 58 4 0 shape 0/1 ood_058_verb_object_4_0_shape
77
+ 59 4 2 verb 0/1 ood_059_verb_object_4_2_verb
78
+ 60 4 2 shape 0/1 ood_060_verb_object_4_2_shape
79
+ 61 3 2 verb 0/1 ood_061_verb_object_3_2_verb
80
+ 62 3 2 shape 0/1 ood_062_verb_object_3_2_shape
81
+ 63 2 4 verb 0/1 ood_063_verb_object_2_4_verb
82
+ 64 2 4 shape 0/1 ood_064_verb_object_2_4_shape
83
+ 65 1 3 verb 0/1 ood_065_verb_object_1_3_verb
84
+ 66 1 3 shape 0/1 ood_066_verb_object_1_3_shape
85
+ 67 2 5 verb 0/1 ood_067_verb_object_2_5_verb
86
+ 68 2 5 shape 0/1 ood_068_verb_object_2_5_shape
87
+ 69 3 4 verb 0/1 ood_069_verb_object_3_4_verb
88
+ 70 3 4 shape 0/1 ood_070_verb_object_3_4_shape
89
+ 71 1 4 verb 1/1 ood_071_verb_object_1_4_verb
90
+ 72 1 4 shape 1/1 ood_072_verb_object_1_4_shape
91
+ 73 5 0 verb 0/1 ood_073_verb_object_5_0_verb
92
+ 74 5 0 shape 0/1 ood_074_verb_object_5_0_shape
93
+ 75 5 2 verb 0/1 ood_075_verb_object_5_2_verb
94
+ 76 5 2 shape 0/1 ood_076_verb_object_5_2_shape
95
+ 77 0 1 verb 0/1 ood_077_verb_object_0_1_verb
96
+ 78 0 1 shape 0/1 ood_078_verb_object_0_1_shape
97
+ 79 4 5 verb 0/1 ood_079_verb_object_4_5_verb
98
+ 80 4 5 shape 0/1 ood_080_verb_object_4_5_shape
99
+ 81 5 0 verb 0/1 ood_081_verb_object_5_0_verb
100
+ 82 5 0 shape 0/1 ood_082_verb_object_5_0_shape
101
+ 83 1 0 verb 0/1 ood_083_verb_object_1_0_verb
102
+ 84 1 0 shape 0/1 ood_084_verb_object_1_0_shape
103
+ 85 4 2 verb 0/1 ood_085_verb_object_4_2_verb
104
+ 86 4 2 shape 0/1 ood_086_verb_object_4_2_shape
105
+ 87 2 4 verb 0/1 ood_087_verb_object_2_4_verb
106
+ 88 2 4 shape 0/1 ood_088_verb_object_2_4_shape
107
+ 89 2 0 verb 0/1 ood_089_verb_object_2_0_verb
108
+ 90 2 0 shape 0/1 ood_090_verb_object_2_0_shape
109
+ 91 1 4 verb 0/1 ood_091_verb_object_1_4_verb
110
+ 92 1 4 shape 0/1 ood_092_verb_object_1_4_shape
111
+ 93 0 5 verb 0/1 ood_093_verb_object_0_5_verb
112
+ 94 0 5 shape 0/1 ood_094_verb_object_0_5_shape
113
+ 95 1 2 verb 0/1 ood_095_verb_object_1_2_verb
114
+ 96 1 2 shape 0/1 ood_096_verb_object_1_2_shape
115
+ 97 4 5 verb 0/1 ood_097_verb_object_4_5_verb
116
+ 98 4 5 shape 0/1 ood_098_verb_object_4_5_shape
117
+ 99 2 0 verb 0/1 ood_099_verb_object_2_0_verb
118
+ 100 2 0 shape 1/1 ood_100_verb_object_2_0_shape
119
+ 101 0 4 verb 0/1 ood_101_verb_object_0_4_verb
120
+ 102 0 4 shape 0/1 ood_102_verb_object_0_4_shape
121
+ 103 0 3 verb 0/1 ood_103_verb_object_0_3_verb
122
+ 104 0 3 shape 0/1 ood_104_verb_object_0_3_shape
123
+ 105 2 3 verb 0/1 ood_105_verb_object_2_3_verb
124
+ 106 2 3 shape 0/1 ood_106_verb_object_2_3_shape
125
+ 107 0 4 verb 0/1 ood_107_verb_object_0_4_verb
126
+ 108 0 4 shape 0/1 ood_108_verb_object_0_4_shape
127
+ 109 2 1 verb 0/1 ood_109_verb_object_2_1_verb
128
+ 110 2 1 shape 0/1 ood_110_verb_object_2_1_shape
129
+ 111 5 2 verb 0/1 ood_111_verb_object_5_2_verb
130
+ 112 5 2 shape 0/1 ood_112_verb_object_5_2_shape
131
+ 113 2 1 verb 0/1 ood_113_verb_object_2_1_verb
132
+ 114 2 1 shape 0/1 ood_114_verb_object_2_1_shape
133
+ 115 3 5 verb 0/1 ood_115_verb_object_3_5_verb
134
+ 116 3 5 shape 0/1 ood_116_verb_object_3_5_shape
135
+ 117 1 4 verb 0/1 ood_117_verb_object_1_4_verb
136
+ 118 1 4 shape 0/1 ood_118_verb_object_1_4_shape
137
+ 119 5 0 verb 0/1 ood_119_verb_object_5_0_verb
138
+ 120 5 0 shape 0/1 ood_120_verb_object_5_0_shape
139
+ 121 0 2 verb 0/1 ood_121_verb_object_0_2_verb
140
+ 122 0 2 shape 0/1 ood_122_verb_object_0_2_shape
141
+ 123 4 3 verb 0/1 ood_123_verb_object_4_3_verb
142
+ 124 4 3 shape 0/1 ood_124_verb_object_4_3_shape
143
+ 125 2 5 verb 0/1 ood_125_verb_object_2_5_verb
144
+ 126 2 5 shape 0/1 ood_126_verb_object_2_5_shape
145
+ 127 3 2 verb 0/1 ood_127_verb_object_3_2_verb
146
+ 128 3 2 shape 0/1 ood_128_verb_object_3_2_shape
147
+ 129 0 4 verb 0/1 ood_129_verb_object_0_4_verb
148
+ 130 0 4 shape 0/1 ood_130_verb_object_0_4_shape
149
+ 131 5 4 verb 0/1 ood_131_verb_object_5_4_verb
150
+ 132 5 4 shape 0/1 ood_132_verb_object_5_4_shape
151
+ 133 2 3 verb 0/1 ood_133_verb_object_2_3_verb
152
+ 134 2 3 shape 0/1 ood_134_verb_object_2_3_shape
153
+ 135 0 3 verb 0/1 ood_135_verb_object_0_3_verb
154
+ 136 0 3 shape 0/1 ood_136_verb_object_0_3_shape
155
+ 137 3 2 verb 0/1 ood_137_verb_object_3_2_verb
156
+ 138 3 2 shape 0/1 ood_138_verb_object_3_2_shape
157
+ 139 1 5 verb 0/1 ood_139_verb_object_1_5_verb
158
+ 140 1 5 shape 0/1 ood_140_verb_object_1_5_shape
159
+ 141 5 1 verb 0/1 ood_141_verb_object_5_1_verb
160
+ 142 5 1 shape 0/1 ood_142_verb_object_5_1_shape
161
+ 143 4 0 verb 0/1 ood_143_verb_object_4_0_verb
162
+ 144 4 0 shape 0/1 ood_144_verb_object_4_0_shape
163
+ 145 3 5 verb 0/1 ood_145_verb_object_3_5_verb
164
+ 146 3 5 shape 0/1 ood_146_verb_object_3_5_shape
165
+ 147 5 3 verb 0/1 ood_147_verb_object_5_3_verb
166
+ 148 5 3 shape 0/1 ood_148_verb_object_5_3_shape
167
+ 149 5 2 verb 0/1 ood_149_verb_object_5_2_verb
168
+ 150 5 2 shape 0/1 ood_150_verb_object_5_2_shape
169
+ 151 2 1 verb 0/1 ood_151_verb_object_2_1_verb
170
+ 152 2 1 shape 0/1 ood_152_verb_object_2_1_shape
171
+ 153 3 4 verb 0/1 ood_153_verb_object_3_4_verb
172
+ 154 3 4 shape 0/1 ood_154_verb_object_3_4_shape
173
+ 155 1 2 verb 1/1 ood_155_verb_object_1_2_verb
174
+ 156 1 2 shape 0/1 ood_156_verb_object_1_2_shape
175
+ 157 4 2 verb 0/1 ood_157_verb_object_4_2_verb
176
+ 158 4 2 shape 0/1 ood_158_verb_object_4_2_shape
177
+ 159 0 3 verb 0/1 ood_159_verb_object_0_3_verb
178
+ 160 0 3 shape 0/1 ood_160_verb_object_0_3_shape
179
+ 161 0 2 verb 0/1 ood_161_verb_object_0_2_verb
180
+ 162 0 2 shape 0/1 ood_162_verb_object_0_2_shape
181
+ 163 4 1 verb 0/1 ood_163_verb_object_4_1_verb
182
+ 164 4 1 shape 0/1 ood_164_verb_object_4_1_shape
183
+ 165 1 3 verb 1/1 ood_165_verb_object_1_3_verb
184
+ 166 1 3 shape 0/1 ood_166_verb_object_1_3_shape
185
+ 167 4 5 verb 0/1 ood_167_verb_object_4_5_verb
186
+ 168 4 5 shape 0/1 ood_168_verb_object_4_5_shape
187
+ 169 1 5 verb 0/1 ood_169_verb_object_1_5_verb
188
+ 170 1 5 shape 0/1 ood_170_verb_object_1_5_shape
189
+ 171 0 3 verb 0/1 ood_171_verb_object_0_3_verb
190
+ 172 0 3 shape 0/1 ood_172_verb_object_0_3_shape
191
+ 173 5 2 verb 0/1 ood_173_verb_object_5_2_verb
192
+ 174 5 2 shape 0/1 ood_174_verb_object_5_2_shape
193
+ 175 1 3 verb 0/1 ood_175_verb_object_1_3_verb
194
+ 176 1 3 shape 0/1 ood_176_verb_object_1_3_shape
195
+ 177 5 2 verb 0/1 ood_177_verb_object_5_2_verb
196
+ 178 5 2 shape 0/1 ood_178_verb_object_5_2_shape
197
+ 179 0 4 verb 0/1 ood_179_verb_object_0_4_verb
198
+ 180 0 4 shape 0/1 ood_180_verb_object_0_4_shape
199
+ 181 2 3 verb 0/1 ood_181_verb_object_2_3_verb
200
+ 182 2 3 shape 0/1 ood_182_verb_object_2_3_shape
201
+ 183 1 4 verb 0/1 ood_183_verb_object_1_4_verb
202
+ 184 1 4 shape 0/1 ood_184_verb_object_1_4_shape
203
+ 185 2 5 verb 0/1 ood_185_verb_object_2_5_verb
204
+ 186 2 5 shape 0/1 ood_186_verb_object_2_5_shape
205
+ 187 4 0 verb 0/1 ood_187_verb_object_4_0_verb
206
+ 188 4 0 shape 0/1 ood_188_verb_object_4_0_shape
207
+ 189 5 1 verb 0/1 ood_189_verb_object_5_1_verb
208
+ 190 5 1 shape 0/1 ood_190_verb_object_5_1_shape
209
+ 191 2 1 verb 0/1 ood_191_verb_object_2_1_verb
210
+ 192 2 1 shape 0/1 ood_192_verb_object_2_1_shape
211
+ 193 1 0 verb 0/1 ood_193_verb_object_1_0_verb
212
+ 194 1 0 shape 0/1 ood_194_verb_object_1_0_shape
213
+ 195 2 1 verb 0/1 ood_195_verb_object_2_1_verb
214
+ 196 2 1 shape 0/1 ood_196_verb_object_2_1_shape
215
+ 197 2 1 verb 0/1 ood_197_verb_object_2_1_verb
216
+ 198 2 1 shape 0/1 ood_198_verb_object_2_1_shape
217
+ 199 1 2 verb 0/1 ood_199_verb_object_1_2_verb
218
+ 200 1 2 shape 0/1 ood_200_verb_object_1_2_shape
219
+ 201 4 1 verb 0/1 ood_201_verb_object_4_1_verb
220
+ 202 4 1 shape 1/1 ood_202_verb_object_4_1_shape
221
+ 203 1 4 verb 0/1 ood_203_verb_object_1_4_verb
222
+ 204 1 4 shape 0/1 ood_204_verb_object_1_4_shape
223
+ 205 4 2 verb 0/1 ood_205_verb_object_4_2_verb
224
+ 206 4 2 shape 0/1 ood_206_verb_object_4_2_shape
225
+ 207 5 4 verb 0/1 ood_207_verb_object_5_4_verb
226
+ 208 5 4 shape 0/1 ood_208_verb_object_5_4_shape
227
+ 209 4 1 verb 0/1 ood_209_verb_object_4_1_verb
228
+ 210 4 1 shape 0/1 ood_210_verb_object_4_1_shape
229
+ 211 4 0 verb 0/1 ood_211_verb_object_4_0_verb
230
+ 212 4 0 shape 0/1 ood_212_verb_object_4_0_shape
231
+ 213 0 3 verb 0/1 ood_213_verb_object_0_3_verb
232
+ 214 0 3 shape 0/1 ood_214_verb_object_0_3_shape
233
+ 215 3 5 verb 0/1 ood_215_verb_object_3_5_verb
234
+ 216 3 5 shape 0/1 ood_216_verb_object_3_5_shape
235
+ 217 4 0 verb 0/1 ood_217_verb_object_4_0_verb
236
+ 218 4 0 shape 0/1 ood_218_verb_object_4_0_shape
237
+ 219 1 0 verb 0/1 ood_219_verb_object_1_0_verb
238
+ 220 1 0 shape 0/1 ood_220_verb_object_1_0_shape
239
+ 221 3 2 verb 0/1 ood_221_verb_object_3_2_verb
240
+ 222 3 2 shape 0/1 ood_222_verb_object_3_2_shape
241
+ 223 4 3 verb 0/1 ood_223_verb_object_4_3_verb
242
+ 224 4 3 shape 0/1 ood_224_verb_object_4_3_shape
243
+ 225 1 3 verb 0/1 ood_225_verb_object_1_3_verb
244
+ 226 1 3 shape 0/1 ood_226_verb_object_1_3_shape
245
+ 227 1 0 verb 1/1 ood_227_verb_object_1_0_verb
246
+ 228 1 0 shape 0/1 ood_228_verb_object_1_0_shape
247
+ 229 2 5 verb 0/1 ood_229_verb_object_2_5_verb
248
+ 230 2 5 shape 0/1 ood_230_verb_object_2_5_shape
249
+ 231 2 3 verb 0/1 ood_231_verb_object_2_3_verb
250
+ 232 2 3 shape 0/1 ood_232_verb_object_2_3_shape
251
+ 233 1 4 verb 0/1 ood_233_verb_object_1_4_verb
252
+ 234 1 4 shape 0/1 ood_234_verb_object_1_4_shape
253
+ 235 5 4 verb 0/1 ood_235_verb_object_5_4_verb
254
+ 236 5 4 shape 0/1 ood_236_verb_object_5_4_shape
255
+ 237 4 0 verb 0/1 ood_237_verb_object_4_0_verb
256
+ 238 4 0 shape 0/1 ood_238_verb_object_4_0_shape
257
+ 239 4 2 verb 0/1 ood_239_verb_object_4_2_verb
258
+ 240 4 2 shape 0/1 ood_240_verb_object_4_2_shape
259
+ 241 3 2 verb 0/1 ood_241_verb_object_3_2_verb
260
+ 242 3 2 shape 0/1 ood_242_verb_object_3_2_shape
261
+ 243 1 3 verb 0/1 ood_243_verb_object_1_3_verb
262
+ 244 1 3 shape 0/1 ood_244_verb_object_1_3_shape
263
+ 245 4 1 verb 0/1 ood_245_verb_object_4_1_verb
264
+ 246 4 1 shape 0/1 ood_246_verb_object_4_1_shape
265
+ 247 2 0 verb 0/1 ood_247_verb_object_2_0_verb
266
+ 248 2 0 shape 0/1 ood_248_verb_object_2_0_shape
267
+ 249 5 1 verb 0/1 ood_249_verb_object_5_1_verb
268
+ 250 5 1 shape 0/1 ood_250_verb_object_5_1_shape
269
+ 251 4 5 verb 0/1 ood_251_verb_object_4_5_verb
270
+ 252 4 5 shape 0/1 ood_252_verb_object_4_5_shape
271
+ 253 4 5 verb 0/1 ood_253_verb_object_4_5_verb
272
+ 254 4 5 shape 0/1 ood_254_verb_object_4_5_shape
273
+ 255 0 2 verb 0/1 ood_255_verb_object_0_2_verb
274
+ 256 0 2 shape 0/1 ood_256_verb_object_0_2_shape
275
+ 257 1 3 verb 0/1 ood_257_verb_object_1_3_verb
276
+ 258 1 3 shape 0/1 ood_258_verb_object_1_3_shape
277
+ 259 5 1 verb 0/1 ood_259_verb_object_5_1_verb
278
+ 260 5 1 shape 0/1 ood_260_verb_object_5_1_shape
279
+ 261 0 2 verb 0/1 ood_261_verb_object_0_2_verb
280
+ 262 0 2 shape 0/1 ood_262_verb_object_0_2_shape
281
+ 263 5 0 verb 0/1 ood_263_verb_object_5_0_verb
282
+ 264 5 0 shape 0/1 ood_264_verb_object_5_0_shape
283
+ 265 2 0 verb 0/1 ood_265_verb_object_2_0_verb
284
+ 266 2 0 shape 0/1 ood_266_verb_object_2_0_shape
285
+ 267 2 3 verb 0/1 ood_267_verb_object_2_3_verb
286
+ 268 2 3 shape 0/1 ood_268_verb_object_2_3_shape
287
+ 269 1 4 verb 0/1 ood_269_verb_object_1_4_verb
288
+ 270 1 4 shape 0/1 ood_270_verb_object_1_4_shape
289
+ 271 0 3 verb 0/1 ood_271_verb_object_0_3_verb
290
+ 272 0 3 shape 0/1 ood_272_verb_object_0_3_shape
291
+ 273 1 2 verb 0/1 ood_273_verb_object_1_2_verb
292
+ 274 1 2 shape 0/1 ood_274_verb_object_1_2_shape
293
+ 275 5 4 verb 0/1 ood_275_verb_object_5_4_verb
294
+ 276 5 4 shape 0/1 ood_276_verb_object_5_4_shape
295
+ 278 3 4 shape 0/1 ood_278_verb_object_3_4_shape
296
+ 279 5 3 verb 0/1 ood_279_verb_object_5_3_verb
297
+ 280 5 3 shape 0/1 ood_280_verb_object_5_3_shape
298
+ 281 4 2 verb 0/1 ood_281_verb_object_4_2_verb
299
+ 282 4 2 shape 0/1 ood_282_verb_object_4_2_shape
300
+ 283 2 0 verb 0/1 ood_283_verb_object_2_0_verb
301
+ 284 2 0 shape 0/1 ood_284_verb_object_2_0_shape
302
+ 285 1 2 verb 0/1 ood_285_verb_object_1_2_verb
303
+ 286 1 2 shape 0/1 ood_286_verb_object_1_2_shape
304
+ 287 4 0 verb 0/1 ood_287_verb_object_4_0_verb
305
+ 288 4 0 shape 0/1 ood_288_verb_object_4_0_shape
306
+ 289 3 0 verb 0/1 ood_289_verb_object_3_0_verb
307
+ 290 3 0 shape 0/1 ood_290_verb_object_3_0_shape
308
+ 291 2 3 verb 0/1 ood_291_verb_object_2_3_verb
309
+ 292 2 3 shape 0/1 ood_292_verb_object_2_3_shape
310
+ 293 5 3 verb 0/1 ood_293_verb_object_5_3_verb
311
+ 294 5 3 shape 0/1 ood_294_verb_object_5_3_shape
312
+ 295 5 4 verb 0/1 ood_295_verb_object_5_4_verb
313
+ 296 5 4 shape 0/1 ood_296_verb_object_5_4_shape
314
+ 297 4 0 verb 0/1 ood_297_verb_object_4_0_verb
315
+ 298 4 0 shape 0/1 ood_298_verb_object_4_0_shape
316
+ 299 2 5 verb 0/1 ood_299_verb_object_2_5_verb
317
+ 300 2 5 shape 0/1 ood_300_verb_object_2_5_shape
318
+ 301 0 5 verb 0/1 ood_301_verb_object_0_5_verb
319
+ 302 0 5 shape 0/1 ood_302_verb_object_0_5_shape
320
+ 303 1 4 verb 0/1 ood_303_verb_object_1_4_verb
321
+ 304 1 4 shape 0/1 ood_304_verb_object_1_4_shape
322
+ 305 0 5 verb 0/1 ood_305_verb_object_0_5_verb
323
+ 306 0 5 shape 0/1 ood_306_verb_object_0_5_shape
324
+ 307 1 3 verb 0/1 ood_307_verb_object_1_3_verb
325
+ 308 1 3 shape 0/1 ood_308_verb_object_1_3_shape
326
+ 309 4 3 verb 0/1 ood_309_verb_object_4_3_verb
327
+ 310 4 3 shape 0/1 ood_310_verb_object_4_3_shape
328
+ 311 3 2 verb 0/1 ood_311_verb_object_3_2_verb
329
+ 312 3 2 shape 0/1 ood_312_verb_object_3_2_shape
330
+ 313 3 2 verb 0/1 ood_313_verb_object_3_2_verb
331
+ 314 3 2 shape 0/1 ood_314_verb_object_3_2_shape
332
+ 315 1 4 verb 0/1 ood_315_verb_object_1_4_verb
333
+ 316 1 4 shape 0/1 ood_316_verb_object_1_4_shape
334
+ 317 4 3 verb 0/1 ood_317_verb_object_4_3_verb
335
+ 318 4 3 shape 0/1 ood_318_verb_object_4_3_shape
336
+ 319 3 4 verb 0/1 ood_319_verb_object_3_4_verb
337
+ 320 3 4 shape 0/1 ood_320_verb_object_3_4_shape
338
+ 321 2 4 verb 0/1 ood_321_verb_object_2_4_verb
339
+ 322 2 4 shape 0/1 ood_322_verb_object_2_4_shape
340
+ 323 5 3 verb 0/1 ood_323_verb_object_5_3_verb
341
+ 324 5 3 shape 0/1 ood_324_verb_object_5_3_shape
342
+ 325 3 4 verb 0/1 ood_325_verb_object_3_4_verb
343
+ 326 3 4 shape 0/1 ood_326_verb_object_3_4_shape
344
+ 327 2 3 verb 0/1 ood_327_verb_object_2_3_verb
345
+ 328 2 3 shape 0/1 ood_328_verb_object_2_3_shape
346
+ 329 2 1 verb 0/1 ood_329_verb_object_2_1_verb
347
+ 330 2 1 shape 0/1 ood_330_verb_object_2_1_shape
348
+ 331 1 3 verb 1/1 ood_331_verb_object_1_3_verb
349
+ 332 1 3 shape 0/1 ood_332_verb_object_1_3_shape
350
+ 333 0 5 verb 0/1 ood_333_verb_object_0_5_verb
351
+ 334 0 5 shape 0/1 ood_334_verb_object_0_5_shape
352
+ 335 3 1 verb 0/1 ood_335_verb_object_3_1_verb
353
+ 336 3 1 shape 0/1 ood_336_verb_object_3_1_shape
354
+ 337 3 0 verb 0/1 ood_337_verb_object_3_0_verb
355
+ 338 3 0 shape 0/1 ood_338_verb_object_3_0_shape
356
+ 339 0 3 verb 0/1 ood_339_verb_object_0_3_verb
357
+ 340 0 3 shape 0/1 ood_340_verb_object_0_3_shape
358
+ 341 4 5 verb 0/1 ood_341_verb_object_4_5_verb
359
+ 342 4 5 shape 0/1 ood_342_verb_object_4_5_shape
360
+ 343 0 2 verb 0/1 ood_343_verb_object_0_2_verb
361
+ 344 0 2 shape 0/1 ood_344_verb_object_0_2_shape
362
+ 345 5 2 verb 0/1 ood_345_verb_object_5_2_verb
363
+ 346 5 2 shape 0/1 ood_346_verb_object_5_2_shape
364
+ 347 0 4 verb 0/1 ood_347_verb_object_0_4_verb
365
+ 348 0 4 shape 0/1 ood_348_verb_object_0_4_shape
366
+ 349 0 5 verb 0/1 ood_349_verb_object_0_5_verb
367
+ 350 0 5 shape 0/1 ood_350_verb_object_0_5_shape
368
+ 351 4 0 verb 0/1 ood_351_verb_object_4_0_verb
369
+ 352 4 0 shape 0/1 ood_352_verb_object_4_0_shape
370
+ 353 1 0 verb 0/1 ood_353_verb_object_1_0_verb
371
+ 354 1 0 shape 0/1 ood_354_verb_object_1_0_shape
372
+ 355 5 0 verb 0/1 ood_355_verb_object_5_0_verb
373
+ 356 5 0 shape 0/1 ood_356_verb_object_5_0_shape
374
+ 357 4 1 verb 1/1 ood_357_verb_object_4_1_verb
375
+ 358 4 1 shape 1/1 ood_358_verb_object_4_1_shape
376
+ 359 2 4 verb 0/1 ood_359_verb_object_2_4_verb
377
+ 360 2 4 shape 0/1 ood_360_verb_object_2_4_shape
378
+ 361 3 5 verb 0/1 ood_361_verb_object_3_5_verb
379
+ 362 3 5 shape 0/1 ood_362_verb_object_3_5_shape
380
+ 363 0 3 verb 0/1 ood_363_verb_object_0_3_verb
381
+ 364 0 3 shape 0/1 ood_364_verb_object_0_3_shape
382
+ 365 2 3 verb 0/1 ood_365_verb_object_2_3_verb
383
+ 366 2 3 shape 0/1 ood_366_verb_object_2_3_shape
384
+ 367 2 3 verb 0/1 ood_367_verb_object_2_3_verb
385
+ 368 2 3 shape 0/1 ood_368_verb_object_2_3_shape
386
+ 369 3 5 verb 0/1 ood_369_verb_object_3_5_verb
387
+ 370 3 5 shape 0/1 ood_370_verb_object_3_5_shape
388
+ 371 2 5 verb 0/1 ood_371_verb_object_2_5_verb
389
+ 372 2 5 shape 0/1 ood_372_verb_object_2_5_shape
390
+ 373 3 1 verb 0/1 ood_373_verb_object_3_1_verb
391
+ 374 3 1 shape 0/1 ood_374_verb_object_3_1_shape
392
+ 375 1 4 verb 0/1 ood_375_verb_object_1_4_verb
393
+ 376 1 4 shape 0/1 ood_376_verb_object_1_4_shape
394
+ 377 3 2 verb 0/1 ood_377_verb_object_3_2_verb
395
+ 378 3 2 shape 0/1 ood_378_verb_object_3_2_shape
396
+ 379 5 2 verb 0/1 ood_379_verb_object_5_2_verb
397
+ 380 5 2 shape 0/1 ood_380_verb_object_5_2_shape
398
+ 381 0 1 verb 0/1 ood_381_verb_object_0_1_verb
399
+ 382 0 1 shape 0/1 ood_382_verb_object_0_1_shape
400
+ 383 4 1 verb 0/1 ood_383_verb_object_4_1_verb
401
+ 384 4 1 shape 0/1 ood_384_verb_object_4_1_shape
402
+ 385 4 3 verb 0/1 ood_385_verb_object_4_3_verb
403
+ 386 4 3 shape 0/1 ood_386_verb_object_4_3_shape
404
+ 387 0 4 verb 0/1 ood_387_verb_object_0_4_verb
405
+ 388 0 4 shape 0/1 ood_388_verb_object_0_4_shape
406
+ 389 4 1 verb 0/1 ood_389_verb_object_4_1_verb
407
+ 390 4 1 shape 0/1 ood_390_verb_object_4_1_shape
408
+ 391 5 3 verb 0/1 ood_391_verb_object_5_3_verb
409
+ 392 5 3 shape 0/1 ood_392_verb_object_5_3_shape
410
+ 393 3 2 verb 0/1 ood_393_verb_object_3_2_verb
411
+ 394 3 2 shape 0/1 ood_394_verb_object_3_2_shape
412
+ 395 4 5 verb 0/1 ood_395_verb_object_4_5_verb
413
+ 396 4 5 shape 0/1 ood_396_verb_object_4_5_shape
414
+ 397 1 4 verb 1/1 ood_397_verb_object_1_4_verb
415
+ 398 1 4 shape 1/1 ood_398_verb_object_1_4_shape
416
+ 399 4 5 verb 0/1 ood_399_verb_object_4_5_verb
417
+ 400 4 5 shape 0/1 ood_400_verb_object_4_5_shape
418
+
419
+ overall_verb_success=3/61 (4.9%)
420
+ overall_shape_success=2/62 (3.2%)
results/genie/conflict_env/genie_verb_size_ood_seed42.txt ADDED
@@ -0,0 +1,421 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OOD pairwise inference summary (Genie-Envisioner)
2
+ experiment=verb_size
3
+ seed=42
4
+ total_episodes_target=200
5
+ num_episodes_per_run=1
6
+ total_runs=400
7
+ total_episodes_actual=400
8
+ third_seed=42
9
+ weight=/workspace/groot_eval/genie_ckpts/verb_size
10
+ ltx_model=/workspace/groot_eval/LTX-Video
11
+ domain_name=conflict
12
+ sim_backend=cpu
13
+ max_episode_steps=300
14
+ replan_steps=5
15
+ num_inference_steps=5
16
+ seed_base=0
17
+
18
+ index pair_i pair_j run_type success run_name
19
+ 1 5 4 verb 0/1 ood_001_verb_size_5_4_verb
20
+ 2 5 4 size 0/1 ood_002_verb_size_5_4_size
21
+ 3 0 1 verb 0/1 ood_003_verb_size_0_1_verb
22
+ 4 0 1 size 0/1 ood_004_verb_size_0_1_size
23
+ 5 0 1 verb 0/1 ood_005_verb_size_0_1_verb
24
+ 6 0 1 size 0/1 ood_006_verb_size_0_1_size
25
+ 7 5 4 verb 0/1 ood_007_verb_size_5_4_verb
26
+ 8 5 4 size 0/1 ood_008_verb_size_5_4_size
27
+ 9 2 3 verb 0/1 ood_009_verb_size_2_3_verb
28
+ 10 2 3 size 0/1 ood_010_verb_size_2_3_size
29
+ 11 1 0 verb 0/1 ood_011_verb_size_1_0_verb
30
+ 12 1 0 size 0/1 ood_012_verb_size_1_0_size
31
+ 13 1 0 verb 0/1 ood_013_verb_size_1_0_verb
32
+ 14 1 0 size 0/1 ood_014_verb_size_1_0_size
33
+ 15 1 0 verb 0/1 ood_015_verb_size_1_0_verb
34
+ 16 1 0 size 0/1 ood_016_verb_size_1_0_size
35
+ 17 5 4 verb 0/1 ood_017_verb_size_5_4_verb
36
+ 18 5 4 size 0/1 ood_018_verb_size_5_4_size
37
+ 19 0 1 verb 0/1 ood_019_verb_size_0_1_verb
38
+ 20 0 1 size 0/1 ood_020_verb_size_0_1_size
39
+ 21 5 4 verb 0/1 ood_021_verb_size_5_4_verb
40
+ 22 5 4 size 1/1 ood_022_verb_size_5_4_size
41
+ 23 5 4 verb 0/1 ood_023_verb_size_5_4_verb
42
+ 24 5 4 size 0/1 ood_024_verb_size_5_4_size
43
+ 25 4 5 verb 1/1 ood_025_verb_size_4_5_verb
44
+ 26 4 5 size 1/1 ood_026_verb_size_4_5_size
45
+ 27 0 1 verb 0/1 ood_027_verb_size_0_1_verb
46
+ 28 0 1 size 1/1 ood_028_verb_size_0_1_size
47
+ 29 4 5 verb 1/1 ood_029_verb_size_4_5_verb
48
+ 30 4 5 size 0/1 ood_030_verb_size_4_5_size
49
+ 31 3 2 verb 0/1 ood_031_verb_size_3_2_verb
50
+ 32 3 2 size 0/1 ood_032_verb_size_3_2_size
51
+ 33 0 1 verb 0/1 ood_033_verb_size_0_1_verb
52
+ 34 0 1 size 1/1 ood_034_verb_size_0_1_size
53
+ 35 0 1 verb 0/1 ood_035_verb_size_0_1_verb
54
+ 36 0 1 size 1/1 ood_036_verb_size_0_1_size
55
+ 37 0 1 verb 0/1 ood_037_verb_size_0_1_verb
56
+ 38 0 1 size 1/1 ood_038_verb_size_0_1_size
57
+ 39 1 0 verb 0/1 ood_039_verb_size_1_0_verb
58
+ 40 1 0 size 0/1 ood_040_verb_size_1_0_size
59
+ 41 1 0 verb 0/1 ood_041_verb_size_1_0_verb
60
+ 42 1 0 size 0/1 ood_042_verb_size_1_0_size
61
+ 43 4 5 verb 0/1 ood_043_verb_size_4_5_verb
62
+ 44 4 5 size 1/1 ood_044_verb_size_4_5_size
63
+ 45 4 5 verb 1/1 ood_045_verb_size_4_5_verb
64
+ 46 4 5 size 0/1 ood_046_verb_size_4_5_size
65
+ 47 0 1 verb 0/1 ood_047_verb_size_0_1_verb
66
+ 48 0 1 size 0/1 ood_048_verb_size_0_1_size
67
+ 49 4 5 verb 0/1 ood_049_verb_size_4_5_verb
68
+ 50 4 5 size 0/1 ood_050_verb_size_4_5_size
69
+ 51 1 0 verb 0/1 ood_051_verb_size_1_0_verb
70
+ 52 1 0 size 0/1 ood_052_verb_size_1_0_size
71
+ 53 5 4 verb 0/1 ood_053_verb_size_5_4_verb
72
+ 54 5 4 size 1/1 ood_054_verb_size_5_4_size
73
+ 55 5 4 verb 0/1 ood_055_verb_size_5_4_verb
74
+ 56 5 4 size 0/1 ood_056_verb_size_5_4_size
75
+ 57 5 4 verb 0/1 ood_057_verb_size_5_4_verb
76
+ 58 5 4 size 0/1 ood_058_verb_size_5_4_size
77
+ 59 4 5 verb 1/1 ood_059_verb_size_4_5_verb
78
+ 60 4 5 size 0/1 ood_060_verb_size_4_5_size
79
+ 61 3 2 verb 0/1 ood_061_verb_size_3_2_verb
80
+ 62 3 2 size 0/1 ood_062_verb_size_3_2_size
81
+ 63 1 0 verb 1/1 ood_063_verb_size_1_0_verb
82
+ 64 1 0 size 0/1 ood_064_verb_size_1_0_size
83
+ 65 3 2 verb 0/1 ood_065_verb_size_3_2_verb
84
+ 66 3 2 size 0/1 ood_066_verb_size_3_2_size
85
+ 67 4 5 verb 0/1 ood_067_verb_size_4_5_verb
86
+ 68 4 5 size 0/1 ood_068_verb_size_4_5_size
87
+ 69 2 3 verb 0/1 ood_069_verb_size_2_3_verb
88
+ 70 2 3 size 0/1 ood_070_verb_size_2_3_size
89
+ 71 0 1 verb 0/1 ood_071_verb_size_0_1_verb
90
+ 72 0 1 size 0/1 ood_072_verb_size_0_1_size
91
+ 73 1 0 verb 1/1 ood_073_verb_size_1_0_verb
92
+ 74 1 0 size 0/1 ood_074_verb_size_1_0_size
93
+ 75 5 4 verb 0/1 ood_075_verb_size_5_4_verb
94
+ 76 5 4 size 1/1 ood_076_verb_size_5_4_size
95
+ 77 3 2 verb 0/1 ood_077_verb_size_3_2_verb
96
+ 78 3 2 size 0/1 ood_078_verb_size_3_2_size
97
+ 79 2 3 verb 0/1 ood_079_verb_size_2_3_verb
98
+ 80 2 3 size 0/1 ood_080_verb_size_2_3_size
99
+ 81 2 3 verb 0/1 ood_081_verb_size_2_3_verb
100
+ 82 2 3 size 0/1 ood_082_verb_size_2_3_size
101
+ 83 1 0 verb 1/1 ood_083_verb_size_1_0_verb
102
+ 84 1 0 size 0/1 ood_084_verb_size_1_0_size
103
+ 85 1 0 verb 1/1 ood_085_verb_size_1_0_verb
104
+ 86 1 0 size 0/1 ood_086_verb_size_1_0_size
105
+ 87 2 3 verb 0/1 ood_087_verb_size_2_3_verb
106
+ 88 2 3 size 0/1 ood_088_verb_size_2_3_size
107
+ 89 0 1 verb 0/1 ood_089_verb_size_0_1_verb
108
+ 90 0 1 size 1/1 ood_090_verb_size_0_1_size
109
+ 91 0 1 verb 0/1 ood_091_verb_size_0_1_verb
110
+ 92 0 1 size 1/1 ood_092_verb_size_0_1_size
111
+ 93 3 2 verb 0/1 ood_093_verb_size_3_2_verb
112
+ 94 3 2 size 0/1 ood_094_verb_size_3_2_size
113
+ 95 0 1 verb 0/1 ood_095_verb_size_0_1_verb
114
+ 96 0 1 size 0/1 ood_096_verb_size_0_1_size
115
+ 97 2 3 verb 0/1 ood_097_verb_size_2_3_verb
116
+ 98 2 3 size 0/1 ood_098_verb_size_2_3_size
117
+ 99 2 3 verb 0/1 ood_099_verb_size_2_3_verb
118
+ 100 2 3 size 1/1 ood_100_verb_size_2_3_size
119
+ 101 4 5 verb 0/1 ood_101_verb_size_4_5_verb
120
+ 102 4 5 size 1/1 ood_102_verb_size_4_5_size
121
+ 103 2 3 verb 0/1 ood_103_verb_size_2_3_verb
122
+ 104 2 3 size 0/1 ood_104_verb_size_2_3_size
123
+ 105 0 1 verb 0/1 ood_105_verb_size_0_1_verb
124
+ 106 0 1 size 1/1 ood_106_verb_size_0_1_size
125
+ 107 5 4 verb 0/1 ood_107_verb_size_5_4_verb
126
+ 108 5 4 size 1/1 ood_108_verb_size_5_4_size
127
+ 109 3 2 verb 0/1 ood_109_verb_size_3_2_verb
128
+ 110 3 2 size 1/1 ood_110_verb_size_3_2_size
129
+ 111 4 5 verb 1/1 ood_111_verb_size_4_5_verb
130
+ 112 4 5 size 0/1 ood_112_verb_size_4_5_size
131
+ 113 0 1 verb 0/1 ood_113_verb_size_0_1_verb
132
+ 114 0 1 size 1/1 ood_114_verb_size_0_1_size
133
+ 115 3 2 verb 0/1 ood_115_verb_size_3_2_verb
134
+ 116 3 2 size 0/1 ood_116_verb_size_3_2_size
135
+ 117 0 1 verb 0/1 ood_117_verb_size_0_1_verb
136
+ 118 0 1 size 0/1 ood_118_verb_size_0_1_size
137
+ 119 4 5 verb 1/1 ood_119_verb_size_4_5_verb
138
+ 120 4 5 size 1/1 ood_120_verb_size_4_5_size
139
+ 121 2 3 verb 0/1 ood_121_verb_size_2_3_verb
140
+ 122 2 3 size 0/1 ood_122_verb_size_2_3_size
141
+ 123 5 4 verb 0/1 ood_123_verb_size_5_4_verb
142
+ 124 5 4 size 0/1 ood_124_verb_size_5_4_size
143
+ 125 4 5 verb 0/1 ood_125_verb_size_4_5_verb
144
+ 126 4 5 size 0/1 ood_126_verb_size_4_5_size
145
+ 127 2 3 verb 0/1 ood_127_verb_size_2_3_verb
146
+ 128 2 3 size 0/1 ood_128_verb_size_2_3_size
147
+ 129 4 5 verb 0/1 ood_129_verb_size_4_5_verb
148
+ 130 4 5 size 0/1 ood_130_verb_size_4_5_size
149
+ 131 1 0 verb 1/1 ood_131_verb_size_1_0_verb
150
+ 132 1 0 size 0/1 ood_132_verb_size_1_0_size
151
+ 133 5 4 verb 1/1 ood_133_verb_size_5_4_verb
152
+ 134 5 4 size 0/1 ood_134_verb_size_5_4_size
153
+ 135 0 1 verb 0/1 ood_135_verb_size_0_1_verb
154
+ 136 0 1 size 1/1 ood_136_verb_size_0_1_size
155
+ 137 0 1 verb 0/1 ood_137_verb_size_0_1_verb
156
+ 138 0 1 size 1/1 ood_138_verb_size_0_1_size
157
+ 139 5 4 verb 0/1 ood_139_verb_size_5_4_verb
158
+ 140 5 4 size 1/1 ood_140_verb_size_5_4_size
159
+ 141 1 0 verb 1/1 ood_141_verb_size_1_0_verb
160
+ 142 1 0 size 0/1 ood_142_verb_size_1_0_size
161
+ 143 2 3 verb 0/1 ood_143_verb_size_2_3_verb
162
+ 144 2 3 size 0/1 ood_144_verb_size_2_3_size
163
+ 145 0 1 verb 0/1 ood_145_verb_size_0_1_verb
164
+ 146 0 1 size 1/1 ood_146_verb_size_0_1_size
165
+ 147 1 0 verb 1/1 ood_147_verb_size_1_0_verb
166
+ 148 1 0 size 0/1 ood_148_verb_size_1_0_size
167
+ 149 0 1 verb 0/1 ood_149_verb_size_0_1_verb
168
+ 150 0 1 size 1/1 ood_150_verb_size_0_1_size
169
+ 151 3 2 verb 0/1 ood_151_verb_size_3_2_verb
170
+ 152 3 2 size 0/1 ood_152_verb_size_3_2_size
171
+ 153 2 3 verb 0/1 ood_153_verb_size_2_3_verb
172
+ 154 2 3 size 0/1 ood_154_verb_size_2_3_size
173
+ 155 3 2 verb 0/1 ood_155_verb_size_3_2_verb
174
+ 156 3 2 size 0/1 ood_156_verb_size_3_2_size
175
+ 157 5 4 verb 1/1 ood_157_verb_size_5_4_verb
176
+ 158 5 4 size 1/1 ood_158_verb_size_5_4_size
177
+ 159 2 3 verb 0/1 ood_159_verb_size_2_3_verb
178
+ 160 2 3 size 0/1 ood_160_verb_size_2_3_size
179
+ 161 1 0 verb 1/1 ood_161_verb_size_1_0_verb
180
+ 162 1 0 size 0/1 ood_162_verb_size_1_0_size
181
+ 163 2 3 verb 0/1 ood_163_verb_size_2_3_verb
182
+ 164 2 3 size 0/1 ood_164_verb_size_2_3_size
183
+ 165 2 3 verb 0/1 ood_165_verb_size_2_3_verb
184
+ 166 2 3 size 0/1 ood_166_verb_size_2_3_size
185
+ 167 1 0 verb 0/1 ood_167_verb_size_1_0_verb
186
+ 168 1 0 size 0/1 ood_168_verb_size_1_0_size
187
+ 169 5 4 verb 0/1 ood_169_verb_size_5_4_verb
188
+ 170 5 4 size 1/1 ood_170_verb_size_5_4_size
189
+ 171 2 3 verb 0/1 ood_171_verb_size_2_3_verb
190
+ 172 2 3 size 0/1 ood_172_verb_size_2_3_size
191
+ 173 5 4 verb 0/1 ood_173_verb_size_5_4_verb
192
+ 174 5 4 size 0/1 ood_174_verb_size_5_4_size
193
+ 175 5 4 verb 0/1 ood_175_verb_size_5_4_verb
194
+ 176 5 4 size 0/1 ood_176_verb_size_5_4_size
195
+ 177 5 4 verb 1/1 ood_177_verb_size_5_4_verb
196
+ 178 5 4 size 0/1 ood_178_verb_size_5_4_size
197
+ 179 0 1 verb 0/1 ood_179_verb_size_0_1_verb
198
+ 180 0 1 size 1/1 ood_180_verb_size_0_1_size
199
+ 181 4 5 verb 1/1 ood_181_verb_size_4_5_verb
200
+ 182 4 5 size 0/1 ood_182_verb_size_4_5_size
201
+ 183 5 4 verb 0/1 ood_183_verb_size_5_4_verb
202
+ 184 5 4 size 0/1 ood_184_verb_size_5_4_size
203
+ 185 1 0 verb 0/1 ood_185_verb_size_1_0_verb
204
+ 186 1 0 size 0/1 ood_186_verb_size_1_0_size
205
+ 187 4 5 verb 1/1 ood_187_verb_size_4_5_verb
206
+ 188 4 5 size 0/1 ood_188_verb_size_4_5_size
207
+ 189 5 4 verb 0/1 ood_189_verb_size_5_4_verb
208
+ 190 5 4 size 0/1 ood_190_verb_size_5_4_size
209
+ 191 1 0 verb 0/1 ood_191_verb_size_1_0_verb
210
+ 192 1 0 size 0/1 ood_192_verb_size_1_0_size
211
+ 193 1 0 verb 0/1 ood_193_verb_size_1_0_verb
212
+ 194 1 0 size 0/1 ood_194_verb_size_1_0_size
213
+ 195 3 2 verb 0/1 ood_195_verb_size_3_2_verb
214
+ 196 3 2 size 0/1 ood_196_verb_size_3_2_size
215
+ 197 3 2 verb 0/1 ood_197_verb_size_3_2_verb
216
+ 198 3 2 size 0/1 ood_198_verb_size_3_2_size
217
+ 199 2 3 verb 0/1 ood_199_verb_size_2_3_verb
218
+ 200 2 3 size 0/1 ood_200_verb_size_2_3_size
219
+ 201 5 4 verb 0/1 ood_201_verb_size_5_4_verb
220
+ 202 5 4 size 1/1 ood_202_verb_size_5_4_size
221
+ 203 5 4 verb 1/1 ood_203_verb_size_5_4_verb
222
+ 204 5 4 size 0/1 ood_204_verb_size_5_4_size
223
+ 205 4 5 verb 1/1 ood_205_verb_size_4_5_verb
224
+ 206 4 5 size 1/1 ood_206_verb_size_4_5_size
225
+ 207 1 0 verb 1/1 ood_207_verb_size_1_0_verb
226
+ 208 1 0 size 0/1 ood_208_verb_size_1_0_size
227
+ 209 5 4 verb 0/1 ood_209_verb_size_5_4_verb
228
+ 210 5 4 size 0/1 ood_210_verb_size_5_4_size
229
+ 211 2 3 verb 0/1 ood_211_verb_size_2_3_verb
230
+ 212 2 3 size 0/1 ood_212_verb_size_2_3_size
231
+ 213 0 1 verb 0/1 ood_213_verb_size_0_1_verb
232
+ 214 0 1 size 1/1 ood_214_verb_size_0_1_size
233
+ 215 1 0 verb 0/1 ood_215_verb_size_1_0_verb
234
+ 216 1 0 size 0/1 ood_216_verb_size_1_0_size
235
+ 217 0 1 verb 0/1 ood_217_verb_size_0_1_verb
236
+ 218 0 1 size 0/1 ood_218_verb_size_0_1_size
237
+ 219 2 3 verb 0/1 ood_219_verb_size_2_3_verb
238
+ 220 2 3 size 0/1 ood_220_verb_size_2_3_size
239
+ 221 3 2 verb 0/1 ood_221_verb_size_3_2_verb
240
+ 222 3 2 size 0/1 ood_222_verb_size_3_2_size
241
+ 223 2 3 verb 0/1 ood_223_verb_size_2_3_verb
242
+ 224 2 3 size 0/1 ood_224_verb_size_2_3_size
243
+ 225 0 1 verb 0/1 ood_225_verb_size_0_1_verb
244
+ 226 0 1 size 1/1 ood_226_verb_size_0_1_size
245
+ 227 1 0 verb 1/1 ood_227_verb_size_1_0_verb
246
+ 228 1 0 size 0/1 ood_228_verb_size_1_0_size
247
+ 229 4 5 verb 0/1 ood_229_verb_size_4_5_verb
248
+ 230 4 5 size 0/1 ood_230_verb_size_4_5_size
249
+ 231 5 4 verb 0/1 ood_231_verb_size_5_4_verb
250
+ 232 5 4 size 0/1 ood_232_verb_size_5_4_size
251
+ 233 2 3 verb 0/1 ood_233_verb_size_2_3_verb
252
+ 234 2 3 size 0/1 ood_234_verb_size_2_3_size
253
+ 235 1 0 verb 0/1 ood_235_verb_size_1_0_verb
254
+ 236 1 0 size 0/1 ood_236_verb_size_1_0_size
255
+ 237 5 4 verb 0/1 ood_237_verb_size_5_4_verb
256
+ 238 5 4 size 0/1 ood_238_verb_size_5_4_size
257
+ 239 3 2 verb 0/1 ood_239_verb_size_3_2_verb
258
+ 240 3 2 size 0/1 ood_240_verb_size_3_2_size
259
+ 241 3 2 verb 0/1 ood_241_verb_size_3_2_verb
260
+ 242 3 2 size 1/1 ood_242_verb_size_3_2_size
261
+ 243 5 4 verb 1/1 ood_243_verb_size_5_4_verb
262
+ 244 5 4 size 0/1 ood_244_verb_size_5_4_size
263
+ 245 3 2 verb 0/1 ood_245_verb_size_3_2_verb
264
+ 246 3 2 size 0/1 ood_246_verb_size_3_2_size
265
+ 247 1 0 verb 1/1 ood_247_verb_size_1_0_verb
266
+ 248 1 0 size 0/1 ood_248_verb_size_1_0_size
267
+ 249 2 3 verb 0/1 ood_249_verb_size_2_3_verb
268
+ 250 2 3 size 0/1 ood_250_verb_size_2_3_size
269
+ 251 1 0 verb 0/1 ood_251_verb_size_1_0_verb
270
+ 252 1 0 size 0/1 ood_252_verb_size_1_0_size
271
+ 253 1 0 verb 1/1 ood_253_verb_size_1_0_verb
272
+ 254 1 0 size 0/1 ood_254_verb_size_1_0_size
273
+ 255 5 4 verb 0/1 ood_255_verb_size_5_4_verb
274
+ 256 5 4 size 1/1 ood_256_verb_size_5_4_size
275
+ 257 4 5 verb 0/1 ood_257_verb_size_4_5_verb
276
+ 258 4 5 size 0/1 ood_258_verb_size_4_5_size
277
+ 259 4 5 verb 0/1 ood_259_verb_size_4_5_verb
278
+ 260 4 5 size 0/1 ood_260_verb_size_4_5_size
279
+ 261 2 3 verb 1/1 ood_261_verb_size_2_3_verb
280
+ 262 2 3 size 0/1 ood_262_verb_size_2_3_size
281
+ 263 5 4 verb 0/1 ood_263_verb_size_5_4_verb
282
+ 264 5 4 size 1/1 ood_264_verb_size_5_4_size
283
+ 265 4 5 verb 1/1 ood_265_verb_size_4_5_verb
284
+ 266 4 5 size 0/1 ood_266_verb_size_4_5_size
285
+ 267 3 2 verb 0/1 ood_267_verb_size_3_2_verb
286
+ 268 3 2 size 0/1 ood_268_verb_size_3_2_size
287
+ 269 4 5 verb 1/1 ood_269_verb_size_4_5_verb
288
+ 270 4 5 size 0/1 ood_270_verb_size_4_5_size
289
+ 271 3 2 verb 0/1 ood_271_verb_size_3_2_verb
290
+ 272 3 2 size 1/1 ood_272_verb_size_3_2_size
291
+ 273 2 3 verb 0/1 ood_273_verb_size_2_3_verb
292
+ 274 2 3 size 0/1 ood_274_verb_size_2_3_size
293
+ 275 1 0 verb 1/1 ood_275_verb_size_1_0_verb
294
+ 276 1 0 size 0/1 ood_276_verb_size_1_0_size
295
+ 277 1 0 verb 0/1 ood_277_verb_size_1_0_verb
296
+ 278 1 0 size 0/1 ood_278_verb_size_1_0_size
297
+ 279 4 5 verb 0/1 ood_279_verb_size_4_5_verb
298
+ 280 4 5 size 0/1 ood_280_verb_size_4_5_size
299
+ 281 3 2 verb 0/1 ood_281_verb_size_3_2_verb
300
+ 282 3 2 size 0/1 ood_282_verb_size_3_2_size
301
+ 283 0 1 verb 0/1 ood_283_verb_size_0_1_verb
302
+ 284 0 1 size 1/1 ood_284_verb_size_0_1_size
303
+ 285 0 1 verb 0/1 ood_285_verb_size_0_1_verb
304
+ 286 0 1 size 0/1 ood_286_verb_size_0_1_size
305
+ 287 0 1 verb 0/1 ood_287_verb_size_0_1_verb
306
+ 288 0 1 size 0/1 ood_288_verb_size_0_1_size
307
+ 289 1 0 verb 0/1 ood_289_verb_size_1_0_verb
308
+ 290 1 0 size 0/1 ood_290_verb_size_1_0_size
309
+ 291 5 4 verb 0/1 ood_291_verb_size_5_4_verb
310
+ 292 5 4 size 0/1 ood_292_verb_size_5_4_size
311
+ 293 1 0 verb 1/1 ood_293_verb_size_1_0_verb
312
+ 294 1 0 size 0/1 ood_294_verb_size_1_0_size
313
+ 295 5 4 verb 1/1 ood_295_verb_size_5_4_verb
314
+ 296 5 4 size 1/1 ood_296_verb_size_5_4_size
315
+ 297 3 2 verb 0/1 ood_297_verb_size_3_2_verb
316
+ 298 3 2 size 0/1 ood_298_verb_size_3_2_size
317
+ 299 4 5 verb 1/1 ood_299_verb_size_4_5_verb
318
+ 300 4 5 size 0/1 ood_300_verb_size_4_5_size
319
+ 301 0 1 verb 0/1 ood_301_verb_size_0_1_verb
320
+ 302 0 1 size 1/1 ood_302_verb_size_0_1_size
321
+ 303 3 2 verb 0/1 ood_303_verb_size_3_2_verb
322
+ 304 3 2 size 0/1 ood_304_verb_size_3_2_size
323
+ 305 3 2 verb 0/1 ood_305_verb_size_3_2_verb
324
+ 306 3 2 size 0/1 ood_306_verb_size_3_2_size
325
+ 307 4 5 verb 0/1 ood_307_verb_size_4_5_verb
326
+ 308 4 5 size 0/1 ood_308_verb_size_4_5_size
327
+ 309 3 2 verb 0/1 ood_309_verb_size_3_2_verb
328
+ 310 3 2 size 0/1 ood_310_verb_size_3_2_size
329
+ 311 4 5 verb 0/1 ood_311_verb_size_4_5_verb
330
+ 312 4 5 size 0/1 ood_312_verb_size_4_5_size
331
+ 313 2 3 verb 0/1 ood_313_verb_size_2_3_verb
332
+ 314 2 3 size 0/1 ood_314_verb_size_2_3_size
333
+ 315 4 5 verb 0/1 ood_315_verb_size_4_5_verb
334
+ 316 4 5 size 0/1 ood_316_verb_size_4_5_size
335
+ 317 0 1 verb 0/1 ood_317_verb_size_0_1_verb
336
+ 318 0 1 size 1/1 ood_318_verb_size_0_1_size
337
+ 319 5 4 verb 0/1 ood_319_verb_size_5_4_verb
338
+ 320 5 4 size 1/1 ood_320_verb_size_5_4_size
339
+ 321 5 4 verb 0/1 ood_321_verb_size_5_4_verb
340
+ 322 5 4 size 0/1 ood_322_verb_size_5_4_size
341
+ 323 0 1 verb 0/1 ood_323_verb_size_0_1_verb
342
+ 324 0 1 size 0/1 ood_324_verb_size_0_1_size
343
+ 325 5 4 verb 1/1 ood_325_verb_size_5_4_verb
344
+ 326 5 4 size 0/1 ood_326_verb_size_5_4_size
345
+ 327 4 5 verb 0/1 ood_327_verb_size_4_5_verb
346
+ 328 4 5 size 0/1 ood_328_verb_size_4_5_size
347
+ 329 2 3 verb 0/1 ood_329_verb_size_2_3_verb
348
+ 330 2 3 size 0/1 ood_330_verb_size_2_3_size
349
+ 331 5 4 verb 1/1 ood_331_verb_size_5_4_verb
350
+ 332 5 4 size 0/1 ood_332_verb_size_5_4_size
351
+ 333 2 3 verb 0/1 ood_333_verb_size_2_3_verb
352
+ 334 2 3 size 0/1 ood_334_verb_size_2_3_size
353
+ 335 0 1 verb 0/1 ood_335_verb_size_0_1_verb
354
+ 336 0 1 size 1/1 ood_336_verb_size_0_1_size
355
+ 337 2 3 verb 0/1 ood_337_verb_size_2_3_verb
356
+ 338 2 3 size 0/1 ood_338_verb_size_2_3_size
357
+ 339 3 2 verb 0/1 ood_339_verb_size_3_2_verb
358
+ 340 3 2 size 0/1 ood_340_verb_size_3_2_size
359
+ 341 1 0 verb 0/1 ood_341_verb_size_1_0_verb
360
+ 342 1 0 size 0/1 ood_342_verb_size_1_0_size
361
+ 343 3 2 verb 0/1 ood_343_verb_size_3_2_verb
362
+ 344 3 2 size 1/1 ood_344_verb_size_3_2_size
363
+ 345 0 1 verb 0/1 ood_345_verb_size_0_1_verb
364
+ 346 0 1 size 1/1 ood_346_verb_size_0_1_size
365
+ 347 5 4 verb 0/1 ood_347_verb_size_5_4_verb
366
+ 348 5 4 size 0/1 ood_348_verb_size_5_4_size
367
+ 349 5 4 verb 1/1 ood_349_verb_size_5_4_verb
368
+ 350 5 4 size 0/1 ood_350_verb_size_5_4_size
369
+ 351 2 3 verb 0/1 ood_351_verb_size_2_3_verb
370
+ 352 2 3 size 0/1 ood_352_verb_size_2_3_size
371
+ 353 4 5 verb 0/1 ood_353_verb_size_4_5_verb
372
+ 354 4 5 size 0/1 ood_354_verb_size_4_5_size
373
+ 355 1 0 verb 0/1 ood_355_verb_size_1_0_verb
374
+ 356 1 0 size 0/1 ood_356_verb_size_1_0_size
375
+ 357 4 5 verb 0/1 ood_357_verb_size_4_5_verb
376
+ 358 4 5 size 0/1 ood_358_verb_size_4_5_size
377
+ 359 0 1 verb 0/1 ood_359_verb_size_0_1_verb
378
+ 360 0 1 size 0/1 ood_360_verb_size_0_1_size
379
+ 361 5 4 verb 0/1 ood_361_verb_size_5_4_verb
380
+ 362 5 4 size 0/1 ood_362_verb_size_5_4_size
381
+ 363 2 3 verb 0/1 ood_363_verb_size_2_3_verb
382
+ 364 2 3 size 0/1 ood_364_verb_size_2_3_size
383
+ 365 5 4 verb 0/1 ood_365_verb_size_5_4_verb
384
+ 366 5 4 size 1/1 ood_366_verb_size_5_4_size
385
+ 367 4 5 verb 0/1 ood_367_verb_size_4_5_verb
386
+ 368 4 5 size 0/1 ood_368_verb_size_4_5_size
387
+ 369 4 5 verb 0/1 ood_369_verb_size_4_5_verb
388
+ 370 4 5 size 0/1 ood_370_verb_size_4_5_size
389
+ 371 1 0 verb 0/1 ood_371_verb_size_1_0_verb
390
+ 372 1 0 size 0/1 ood_372_verb_size_1_0_size
391
+ 373 1 0 verb 1/1 ood_373_verb_size_1_0_verb
392
+ 374 1 0 size 0/1 ood_374_verb_size_1_0_size
393
+ 375 2 3 verb 0/1 ood_375_verb_size_2_3_verb
394
+ 376 2 3 size 0/1 ood_376_verb_size_2_3_size
395
+ 377 1 0 verb 1/1 ood_377_verb_size_1_0_verb
396
+ 378 1 0 size 0/1 ood_378_verb_size_1_0_size
397
+ 379 4 5 verb 0/1 ood_379_verb_size_4_5_verb
398
+ 380 4 5 size 0/1 ood_380_verb_size_4_5_size
399
+ 381 4 5 verb 1/1 ood_381_verb_size_4_5_verb
400
+ 382 4 5 size 0/1 ood_382_verb_size_4_5_size
401
+ 383 0 1 verb 0/1 ood_383_verb_size_0_1_verb
402
+ 384 0 1 size 0/1 ood_384_verb_size_0_1_size
403
+ 385 4 5 verb 0/1 ood_385_verb_size_4_5_verb
404
+ 386 4 5 size 0/1 ood_386_verb_size_4_5_size
405
+ 387 2 3 verb 0/1 ood_387_verb_size_2_3_verb
406
+ 388 2 3 size 0/1 ood_388_verb_size_2_3_size
407
+ 389 3 2 verb 0/1 ood_389_verb_size_3_2_verb
408
+ 390 3 2 size 0/1 ood_390_verb_size_3_2_size
409
+ 391 0 1 verb 0/1 ood_391_verb_size_0_1_verb
410
+ 392 0 1 size 1/1 ood_392_verb_size_0_1_size
411
+ 393 0 1 verb 0/1 ood_393_verb_size_0_1_verb
412
+ 394 0 1 size 1/1 ood_394_verb_size_0_1_size
413
+ 395 2 3 verb 0/1 ood_395_verb_size_2_3_verb
414
+ 396 2 3 size 0/1 ood_396_verb_size_2_3_size
415
+ 397 2 3 verb 0/1 ood_397_verb_size_2_3_verb
416
+ 398 2 3 size 0/1 ood_398_verb_size_2_3_size
417
+ 399 1 0 verb 0/1 ood_399_verb_size_1_0_verb
418
+ 400 1 0 size 0/1 ood_400_verb_size_1_0_size
419
+
420
+ overall_verb_success=39/200 (19.5%)
421
+ overall_size_success=45/200 (22.5%)
results/genie/conflict_env/genie_verb_spatial_ood_seed42.txt ADDED
@@ -0,0 +1,421 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # OOD pairwise inference summary (Genie-Envisioner)
2
+ experiment=verb_spatial
3
+ seed=42
4
+ total_episodes_target=200
5
+ num_episodes_per_run=1
6
+ total_runs=400
7
+ total_episodes_actual=400
8
+ third_seed=42
9
+ weight=/workspace/groot_eval/genie_ckpts/verb_spatial
10
+ ltx_model=/workspace/groot_eval/LTX-Video
11
+ domain_name=conflict
12
+ sim_backend=cpu
13
+ max_episode_steps=300
14
+ replan_steps=5
15
+ num_inference_steps=5
16
+ seed_base=0
17
+
18
+ index pair_i pair_j run_type success run_name
19
+ 1 0 4 verb 0/1 ood_001_verb_spatial_0_4_verb
20
+ 2 0 4 spatial 0/1 ood_002_verb_spatial_0_4_spatial
21
+ 3 0 1 verb 0/1 ood_003_verb_spatial_0_1_verb
22
+ 4 0 1 spatial 1/1 ood_004_verb_spatial_0_1_spatial
23
+ 5 2 0 verb 0/1 ood_005_verb_spatial_2_0_verb
24
+ 6 2 0 spatial 0/1 ood_006_verb_spatial_2_0_spatial
25
+ 7 1 4 verb 0/1 ood_007_verb_spatial_1_4_verb
26
+ 8 1 4 spatial 0/1 ood_008_verb_spatial_1_4_spatial
27
+ 9 1 4 verb 1/1 ood_009_verb_spatial_1_4_verb
28
+ 10 1 4 spatial 0/1 ood_010_verb_spatial_1_4_spatial
29
+ 11 1 0 verb 0/1 ood_011_verb_spatial_1_0_verb
30
+ 12 1 0 spatial 0/1 ood_012_verb_spatial_1_0_spatial
31
+ 13 0 4 verb 0/1 ood_013_verb_spatial_0_4_verb
32
+ 14 0 4 spatial 0/1 ood_014_verb_spatial_0_4_spatial
33
+ 15 4 1 verb 0/1 ood_015_verb_spatial_4_1_verb
34
+ 16 4 1 spatial 1/1 ood_016_verb_spatial_4_1_spatial
35
+ 17 0 3 verb 0/1 ood_017_verb_spatial_0_3_verb
36
+ 18 0 3 spatial 0/1 ood_018_verb_spatial_0_3_spatial
37
+ 19 4 2 verb 0/1 ood_019_verb_spatial_4_2_verb
38
+ 20 4 2 spatial 0/1 ood_020_verb_spatial_4_2_spatial
39
+ 21 3 1 verb 0/1 ood_021_verb_spatial_3_1_verb
40
+ 22 3 1 spatial 0/1 ood_022_verb_spatial_3_1_spatial
41
+ 23 0 2 verb 0/1 ood_023_verb_spatial_0_2_verb
42
+ 24 0 2 spatial 0/1 ood_024_verb_spatial_0_2_spatial
43
+ 25 0 1 verb 0/1 ood_025_verb_spatial_0_1_verb
44
+ 26 0 1 spatial 1/1 ood_026_verb_spatial_0_1_spatial
45
+ 27 0 3 verb 0/1 ood_027_verb_spatial_0_3_verb
46
+ 28 0 3 spatial 0/1 ood_028_verb_spatial_0_3_spatial
47
+ 29 1 3 verb 0/1 ood_029_verb_spatial_1_3_verb
48
+ 30 1 3 spatial 0/1 ood_030_verb_spatial_1_3_spatial
49
+ 31 1 4 verb 1/1 ood_031_verb_spatial_1_4_verb
50
+ 32 1 4 spatial 0/1 ood_032_verb_spatial_1_4_spatial
51
+ 33 4 0 verb 0/1 ood_033_verb_spatial_4_0_verb
52
+ 34 4 0 spatial 0/1 ood_034_verb_spatial_4_0_spatial
53
+ 35 4 3 verb 0/1 ood_035_verb_spatial_4_3_verb
54
+ 36 4 3 spatial 0/1 ood_036_verb_spatial_4_3_spatial
55
+ 37 0 1 verb 0/1 ood_037_verb_spatial_0_1_verb
56
+ 38 0 1 spatial 1/1 ood_038_verb_spatial_0_1_spatial
57
+ 39 4 1 verb 0/1 ood_039_verb_spatial_4_1_verb
58
+ 40 4 1 spatial 1/1 ood_040_verb_spatial_4_1_spatial
59
+ 41 1 3 verb 0/1 ood_041_verb_spatial_1_3_verb
60
+ 42 1 3 spatial 0/1 ood_042_verb_spatial_1_3_spatial
61
+ 43 4 1 verb 0/1 ood_043_verb_spatial_4_1_verb
62
+ 44 4 1 spatial 1/1 ood_044_verb_spatial_4_1_spatial
63
+ 45 3 1 verb 0/1 ood_045_verb_spatial_3_1_verb
64
+ 46 3 1 spatial 0/1 ood_046_verb_spatial_3_1_spatial
65
+ 47 1 4 verb 1/1 ood_047_verb_spatial_1_4_verb
66
+ 48 1 4 spatial 0/1 ood_048_verb_spatial_1_4_spatial
67
+ 49 3 2 verb 0/1 ood_049_verb_spatial_3_2_verb
68
+ 50 3 2 spatial 0/1 ood_050_verb_spatial_3_2_spatial
69
+ 51 4 2 verb 0/1 ood_051_verb_spatial_4_2_verb
70
+ 52 4 2 spatial 0/1 ood_052_verb_spatial_4_2_spatial
71
+ 53 2 0 verb 0/1 ood_053_verb_spatial_2_0_verb
72
+ 54 2 0 spatial 0/1 ood_054_verb_spatial_2_0_spatial
73
+ 55 0 1 verb 0/1 ood_055_verb_spatial_0_1_verb
74
+ 56 0 1 spatial 1/1 ood_056_verb_spatial_0_1_spatial
75
+ 57 1 2 verb 0/1 ood_057_verb_spatial_1_2_verb
76
+ 58 1 2 spatial 0/1 ood_058_verb_spatial_1_2_spatial
77
+ 59 3 1 verb 0/1 ood_059_verb_spatial_3_1_verb
78
+ 60 3 1 spatial 0/1 ood_060_verb_spatial_3_1_spatial
79
+ 61 2 3 verb 0/1 ood_061_verb_spatial_2_3_verb
80
+ 62 2 3 spatial 0/1 ood_062_verb_spatial_2_3_spatial
81
+ 63 2 0 verb 0/1 ood_063_verb_spatial_2_0_verb
82
+ 64 2 0 spatial 1/1 ood_064_verb_spatial_2_0_spatial
83
+ 65 1 0 verb 0/1 ood_065_verb_spatial_1_0_verb
84
+ 66 1 0 spatial 0/1 ood_066_verb_spatial_1_0_spatial
85
+ 67 1 3 verb 0/1 ood_067_verb_spatial_1_3_verb
86
+ 68 1 3 spatial 0/1 ood_068_verb_spatial_1_3_spatial
87
+ 69 2 3 verb 0/1 ood_069_verb_spatial_2_3_verb
88
+ 70 2 3 spatial 0/1 ood_070_verb_spatial_2_3_spatial
89
+ 71 0 4 verb 0/1 ood_071_verb_spatial_0_4_verb
90
+ 72 0 4 spatial 0/1 ood_072_verb_spatial_0_4_spatial
91
+ 73 0 3 verb 0/1 ood_073_verb_spatial_0_3_verb
92
+ 74 0 3 spatial 0/1 ood_074_verb_spatial_0_3_spatial
93
+ 75 3 0 verb 0/1 ood_075_verb_spatial_3_0_verb
94
+ 76 3 0 spatial 0/1 ood_076_verb_spatial_3_0_spatial
95
+ 77 0 4 verb 0/1 ood_077_verb_spatial_0_4_verb
96
+ 78 0 4 spatial 0/1 ood_078_verb_spatial_0_4_spatial
97
+ 79 2 4 verb 0/1 ood_079_verb_spatial_2_4_verb
98
+ 80 2 4 spatial 0/1 ood_080_verb_spatial_2_4_spatial
99
+ 81 2 4 verb 0/1 ood_081_verb_spatial_2_4_verb
100
+ 82 2 4 spatial 0/1 ood_082_verb_spatial_2_4_spatial
101
+ 83 4 3 verb 0/1 ood_083_verb_spatial_4_3_verb
102
+ 84 4 3 spatial 0/1 ood_084_verb_spatial_4_3_spatial
103
+ 85 2 0 verb 0/1 ood_085_verb_spatial_2_0_verb
104
+ 86 2 0 spatial 0/1 ood_086_verb_spatial_2_0_spatial
105
+ 87 0 2 verb 0/1 ood_087_verb_spatial_0_2_verb
106
+ 88 0 2 spatial 1/1 ood_088_verb_spatial_0_2_spatial
107
+ 89 3 2 verb 0/1 ood_089_verb_spatial_3_2_verb
108
+ 90 3 2 spatial 0/1 ood_090_verb_spatial_3_2_spatial
109
+ 91 4 1 verb 0/1 ood_091_verb_spatial_4_1_verb
110
+ 92 4 1 spatial 0/1 ood_092_verb_spatial_4_1_spatial
111
+ 93 0 4 verb 0/1 ood_093_verb_spatial_0_4_verb
112
+ 94 0 4 spatial 0/1 ood_094_verb_spatial_0_4_spatial
113
+ 95 3 0 verb 0/1 ood_095_verb_spatial_3_0_verb
114
+ 96 3 0 spatial 0/1 ood_096_verb_spatial_3_0_spatial
115
+ 97 0 3 verb 0/1 ood_097_verb_spatial_0_3_verb
116
+ 98 0 3 spatial 0/1 ood_098_verb_spatial_0_3_spatial
117
+ 99 4 1 verb 0/1 ood_099_verb_spatial_4_1_verb
118
+ 100 4 1 spatial 1/1 ood_100_verb_spatial_4_1_spatial
119
+ 101 2 1 verb 0/1 ood_101_verb_spatial_2_1_verb
120
+ 102 2 1 spatial 0/1 ood_102_verb_spatial_2_1_spatial
121
+ 103 4 3 verb 0/1 ood_103_verb_spatial_4_3_verb
122
+ 104 4 3 spatial 0/1 ood_104_verb_spatial_4_3_spatial
123
+ 105 2 4 verb 0/1 ood_105_verb_spatial_2_4_verb
124
+ 106 2 4 spatial 0/1 ood_106_verb_spatial_2_4_spatial
125
+ 107 4 2 verb 1/1 ood_107_verb_spatial_4_2_verb
126
+ 108 4 2 spatial 0/1 ood_108_verb_spatial_4_2_spatial
127
+ 109 1 3 verb 0/1 ood_109_verb_spatial_1_3_verb
128
+ 110 1 3 spatial 0/1 ood_110_verb_spatial_1_3_spatial
129
+ 111 0 3 verb 0/1 ood_111_verb_spatial_0_3_verb
130
+ 112 0 3 spatial 0/1 ood_112_verb_spatial_0_3_spatial
131
+ 113 0 2 verb 0/1 ood_113_verb_spatial_0_2_verb
132
+ 114 0 2 spatial 0/1 ood_114_verb_spatial_0_2_spatial
133
+ 115 1 4 verb 1/1 ood_115_verb_spatial_1_4_verb
134
+ 116 1 4 spatial 0/1 ood_116_verb_spatial_1_4_spatial
135
+ 117 2 1 verb 0/1 ood_117_verb_spatial_2_1_verb
136
+ 118 2 1 spatial 1/1 ood_118_verb_spatial_2_1_spatial
137
+ 119 0 3 verb 0/1 ood_119_verb_spatial_0_3_verb
138
+ 120 0 3 spatial 0/1 ood_120_verb_spatial_0_3_spatial
139
+ 121 1 4 verb 1/1 ood_121_verb_spatial_1_4_verb
140
+ 122 1 4 spatial 0/1 ood_122_verb_spatial_1_4_spatial
141
+ 123 0 4 verb 0/1 ood_123_verb_spatial_0_4_verb
142
+ 124 0 4 spatial 0/1 ood_124_verb_spatial_0_4_spatial
143
+ 125 3 0 verb 0/1 ood_125_verb_spatial_3_0_verb
144
+ 126 3 0 spatial 0/1 ood_126_verb_spatial_3_0_spatial
145
+ 127 2 0 verb 0/1 ood_127_verb_spatial_2_0_verb
146
+ 128 2 0 spatial 0/1 ood_128_verb_spatial_2_0_spatial
147
+ 129 3 2 verb 0/1 ood_129_verb_spatial_3_2_verb
148
+ 130 3 2 spatial 0/1 ood_130_verb_spatial_3_2_spatial
149
+ 131 2 4 verb 0/1 ood_131_verb_spatial_2_4_verb
150
+ 132 2 4 spatial 0/1 ood_132_verb_spatial_2_4_spatial
151
+ 133 1 2 verb 0/1 ood_133_verb_spatial_1_2_verb
152
+ 134 1 2 spatial 0/1 ood_134_verb_spatial_1_2_spatial
153
+ 135 2 4 verb 0/1 ood_135_verb_spatial_2_4_verb
154
+ 136 2 4 spatial 0/1 ood_136_verb_spatial_2_4_spatial
155
+ 137 2 4 verb 0/1 ood_137_verb_spatial_2_4_verb
156
+ 138 2 4 spatial 0/1 ood_138_verb_spatial_2_4_spatial
157
+ 139 1 3 verb 0/1 ood_139_verb_spatial_1_3_verb
158
+ 140 1 3 spatial 0/1 ood_140_verb_spatial_1_3_spatial
159
+ 141 2 0 verb 0/1 ood_141_verb_spatial_2_0_verb
160
+ 142 2 0 spatial 0/1 ood_142_verb_spatial_2_0_spatial
161
+ 143 0 3 verb 0/1 ood_143_verb_spatial_0_3_verb
162
+ 144 0 3 spatial 0/1 ood_144_verb_spatial_0_3_spatial
163
+ 145 4 3 verb 0/1 ood_145_verb_spatial_4_3_verb
164
+ 146 4 3 spatial 0/1 ood_146_verb_spatial_4_3_spatial
165
+ 147 1 2 verb 0/1 ood_147_verb_spatial_1_2_verb
166
+ 148 1 2 spatial 0/1 ood_148_verb_spatial_1_2_spatial
167
+ 149 4 1 verb 0/1 ood_149_verb_spatial_4_1_verb
168
+ 150 4 1 spatial 1/1 ood_150_verb_spatial_4_1_spatial
169
+ 151 1 4 verb 1/1 ood_151_verb_spatial_1_4_verb
170
+ 152 1 4 spatial 0/1 ood_152_verb_spatial_1_4_spatial
171
+ 153 1 2 verb 0/1 ood_153_verb_spatial_1_2_verb
172
+ 154 1 2 spatial 0/1 ood_154_verb_spatial_1_2_spatial
173
+ 155 3 2 verb 0/1 ood_155_verb_spatial_3_2_verb
174
+ 156 3 2 spatial 0/1 ood_156_verb_spatial_3_2_spatial
175
+ 157 3 0 verb 0/1 ood_157_verb_spatial_3_0_verb
176
+ 158 3 0 spatial 0/1 ood_158_verb_spatial_3_0_spatial
177
+ 159 2 0 verb 0/1 ood_159_verb_spatial_2_0_verb
178
+ 160 2 0 spatial 0/1 ood_160_verb_spatial_2_0_spatial
179
+ 161 4 1 verb 0/1 ood_161_verb_spatial_4_1_verb
180
+ 162 4 1 spatial 1/1 ood_162_verb_spatial_4_1_spatial
181
+ 163 1 4 verb 0/1 ood_163_verb_spatial_1_4_verb
182
+ 164 1 4 spatial 0/1 ood_164_verb_spatial_1_4_spatial
183
+ 165 2 3 verb 0/1 ood_165_verb_spatial_2_3_verb
184
+ 166 2 3 spatial 0/1 ood_166_verb_spatial_2_3_spatial
185
+ 167 0 2 verb 0/1 ood_167_verb_spatial_0_2_verb
186
+ 168 0 2 spatial 1/1 ood_168_verb_spatial_0_2_spatial
187
+ 169 1 4 verb 0/1 ood_169_verb_spatial_1_4_verb
188
+ 170 1 4 spatial 0/1 ood_170_verb_spatial_1_4_spatial
189
+ 171 0 2 verb 0/1 ood_171_verb_spatial_0_2_verb
190
+ 172 0 2 spatial 0/1 ood_172_verb_spatial_0_2_spatial
191
+ 173 2 3 verb 0/1 ood_173_verb_spatial_2_3_verb
192
+ 174 2 3 spatial 0/1 ood_174_verb_spatial_2_3_spatial
193
+ 175 3 0 verb 0/1 ood_175_verb_spatial_3_0_verb
194
+ 176 3 0 spatial 0/1 ood_176_verb_spatial_3_0_spatial
195
+ 177 2 0 verb 0/1 ood_177_verb_spatial_2_0_verb
196
+ 178 2 0 spatial 0/1 ood_178_verb_spatial_2_0_spatial
197
+ 179 0 3 verb 0/1 ood_179_verb_spatial_0_3_verb
198
+ 180 0 3 spatial 0/1 ood_180_verb_spatial_0_3_spatial
199
+ 181 1 3 verb 0/1 ood_181_verb_spatial_1_3_verb
200
+ 182 1 3 spatial 0/1 ood_182_verb_spatial_1_3_spatial
201
+ 183 4 2 verb 0/1 ood_183_verb_spatial_4_2_verb
202
+ 184 4 2 spatial 0/1 ood_184_verb_spatial_4_2_spatial
203
+ 185 2 3 verb 0/1 ood_185_verb_spatial_2_3_verb
204
+ 186 2 3 spatial 0/1 ood_186_verb_spatial_2_3_spatial
205
+ 187 1 3 verb 0/1 ood_187_verb_spatial_1_3_verb
206
+ 188 1 3 spatial 0/1 ood_188_verb_spatial_1_3_spatial
207
+ 189 3 4 verb 0/1 ood_189_verb_spatial_3_4_verb
208
+ 190 3 4 spatial 0/1 ood_190_verb_spatial_3_4_spatial
209
+ 191 3 0 verb 0/1 ood_191_verb_spatial_3_0_verb
210
+ 192 3 0 spatial 0/1 ood_192_verb_spatial_3_0_spatial
211
+ 193 3 2 verb 0/1 ood_193_verb_spatial_3_2_verb
212
+ 194 3 2 spatial 0/1 ood_194_verb_spatial_3_2_spatial
213
+ 195 1 0 verb 0/1 ood_195_verb_spatial_1_0_verb
214
+ 196 1 0 spatial 0/1 ood_196_verb_spatial_1_0_spatial
215
+ 197 2 0 verb 0/1 ood_197_verb_spatial_2_0_verb
216
+ 198 2 0 spatial 0/1 ood_198_verb_spatial_2_0_spatial
217
+ 199 1 0 verb 0/1 ood_199_verb_spatial_1_0_verb
218
+ 200 1 0 spatial 0/1 ood_200_verb_spatial_1_0_spatial
219
+ 201 1 4 verb 0/1 ood_201_verb_spatial_1_4_verb
220
+ 202 1 4 spatial 1/1 ood_202_verb_spatial_1_4_spatial
221
+ 203 4 1 verb 0/1 ood_203_verb_spatial_4_1_verb
222
+ 204 4 1 spatial 1/1 ood_204_verb_spatial_4_1_spatial
223
+ 205 4 1 verb 0/1 ood_205_verb_spatial_4_1_verb
224
+ 206 4 1 spatial 1/1 ood_206_verb_spatial_4_1_spatial
225
+ 207 2 0 verb 0/1 ood_207_verb_spatial_2_0_verb
226
+ 208 2 0 spatial 0/1 ood_208_verb_spatial_2_0_spatial
227
+ 209 4 2 verb 0/1 ood_209_verb_spatial_4_2_verb
228
+ 210 4 2 spatial 0/1 ood_210_verb_spatial_4_2_spatial
229
+ 211 3 1 verb 0/1 ood_211_verb_spatial_3_1_verb
230
+ 212 3 1 spatial 0/1 ood_212_verb_spatial_3_1_spatial
231
+ 213 4 2 verb 0/1 ood_213_verb_spatial_4_2_verb
232
+ 214 4 2 spatial 0/1 ood_214_verb_spatial_4_2_spatial
233
+ 215 3 0 verb 0/1 ood_215_verb_spatial_3_0_verb
234
+ 216 3 0 spatial 0/1 ood_216_verb_spatial_3_0_spatial
235
+ 217 2 4 verb 0/1 ood_217_verb_spatial_2_4_verb
236
+ 218 2 4 spatial 0/1 ood_218_verb_spatial_2_4_spatial
237
+ 219 1 4 verb 0/1 ood_219_verb_spatial_1_4_verb
238
+ 220 1 4 spatial 0/1 ood_220_verb_spatial_1_4_spatial
239
+ 221 1 0 verb 0/1 ood_221_verb_spatial_1_0_verb
240
+ 222 1 0 spatial 0/1 ood_222_verb_spatial_1_0_spatial
241
+ 223 4 0 verb 0/1 ood_223_verb_spatial_4_0_verb
242
+ 224 4 0 spatial 0/1 ood_224_verb_spatial_4_0_spatial
243
+ 225 3 4 verb 0/1 ood_225_verb_spatial_3_4_verb
244
+ 226 3 4 spatial 0/1 ood_226_verb_spatial_3_4_spatial
245
+ 227 0 3 verb 0/1 ood_227_verb_spatial_0_3_verb
246
+ 228 0 3 spatial 0/1 ood_228_verb_spatial_0_3_spatial
247
+ 229 0 2 verb 0/1 ood_229_verb_spatial_0_2_verb
248
+ 230 0 2 spatial 0/1 ood_230_verb_spatial_0_2_spatial
249
+ 231 0 4 verb 0/1 ood_231_verb_spatial_0_4_verb
250
+ 232 0 4 spatial 0/1 ood_232_verb_spatial_0_4_spatial
251
+ 233 1 0 verb 0/1 ood_233_verb_spatial_1_0_verb
252
+ 234 1 0 spatial 0/1 ood_234_verb_spatial_1_0_spatial
253
+ 235 1 2 verb 0/1 ood_235_verb_spatial_1_2_verb
254
+ 236 1 2 spatial 0/1 ood_236_verb_spatial_1_2_spatial
255
+ 237 3 1 verb 0/1 ood_237_verb_spatial_3_1_verb
256
+ 238 3 1 spatial 0/1 ood_238_verb_spatial_3_1_spatial
257
+ 239 4 3 verb 0/1 ood_239_verb_spatial_4_3_verb
258
+ 240 4 3 spatial 0/1 ood_240_verb_spatial_4_3_spatial
259
+ 241 0 3 verb 0/1 ood_241_verb_spatial_0_3_verb
260
+ 242 0 3 spatial 0/1 ood_242_verb_spatial_0_3_spatial
261
+ 243 3 0 verb 0/1 ood_243_verb_spatial_3_0_verb
262
+ 244 3 0 spatial 0/1 ood_244_verb_spatial_3_0_spatial
263
+ 245 3 0 verb 0/1 ood_245_verb_spatial_3_0_verb
264
+ 246 3 0 spatial 0/1 ood_246_verb_spatial_3_0_spatial
265
+ 247 4 3 verb 0/1 ood_247_verb_spatial_4_3_verb
266
+ 248 4 3 spatial 0/1 ood_248_verb_spatial_4_3_spatial
267
+ 249 3 2 verb 0/1 ood_249_verb_spatial_3_2_verb
268
+ 250 3 2 spatial 0/1 ood_250_verb_spatial_3_2_spatial
269
+ 251 4 0 verb 0/1 ood_251_verb_spatial_4_0_verb
270
+ 252 4 0 spatial 0/1 ood_252_verb_spatial_4_0_spatial
271
+ 253 2 0 verb 0/1 ood_253_verb_spatial_2_0_verb
272
+ 254 2 0 spatial 0/1 ood_254_verb_spatial_2_0_spatial
273
+ 255 4 1 verb 0/1 ood_255_verb_spatial_4_1_verb
274
+ 256 4 1 spatial 1/1 ood_256_verb_spatial_4_1_spatial
275
+ 257 0 1 verb 0/1 ood_257_verb_spatial_0_1_verb
276
+ 258 0 1 spatial 1/1 ood_258_verb_spatial_0_1_spatial
277
+ 259 0 4 verb 0/1 ood_259_verb_spatial_0_4_verb
278
+ 260 0 4 spatial 0/1 ood_260_verb_spatial_0_4_spatial
279
+ 261 4 1 verb 0/1 ood_261_verb_spatial_4_1_verb
280
+ 262 4 1 spatial 1/1 ood_262_verb_spatial_4_1_spatial
281
+ 263 2 0 verb 0/1 ood_263_verb_spatial_2_0_verb
282
+ 264 2 0 spatial 0/1 ood_264_verb_spatial_2_0_spatial
283
+ 265 2 3 verb 0/1 ood_265_verb_spatial_2_3_verb
284
+ 266 2 3 spatial 0/1 ood_266_verb_spatial_2_3_spatial
285
+ 267 0 4 verb 0/1 ood_267_verb_spatial_0_4_verb
286
+ 268 0 4 spatial 0/1 ood_268_verb_spatial_0_4_spatial
287
+ 269 2 1 verb 0/1 ood_269_verb_spatial_2_1_verb
288
+ 270 2 1 spatial 0/1 ood_270_verb_spatial_2_1_spatial
289
+ 271 3 1 verb 0/1 ood_271_verb_spatial_3_1_verb
290
+ 272 3 1 spatial 0/1 ood_272_verb_spatial_3_1_spatial
291
+ 273 1 2 verb 0/1 ood_273_verb_spatial_1_2_verb
292
+ 274 1 2 spatial 0/1 ood_274_verb_spatial_1_2_spatial
293
+ 275 3 2 verb 0/1 ood_275_verb_spatial_3_2_verb
294
+ 276 3 2 spatial 0/1 ood_276_verb_spatial_3_2_spatial
295
+ 277 0 1 verb 0/1 ood_277_verb_spatial_0_1_verb
296
+ 278 0 1 spatial 1/1 ood_278_verb_spatial_0_1_spatial
297
+ 279 2 0 verb 1/1 ood_279_verb_spatial_2_0_verb
298
+ 280 2 0 spatial 0/1 ood_280_verb_spatial_2_0_spatial
299
+ 281 4 0 verb 0/1 ood_281_verb_spatial_4_0_verb
300
+ 282 4 0 spatial 0/1 ood_282_verb_spatial_4_0_spatial
301
+ 283 1 2 verb 0/1 ood_283_verb_spatial_1_2_verb
302
+ 284 1 2 spatial 0/1 ood_284_verb_spatial_1_2_spatial
303
+ 285 4 0 verb 0/1 ood_285_verb_spatial_4_0_verb
304
+ 286 4 0 spatial 0/1 ood_286_verb_spatial_4_0_spatial
305
+ 287 0 4 verb 0/1 ood_287_verb_spatial_0_4_verb
306
+ 288 0 4 spatial 0/1 ood_288_verb_spatial_0_4_spatial
307
+ 289 2 1 verb 0/1 ood_289_verb_spatial_2_1_verb
308
+ 290 2 1 spatial 0/1 ood_290_verb_spatial_2_1_spatial
309
+ 291 4 0 verb 0/1 ood_291_verb_spatial_4_0_verb
310
+ 292 4 0 spatial 0/1 ood_292_verb_spatial_4_0_spatial
311
+ 293 4 3 verb 0/1 ood_293_verb_spatial_4_3_verb
312
+ 294 4 3 spatial 0/1 ood_294_verb_spatial_4_3_spatial
313
+ 295 1 3 verb 0/1 ood_295_verb_spatial_1_3_verb
314
+ 296 1 3 spatial 0/1 ood_296_verb_spatial_1_3_spatial
315
+ 297 1 0 verb 1/1 ood_297_verb_spatial_1_0_verb
316
+ 298 1 0 spatial 0/1 ood_298_verb_spatial_1_0_spatial
317
+ 299 2 4 verb 0/1 ood_299_verb_spatial_2_4_verb
318
+ 300 2 4 spatial 0/1 ood_300_verb_spatial_2_4_spatial
319
+ 301 1 2 verb 0/1 ood_301_verb_spatial_1_2_verb
320
+ 302 1 2 spatial 0/1 ood_302_verb_spatial_1_2_spatial
321
+ 303 4 1 verb 0/1 ood_303_verb_spatial_4_1_verb
322
+ 304 4 1 spatial 0/1 ood_304_verb_spatial_4_1_spatial
323
+ 305 4 0 verb 0/1 ood_305_verb_spatial_4_0_verb
324
+ 306 4 0 spatial 0/1 ood_306_verb_spatial_4_0_spatial
325
+ 307 0 1 verb 0/1 ood_307_verb_spatial_0_1_verb
326
+ 308 0 1 spatial 1/1 ood_308_verb_spatial_0_1_spatial
327
+ 309 4 3 verb 0/1 ood_309_verb_spatial_4_3_verb
328
+ 310 4 3 spatial 0/1 ood_310_verb_spatial_4_3_spatial
329
+ 311 2 3 verb 0/1 ood_311_verb_spatial_2_3_verb
330
+ 312 2 3 spatial 0/1 ood_312_verb_spatial_2_3_spatial
331
+ 313 3 4 verb 0/1 ood_313_verb_spatial_3_4_verb
332
+ 314 3 4 spatial 0/1 ood_314_verb_spatial_3_4_spatial
333
+ 315 0 1 verb 0/1 ood_315_verb_spatial_0_1_verb
334
+ 316 0 1 spatial 1/1 ood_316_verb_spatial_0_1_spatial
335
+ 317 0 4 verb 0/1 ood_317_verb_spatial_0_4_verb
336
+ 318 0 4 spatial 0/1 ood_318_verb_spatial_0_4_spatial
337
+ 319 2 4 verb 0/1 ood_319_verb_spatial_2_4_verb
338
+ 320 2 4 spatial 0/1 ood_320_verb_spatial_2_4_spatial
339
+ 321 2 1 verb 0/1 ood_321_verb_spatial_2_1_verb
340
+ 322 2 1 spatial 0/1 ood_322_verb_spatial_2_1_spatial
341
+ 323 1 4 verb 1/1 ood_323_verb_spatial_1_4_verb
342
+ 324 1 4 spatial 0/1 ood_324_verb_spatial_1_4_spatial
343
+ 325 0 2 verb 0/1 ood_325_verb_spatial_0_2_verb
344
+ 326 0 2 spatial 1/1 ood_326_verb_spatial_0_2_spatial
345
+ 327 1 4 verb 0/1 ood_327_verb_spatial_1_4_verb
346
+ 328 1 4 spatial 0/1 ood_328_verb_spatial_1_4_spatial
347
+ 329 4 2 verb 0/1 ood_329_verb_spatial_4_2_verb
348
+ 330 4 2 spatial 0/1 ood_330_verb_spatial_4_2_spatial
349
+ 331 0 3 verb 0/1 ood_331_verb_spatial_0_3_verb
350
+ 332 0 3 spatial 0/1 ood_332_verb_spatial_0_3_spatial
351
+ 333 0 3 verb 0/1 ood_333_verb_spatial_0_3_verb
352
+ 334 0 3 spatial 0/1 ood_334_verb_spatial_0_3_spatial
353
+ 335 3 4 verb 0/1 ood_335_verb_spatial_3_4_verb
354
+ 336 3 4 spatial 0/1 ood_336_verb_spatial_3_4_spatial
355
+ 337 0 3 verb 0/1 ood_337_verb_spatial_0_3_verb
356
+ 338 0 3 spatial 0/1 ood_338_verb_spatial_0_3_spatial
357
+ 339 4 1 verb 0/1 ood_339_verb_spatial_4_1_verb
358
+ 340 4 1 spatial 0/1 ood_340_verb_spatial_4_1_spatial
359
+ 341 1 0 verb 0/1 ood_341_verb_spatial_1_0_verb
360
+ 342 1 0 spatial 0/1 ood_342_verb_spatial_1_0_spatial
361
+ 343 1 0 verb 0/1 ood_343_verb_spatial_1_0_verb
362
+ 344 1 0 spatial 0/1 ood_344_verb_spatial_1_0_spatial
363
+ 345 3 4 verb 0/1 ood_345_verb_spatial_3_4_verb
364
+ 346 3 4 spatial 0/1 ood_346_verb_spatial_3_4_spatial
365
+ 347 4 1 verb 0/1 ood_347_verb_spatial_4_1_verb
366
+ 348 4 1 spatial 1/1 ood_348_verb_spatial_4_1_spatial
367
+ 349 1 2 verb 0/1 ood_349_verb_spatial_1_2_verb
368
+ 350 1 2 spatial 0/1 ood_350_verb_spatial_1_2_spatial
369
+ 351 2 0 verb 0/1 ood_351_verb_spatial_2_0_verb
370
+ 352 2 0 spatial 0/1 ood_352_verb_spatial_2_0_spatial
371
+ 353 4 0 verb 0/1 ood_353_verb_spatial_4_0_verb
372
+ 354 4 0 spatial 0/1 ood_354_verb_spatial_4_0_spatial
373
+ 355 4 3 verb 0/1 ood_355_verb_spatial_4_3_verb
374
+ 356 4 3 spatial 0/1 ood_356_verb_spatial_4_3_spatial
375
+ 357 3 1 verb 0/1 ood_357_verb_spatial_3_1_verb
376
+ 358 3 1 spatial 1/1 ood_358_verb_spatial_3_1_spatial
377
+ 359 1 3 verb 0/1 ood_359_verb_spatial_1_3_verb
378
+ 360 1 3 spatial 0/1 ood_360_verb_spatial_1_3_spatial
379
+ 361 4 1 verb 0/1 ood_361_verb_spatial_4_1_verb
380
+ 362 4 1 spatial 1/1 ood_362_verb_spatial_4_1_spatial
381
+ 363 1 3 verb 0/1 ood_363_verb_spatial_1_3_verb
382
+ 364 1 3 spatial 0/1 ood_364_verb_spatial_1_3_spatial
383
+ 365 2 1 verb 0/1 ood_365_verb_spatial_2_1_verb
384
+ 366 2 1 spatial 0/1 ood_366_verb_spatial_2_1_spatial
385
+ 367 3 0 verb 0/1 ood_367_verb_spatial_3_0_verb
386
+ 368 3 0 spatial 0/1 ood_368_verb_spatial_3_0_spatial
387
+ 369 2 4 verb 0/1 ood_369_verb_spatial_2_4_verb
388
+ 370 2 4 spatial 0/1 ood_370_verb_spatial_2_4_spatial
389
+ 371 3 2 verb 0/1 ood_371_verb_spatial_3_2_verb
390
+ 372 3 2 spatial 0/1 ood_372_verb_spatial_3_2_spatial
391
+ 373 4 0 verb 0/1 ood_373_verb_spatial_4_0_verb
392
+ 374 4 0 spatial 0/1 ood_374_verb_spatial_4_0_spatial
393
+ 375 3 2 verb 0/1 ood_375_verb_spatial_3_2_verb
394
+ 376 3 2 spatial 0/1 ood_376_verb_spatial_3_2_spatial
395
+ 377 0 4 verb 0/1 ood_377_verb_spatial_0_4_verb
396
+ 378 0 4 spatial 0/1 ood_378_verb_spatial_0_4_spatial
397
+ 379 1 4 verb 1/1 ood_379_verb_spatial_1_4_verb
398
+ 380 1 4 spatial 0/1 ood_380_verb_spatial_1_4_spatial
399
+ 381 1 4 verb 1/1 ood_381_verb_spatial_1_4_verb
400
+ 382 1 4 spatial 0/1 ood_382_verb_spatial_1_4_spatial
401
+ 383 0 3 verb 0/1 ood_383_verb_spatial_0_3_verb
402
+ 384 0 3 spatial 0/1 ood_384_verb_spatial_0_3_spatial
403
+ 385 2 3 verb 0/1 ood_385_verb_spatial_2_3_verb
404
+ 386 2 3 spatial 0/1 ood_386_verb_spatial_2_3_spatial
405
+ 387 0 1 verb 0/1 ood_387_verb_spatial_0_1_verb
406
+ 388 0 1 spatial 0/1 ood_388_verb_spatial_0_1_spatial
407
+ 389 4 2 verb 0/1 ood_389_verb_spatial_4_2_verb
408
+ 390 4 2 spatial 0/1 ood_390_verb_spatial_4_2_spatial
409
+ 391 4 1 verb 0/1 ood_391_verb_spatial_4_1_verb
410
+ 392 4 1 spatial 1/1 ood_392_verb_spatial_4_1_spatial
411
+ 393 1 4 verb 1/1 ood_393_verb_spatial_1_4_verb
412
+ 394 1 4 spatial 0/1 ood_394_verb_spatial_1_4_spatial
413
+ 395 4 2 verb 0/1 ood_395_verb_spatial_4_2_verb
414
+ 396 4 2 spatial 0/1 ood_396_verb_spatial_4_2_spatial
415
+ 397 1 4 verb 1/1 ood_397_verb_spatial_1_4_verb
416
+ 398 1 4 spatial 0/1 ood_398_verb_spatial_1_4_spatial
417
+ 399 0 1 verb 0/1 ood_399_verb_spatial_0_1_verb
418
+ 400 0 1 spatial 1/1 ood_400_verb_spatial_0_1_spatial
419
+
420
+ overall_verb_success=14/200 (7.0%)
421
+ overall_spatial_success=29/200 (14.5%)
results/gr00t/all_factor/all_factor_Lrandom_f50_n100/SUMMARY.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ # all_factor_Lrandom_f50_n100 — full-factor TASK-aligned, single-process batch (sample_n=200 seed=42, 200 eps, max_steps=500, no_distractor=0.70, default difficulty, sim=gpu)
2
+ seed40: 87/200 (43.5%)
3
+ seed41: 99/200 (49.5%)
4
+ seed42: 93/200 (46.5%)
5
+ AVG over 3 seed(s): 46.5%
results/gr00t/all_factor/all_factor_Lrandom_f50_n100/full_factor_all_factor_Lrandom_f50_n100_seed40.txt ADDED
@@ -0,0 +1,212 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Full-factor inference (GR00T N1.7) [single-process batch]
2
+ sample_n=200 sample_seed=42 total_cells=200
3
+ total_episodes_target=200 num_episodes_per_cell=1
4
+ total_episodes_actual=200
5
+ host=127.0.0.1 port=5704
6
+ sim_backend=gpu render_backend=gpu
7
+ max_episode_steps=500 seed_base=40
8
+ no_distractor_prob=0.7 replan_steps=5
9
+
10
+ index verb color shape spatial size prompt successes/total
11
+ 1 pull black car right small "Pull the small black car on the right." 0/1
12
+ 2 pull red cube right larger "Pull the larger red cube on the right." 0/1
13
+ 3 lift yellow sphere middle small "Lift the small yellow sphere in the middle." 1/1
14
+ 4 push red car behind small "Push the small red car at the back." 0/1
15
+ 5 grasp red cube middle smaller "Grasp the smaller red cube in the middle." 1/1
16
+ 6 grasp black cube front large "Grasp the large black cube in front." 1/1
17
+ 7 grasp orange sphere left smaller "Grasp the smaller orange sphere on the left." 1/1
18
+ 8 grasp black car middle large "Grasp the large black car in the middle." 0/1
19
+ 9 slide orange cup middle small "Slide the small orange cup in the middle." 1/1
20
+ 10 pull red car left large "Pull the large red car on the left." 0/1
21
+ 11 grasp blue cup middle smaller "Grasp the smaller blue cup in the middle." 1/1
22
+ 12 slide green star behind smaller "Slide the smaller green star at the back." 0/1
23
+ 13 lift orange cube left large "Lift the large orange cube on the left." 1/1
24
+ 14 rotate green sphere behind smaller "Rotate the smaller green sphere at the back." 0/1
25
+ 15 rotate green star behind larger "Rotate the larger green star at the back." 1/1
26
+ 16 pull blue cube middle large "Pull the large blue cube in the middle." 0/1
27
+ 17 pull red star right small "Pull the small red star on the right." 0/1
28
+ 18 lift red star middle small "Lift the small red star in the middle." 1/1
29
+ 19 push black cube left larger "Push the larger black cube on the left." 0/1
30
+ 20 slide red car right smaller "Slide the smaller red car on the right." 1/1
31
+ 21 rotate red star right large "Rotate the large red star on the right." 0/1
32
+ 22 slide orange car right small "Slide the small orange car on the right." 1/1
33
+ 23 slide black cube behind larger "Slide the larger black cube at the back." 1/1
34
+ 24 lift black pyramid behind larger "Lift the larger black pyramid at the back." 0/1
35
+ 25 pull green cube middle small "Pull the small green cube in the middle." 0/1
36
+ 26 pull orange cube right large "Pull the large orange cube on the right." 0/1
37
+ 27 grasp yellow cup right large "Grasp the large yellow cup on the right." 0/1
38
+ 28 rotate green cube front larger "Rotate the larger green cube in front." 1/1
39
+ 29 grasp yellow cup front smaller "Grasp the smaller yellow cup in front." 1/1
40
+ 30 lift orange cube middle larger "Lift the larger orange cube in the middle." 0/1
41
+ 31 rotate green cube right small "Rotate the small green cube on the right." 1/1
42
+ 32 slide blue sphere middle large "Slide the large blue sphere in the middle." 1/1
43
+ 33 rotate yellow car left smaller "Rotate the smaller yellow car on the left." 0/1
44
+ 34 grasp blue star middle larger "Grasp the larger blue star in the middle." 0/1
45
+ 35 rotate orange star behind smaller "Rotate the smaller orange star at the back." 0/1
46
+ 36 push yellow cup middle large "Push the large yellow cup in the middle." 1/1
47
+ 37 slide yellow car right small "Slide the small yellow car on the right." 1/1
48
+ 38 grasp yellow car left smaller "Grasp the smaller yellow car on the left." 0/1
49
+ 39 slide black cube front smaller "Slide the smaller black cube in front." 0/1
50
+ 40 push green cube front large "Push the large green cube in front." 1/1
51
+ 41 lift green car behind large "Lift the large green car at the back." 1/1
52
+ 42 slide yellow car middle smaller "Slide the smaller yellow car in the middle." 1/1
53
+ 43 pull green car middle larger "Pull the larger green car in the middle." 0/1
54
+ 44 grasp blue sphere front small "Grasp the small blue sphere in front." 0/1
55
+ 45 grasp red star right small "Grasp the small red star on the right." 0/1
56
+ 46 pull blue star behind smaller "Pull the smaller blue star at the back." 0/1
57
+ 47 grasp red sphere left large "Grasp the large red sphere on the left." 1/1
58
+ 48 push green cup right large "Push the large green cup on the right." 1/1
59
+ 49 push orange car front large "Push the large orange car in front." 0/1
60
+ 50 lift black cube left small "Lift the small black cube on the left." 0/1
61
+ 51 lift black star left smaller "Lift the smaller black star on the left." 0/1
62
+ 52 lift blue pyramid behind large "Lift the large blue pyramid at the back." 0/1
63
+ 53 lift black car front small "Lift the small black car in front." 0/1
64
+ 54 grasp yellow car middle small "Grasp the small yellow car in the middle." 1/1
65
+ 55 slide orange pyramid left small "Slide the small orange pyramid on the left." 1/1
66
+ 56 lift black sphere left smaller "Lift the smaller black sphere on the left." 1/1
67
+ 57 lift orange cup front larger "Lift the larger orange cup in front." 0/1
68
+ 58 push blue sphere front large "Push the large blue sphere in front." 0/1
69
+ 59 pull blue car front smaller "Pull the smaller blue car in front." 1/1
70
+ 60 push orange sphere right large "Push the large orange sphere on the right." 0/1
71
+ 61 rotate blue sphere left small "Rotate the small blue sphere on the left." 1/1
72
+ 62 grasp blue star front larger "Grasp the larger blue star in front." 1/1
73
+ 63 slide black cube right smaller "Slide the smaller black cube on the right." 0/1
74
+ 64 pull blue car middle small "Pull the small blue car in the middle." 0/1
75
+ 65 push green pyramid middle large "Push the large green pyramid in the middle." 0/1
76
+ 66 pull black pyramid left small "Pull the small black pyramid on the left." 0/1
77
+ 67 grasp blue pyramid behind large "Grasp the large blue pyramid at the back." 1/1
78
+ 68 lift orange car right smaller "Lift the smaller orange car on the right." 0/1
79
+ 69 pull green sphere behind large "Pull the large green sphere at the back." 0/1
80
+ 70 grasp yellow sphere front small "Grasp the small yellow sphere in front." 0/1
81
+ 71 slide orange pyramid front smaller "Slide the smaller orange pyramid in front." 0/1
82
+ 72 lift yellow cube middle larger "Lift the larger yellow cube in the middle." 0/1
83
+ 73 lift yellow star front larger "Lift the larger yellow star in front." 0/1
84
+ 74 push green cube front small "Push the small green cube in front." 0/1
85
+ 75 push orange sphere left small "Push the small orange sphere on the left." 1/1
86
+ 76 rotate orange pyramid behind small "Rotate the small orange pyramid at the back." 0/1
87
+ 77 slide red pyramid behind small "Slide the small red pyramid at the back." 1/1
88
+ 78 lift red star front small "Lift the small red star in front." 0/1
89
+ 79 push green car middle small "Push the small green car in the middle." 1/1
90
+ 80 grasp red cube front small "Grasp the small red cube in front." 1/1
91
+ 81 pull red cup front larger "Pull the larger red cup in front." 0/1
92
+ 82 pull red sphere middle large "Pull the large red sphere in the middle." 0/1
93
+ 83 lift green sphere front smaller "Lift the smaller green sphere in front." 0/1
94
+ 84 push yellow car left smaller "Push the smaller yellow car on the left." 0/1
95
+ 85 rotate blue cup behind small "Rotate the small blue cup at the back." 1/1
96
+ 86 lift yellow cup right smaller "Lift the smaller yellow cup on the right." 0/1
97
+ 87 pull red star left large "Pull the large red star on the left." 1/1
98
+ 88 lift red car front large "Lift the large red car in front." 0/1
99
+ 89 slide yellow sphere right larger "Slide the larger yellow sphere on the right." 0/1
100
+ 90 lift orange cup behind larger "Lift the larger orange cup at the back." 1/1
101
+ 91 lift red pyramid behind smaller "Lift the smaller red pyramid at the back." 0/1
102
+ 92 push red pyramid behind larger "Push the larger red pyramid at the back." 0/1
103
+ 93 pull blue cup behind small "Pull the small blue cup at the back." 0/1
104
+ 94 lift yellow car front smaller "Lift the smaller yellow car in front." 0/1
105
+ 95 grasp red cup front larger "Grasp the larger red cup in front." 0/1
106
+ 96 rotate red cube front smaller "Rotate the smaller red cube in front." 1/1
107
+ 97 lift black car right smaller "Lift the smaller black car on the right." 1/1
108
+ 98 lift orange cup right small "Lift the small orange cup on the right." 1/1
109
+ 99 pull green pyramid right smaller "Pull the smaller green pyramid on the right." 0/1
110
+ 100 pull blue sphere left large "Pull the large blue sphere on the left." 1/1
111
+ 101 push green star front larger "Push the larger green star in front." 0/1
112
+ 102 rotate red pyramid left larger "Rotate the larger red pyramid on the left." 1/1
113
+ 103 rotate red car right larger "Rotate the larger red car on the right." 0/1
114
+ 104 pull black pyramid right small "Pull the small black pyramid on the right." 0/1
115
+ 105 slide black cup behind smaller "Slide the smaller black cup at the back." 0/1
116
+ 106 lift orange cube left smaller "Lift the smaller orange cube on the left." 1/1
117
+ 107 grasp red car middle large "Grasp the large red car in the middle." 1/1
118
+ 108 rotate blue pyramid behind larger "Rotate the larger blue pyramid at the back." 1/1
119
+ 109 push blue sphere right larger "Push the larger blue sphere on the right." 0/1
120
+ 110 lift orange sphere behind larger "Lift the larger orange sphere at the back." 0/1
121
+ 111 pull red cup right larger "Pull the larger red cup on the right." 0/1
122
+ 112 push orange star right smaller "Push the smaller orange star on the right." 0/1
123
+ 113 grasp green sphere middle large "Grasp the large green sphere in the middle." 1/1
124
+ 114 rotate green pyramid left large "Rotate the large green pyramid on the left." 1/1
125
+ 115 grasp green star front smaller "Grasp the smaller green star in front." 0/1
126
+ 116 rotate blue pyramid right larger "Rotate the larger blue pyramid on the right." 0/1
127
+ 117 grasp orange car front large "Grasp the large orange car in front." 1/1
128
+ 118 lift orange star behind smaller "Lift the smaller orange star at the back." 0/1
129
+ 119 grasp black cup behind smaller "Grasp the smaller black cup at the back." 1/1
130
+ 120 push blue cup left large "Push the large blue cup on the left." 0/1
131
+ 121 grasp black car left larger "Grasp the larger black car on the left." 0/1
132
+ 122 rotate red star middle large "Rotate the large red star in the middle." 1/1
133
+ 123 lift blue star behind large "Lift the large blue star at the back." 1/1
134
+ 124 lift black cup behind larger "Lift the larger black cup at the back." 1/1
135
+ 125 slide black star front larger "Slide the larger black star in front." 0/1
136
+ 126 lift green star front large "Lift the large green star in front." 1/1
137
+ 127 grasp orange sphere front large "Grasp the large orange sphere in front." 0/1
138
+ 128 grasp yellow car front larger "Grasp the larger yellow car in front." 0/1
139
+ 129 push yellow cup right larger "Push the larger yellow cup on the right." 1/1
140
+ 130 slide yellow car behind large "Slide the large yellow car at the back." 1/1
141
+ 131 slide yellow cup right small "Slide the small yellow cup on the right." 1/1
142
+ 132 grasp red sphere middle smaller "Grasp the smaller red sphere in the middle." 1/1
143
+ 133 pull black car left smaller "Pull the smaller black car on the left." 0/1
144
+ 134 grasp yellow cube behind larger "Grasp the larger yellow cube at the back." 1/1
145
+ 135 push orange pyramid right larger "Push the larger orange pyramid on the right." 0/1
146
+ 136 pull green star left small "Pull the small green star on the left." 1/1
147
+ 137 pull orange car middle large "Pull the large orange car in the middle." 0/1
148
+ 138 lift blue cube right larger "Lift the larger blue cube on the right." 0/1
149
+ 139 lift black sphere behind larger "Lift the larger black sphere at the back." 0/1
150
+ 140 slide red pyramid middle small "Slide the small red pyramid in the middle." 0/1
151
+ 141 push black pyramid right larger "Push the larger black pyramid on the right." 0/1
152
+ 142 pull blue car front large "Pull the large blue car in front." 1/1
153
+ 143 rotate red cup left small "Rotate the small red cup on the left." 1/1
154
+ 144 pull green cup front larger "Pull the larger green cup in front." 1/1
155
+ 145 rotate black star middle smaller "Rotate the smaller black star in the middle." 1/1
156
+ 146 push orange sphere middle smaller "Push the smaller orange sphere in the middle." 1/1
157
+ 147 grasp green sphere middle larger "Grasp the larger green sphere in the middle." 1/1
158
+ 148 rotate yellow cup middle large "Rotate the large yellow cup in the middle." 1/1
159
+ 149 slide blue star middle smaller "Slide the smaller blue star in the middle." 0/1
160
+ 150 slide red cube behind smaller "Slide the smaller red cube at the back." 0/1
161
+ 151 slide blue cube left small "Slide the small blue cube on the left." 1/1
162
+ 152 grasp yellow cup front large "Grasp the large yellow cup in front." 0/1
163
+ 153 grasp blue cube front larger "Grasp the larger blue cube in front." 0/1
164
+ 154 grasp green cube front smaller "Grasp the smaller green cube in front." 1/1
165
+ 155 push orange star middle large "Push the large orange star in the middle." 0/1
166
+ 156 pull green cup left larger "Pull the larger green cup on the left." 0/1
167
+ 157 grasp yellow cube middle large "Grasp the large yellow cube in the middle." 1/1
168
+ 158 grasp green cube left small "Grasp the small green cube on the left." 1/1
169
+ 159 push green car left large "Push the large green car on the left." 1/1
170
+ 160 slide red cup right large "Slide the large red cup on the right." 1/1
171
+ 161 push black cup middle larger "Push the larger black cup in the middle." 1/1
172
+ 162 pull red car behind larger "Pull the larger red car at the back." 0/1
173
+ 163 slide green pyramid left larger "Slide the larger green pyramid on the left." 0/1
174
+ 164 slide orange pyramid behind small "Slide the small orange pyramid at the back." 0/1
175
+ 165 grasp black pyramid left small "Grasp the small black pyramid on the left." 1/1
176
+ 166 push yellow pyramid middle larger "Push the larger yellow pyramid in the middle." 0/1
177
+ 167 slide orange star left large "Slide the large orange star on the left." 0/1
178
+ 168 slide orange star front large "Slide the large orange star in front." 0/1
179
+ 169 grasp orange pyramid middle small "Grasp the small orange pyramid in the middle." 1/1
180
+ 170 lift red sphere behind large "Lift the large red sphere at the back." 1/1
181
+ 171 grasp red sphere behind large "Grasp the large red sphere at the back." 0/1
182
+ 172 slide black cup right smaller "Slide the smaller black cup on the right." 0/1
183
+ 173 lift green pyramid right larger "Lift the larger green pyramid on the right." 0/1
184
+ 174 slide blue cube middle small "Slide the small blue cube in the middle." 1/1
185
+ 175 push green cup front smaller "Push the smaller green cup in front." 0/1
186
+ 176 grasp blue cup behind larger "Grasp the larger blue cup at the back." 0/1
187
+ 177 slide green cup left smaller "Slide the smaller green cup on the left." 1/1
188
+ 178 grasp blue pyramid behind larger "Grasp the larger blue pyramid at the back." 1/1
189
+ 179 pull red star behind larger "Pull the larger red star at the back." 0/1
190
+ 180 pull red sphere behind larger "Pull the larger red sphere at the back." 0/1
191
+ 181 slide orange cup front larger "Slide the larger orange cup in front." 1/1
192
+ 182 pull black cup left small "Pull the small black cup on the left." 1/1
193
+ 183 lift red cube right large "Lift the large red cube on the right." 1/1
194
+ 184 push green star right larger "Push the larger green star on the right." 0/1
195
+ 185 pull yellow pyramid behind larger "Pull the larger yellow pyramid at the back." 0/1
196
+ 186 lift blue star front small "Lift the small blue star in front." 0/1
197
+ 187 rotate green cup front small "Rotate the small green cup in front." 0/1
198
+ 188 slide blue star left small "Slide the small blue star on the left." 0/1
199
+ 189 lift blue cube behind larger "Lift the larger blue cube at the back." 0/1
200
+ 190 rotate red cube right larger "Rotate the larger red cube on the right." 1/1
201
+ 191 lift yellow pyramid front small "Lift the small yellow pyramid in front." 0/1
202
+ 192 push blue cup middle smaller "Push the smaller blue cup in the middle." 1/1
203
+ 193 slide yellow star front larger "Slide the larger yellow star in front." 0/1
204
+ 194 rotate red car behind large "Rotate the large red car at the back." 1/1
205
+ 195 lift green car right small "Lift the small green car on the right." 1/1
206
+ 196 slide black cube left smaller "Slide the smaller black cube on the left." 0/1
207
+ 197 lift red sphere behind small "Lift the small red sphere at the back." 0/1
208
+ 198 lift orange car middle larger "Lift the larger orange car in the middle." 1/1
209
+ 199 push yellow sphere front smaller "Push the smaller yellow sphere in front." 0/1
210
+ 200 slide blue star right small "Slide the small blue star on the right." 0/1
211
+
212
+ overall_success=87/200 (43.5%)
results/gr00t/all_factor/all_factor_Lrandom_f50_n100/full_factor_all_factor_Lrandom_f50_n100_seed41.txt ADDED
@@ -0,0 +1,212 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Full-factor inference (GR00T N1.7) [single-process batch]
2
+ sample_n=200 sample_seed=42 total_cells=200
3
+ total_episodes_target=200 num_episodes_per_cell=1
4
+ total_episodes_actual=200
5
+ host=127.0.0.1 port=5704
6
+ sim_backend=gpu render_backend=gpu
7
+ max_episode_steps=500 seed_base=41
8
+ no_distractor_prob=0.7 replan_steps=5
9
+
10
+ index verb color shape spatial size prompt successes/total
11
+ 1 pull black car right small "Pull the small black car on the right." 0/1
12
+ 2 pull red cube right larger "Pull the larger red cube on the right." 0/1
13
+ 3 lift yellow sphere middle small "Lift the small yellow sphere in the middle." 1/1
14
+ 4 push red car behind small "Push the small red car at the back." 0/1
15
+ 5 grasp red cube middle smaller "Grasp the smaller red cube in the middle." 1/1
16
+ 6 grasp black cube front large "Grasp the large black cube in front." 0/1
17
+ 7 grasp orange sphere left smaller "Grasp the smaller orange sphere on the left." 1/1
18
+ 8 grasp black car middle large "Grasp the large black car in the middle." 0/1
19
+ 9 slide orange cup middle small "Slide the small orange cup in the middle." 1/1
20
+ 10 pull red car left large "Pull the large red car on the left." 1/1
21
+ 11 grasp blue cup middle smaller "Grasp the smaller blue cup in the middle." 1/1
22
+ 12 slide green star behind smaller "Slide the smaller green star at the back." 1/1
23
+ 13 lift orange cube left large "Lift the large orange cube on the left." 1/1
24
+ 14 rotate green sphere behind smaller "Rotate the smaller green sphere at the back." 1/1
25
+ 15 rotate green star behind larger "Rotate the larger green star at the back." 0/1
26
+ 16 pull blue cube middle large "Pull the large blue cube in the middle." 0/1
27
+ 17 pull red star right small "Pull the small red star on the right." 0/1
28
+ 18 lift red star middle small "Lift the small red star in the middle." 0/1
29
+ 19 push black cube left larger "Push the larger black cube on the left." 1/1
30
+ 20 slide red car right smaller "Slide the smaller red car on the right." 1/1
31
+ 21 rotate red star right large "Rotate the large red star on the right." 0/1
32
+ 22 slide orange car right small "Slide the small orange car on the right." 1/1
33
+ 23 slide black cube behind larger "Slide the larger black cube at the back." 1/1
34
+ 24 lift black pyramid behind larger "Lift the larger black pyramid at the back." 0/1
35
+ 25 pull green cube middle small "Pull the small green cube in the middle." 0/1
36
+ 26 pull orange cube right large "Pull the large orange cube on the right." 0/1
37
+ 27 grasp yellow cup right large "Grasp the large yellow cup on the right." 0/1
38
+ 28 rotate green cube front larger "Rotate the larger green cube in front." 1/1
39
+ 29 grasp yellow cup front smaller "Grasp the smaller yellow cup in front." 1/1
40
+ 30 lift orange cube middle larger "Lift the larger orange cube in the middle." 1/1
41
+ 31 rotate green cube right small "Rotate the small green cube on the right." 1/1
42
+ 32 slide blue sphere middle large "Slide the large blue sphere in the middle." 1/1
43
+ 33 rotate yellow car left smaller "Rotate the smaller yellow car on the left." 0/1
44
+ 34 grasp blue star middle larger "Grasp the larger blue star in the middle." 0/1
45
+ 35 rotate orange star behind smaller "Rotate the smaller orange star at the back." 0/1
46
+ 36 push yellow cup middle large "Push the large yellow cup in the middle." 1/1
47
+ 37 slide yellow car right small "Slide the small yellow car on the right." 1/1
48
+ 38 grasp yellow car left smaller "Grasp the smaller yellow car on the left." 0/1
49
+ 39 slide black cube front smaller "Slide the smaller black cube in front." 1/1
50
+ 40 push green cube front large "Push the large green cube in front." 0/1
51
+ 41 lift green car behind large "Lift the large green car at the back." 1/1
52
+ 42 slide yellow car middle smaller "Slide the smaller yellow car in the middle." 0/1
53
+ 43 pull green car middle larger "Pull the larger green car in the middle." 0/1
54
+ 44 grasp blue sphere front small "Grasp the small blue sphere in front." 0/1
55
+ 45 grasp red star right small "Grasp the small red star on the right." 0/1
56
+ 46 pull blue star behind smaller "Pull the smaller blue star at the back." 0/1
57
+ 47 grasp red sphere left large "Grasp the large red sphere on the left." 1/1
58
+ 48 push green cup right large "Push the large green cup on the right." 0/1
59
+ 49 push orange car front large "Push the large orange car in front." 0/1
60
+ 50 lift black cube left small "Lift the small black cube on the left." 1/1
61
+ 51 lift black star left smaller "Lift the smaller black star on the left." 1/1
62
+ 52 lift blue pyramid behind large "Lift the large blue pyramid at the back." 0/1
63
+ 53 lift black car front small "Lift the small black car in front." 1/1
64
+ 54 grasp yellow car middle small "Grasp the small yellow car in the middle." 0/1
65
+ 55 slide orange pyramid left small "Slide the small orange pyramid on the left." 1/1
66
+ 56 lift black sphere left smaller "Lift the smaller black sphere on the left." 0/1
67
+ 57 lift orange cup front larger "Lift the larger orange cup in front." 1/1
68
+ 58 push blue sphere front large "Push the large blue sphere in front." 0/1
69
+ 59 pull blue car front smaller "Pull the smaller blue car in front." 0/1
70
+ 60 push orange sphere right large "Push the large orange sphere on the right." 1/1
71
+ 61 rotate blue sphere left small "Rotate the small blue sphere on the left." 1/1
72
+ 62 grasp blue star front larger "Grasp the larger blue star in front." 0/1
73
+ 63 slide black cube right smaller "Slide the smaller black cube on the right." 0/1
74
+ 64 pull blue car middle small "Pull the small blue car in the middle." 0/1
75
+ 65 push green pyramid middle large "Push the large green pyramid in the middle." 1/1
76
+ 66 pull black pyramid left small "Pull the small black pyramid on the left." 0/1
77
+ 67 grasp blue pyramid behind large "Grasp the large blue pyramid at the back." 1/1
78
+ 68 lift orange car right smaller "Lift the smaller orange car on the right." 1/1
79
+ 69 pull green sphere behind large "Pull the large green sphere at the back." 0/1
80
+ 70 grasp yellow sphere front small "Grasp the small yellow sphere in front." 0/1
81
+ 71 slide orange pyramid front smaller "Slide the smaller orange pyramid in front." 0/1
82
+ 72 lift yellow cube middle larger "Lift the larger yellow cube in the middle." 1/1
83
+ 73 lift yellow star front larger "Lift the larger yellow star in front." 0/1
84
+ 74 push green cube front small "Push the small green cube in front." 0/1
85
+ 75 push orange sphere left small "Push the small orange sphere on the left." 1/1
86
+ 76 rotate orange pyramid behind small "Rotate the small orange pyramid at the back." 0/1
87
+ 77 slide red pyramid behind small "Slide the small red pyramid at the back." 1/1
88
+ 78 lift red star front small "Lift the small red star in front." 1/1
89
+ 79 push green car middle small "Push the small green car in the middle." 1/1
90
+ 80 grasp red cube front small "Grasp the small red cube in front." 0/1
91
+ 81 pull red cup front larger "Pull the larger red cup in front." 1/1
92
+ 82 pull red sphere middle large "Pull the large red sphere in the middle." 1/1
93
+ 83 lift green sphere front smaller "Lift the smaller green sphere in front." 1/1
94
+ 84 push yellow car left smaller "Push the smaller yellow car on the left." 0/1
95
+ 85 rotate blue cup behind small "Rotate the small blue cup at the back." 0/1
96
+ 86 lift yellow cup right smaller "Lift the smaller yellow cup on the right." 1/1
97
+ 87 pull red star left large "Pull the large red star on the left." 1/1
98
+ 88 lift red car front large "Lift the large red car in front." 0/1
99
+ 89 slide yellow sphere right larger "Slide the larger yellow sphere on the right." 0/1
100
+ 90 lift orange cup behind larger "Lift the larger orange cup at the back." 0/1
101
+ 91 lift red pyramid behind smaller "Lift the smaller red pyramid at the back." 0/1
102
+ 92 push red pyramid behind larger "Push the larger red pyramid at the back." 0/1
103
+ 93 pull blue cup behind small "Pull the small blue cup at the back." 0/1
104
+ 94 lift yellow car front smaller "Lift the smaller yellow car in front." 0/1
105
+ 95 grasp red cup front larger "Grasp the larger red cup in front." 0/1
106
+ 96 rotate red cube front smaller "Rotate the smaller red cube in front." 1/1
107
+ 97 lift black car right smaller "Lift the smaller black car on the right." 1/1
108
+ 98 lift orange cup right small "Lift the small orange cup on the right." 1/1
109
+ 99 pull green pyramid right smaller "Pull the smaller green pyramid on the right." 0/1
110
+ 100 pull blue sphere left large "Pull the large blue sphere on the left." 1/1
111
+ 101 push green star front larger "Push the larger green star in front." 0/1
112
+ 102 rotate red pyramid left larger "Rotate the larger red pyramid on the left." 0/1
113
+ 103 rotate red car right larger "Rotate the larger red car on the right." 1/1
114
+ 104 pull black pyramid right small "Pull the small black pyramid on the right." 0/1
115
+ 105 slide black cup behind smaller "Slide the smaller black cup at the back." 0/1
116
+ 106 lift orange cube left smaller "Lift the smaller orange cube on the left." 1/1
117
+ 107 grasp red car middle large "Grasp the large red car in the middle." 0/1
118
+ 108 rotate blue pyramid behind larger "Rotate the larger blue pyramid at the back." 0/1
119
+ 109 push blue sphere right larger "Push the larger blue sphere on the right." 1/1
120
+ 110 lift orange sphere behind larger "Lift the larger orange sphere at the back." 0/1
121
+ 111 pull red cup right larger "Pull the larger red cup on the right." 0/1
122
+ 112 push orange star right smaller "Push the smaller orange star on the right." 1/1
123
+ 113 grasp green sphere middle large "Grasp the large green sphere in the middle." 1/1
124
+ 114 rotate green pyramid left large "Rotate the large green pyramid on the left." 1/1
125
+ 115 grasp green star front smaller "Grasp the smaller green star in front." 1/1
126
+ 116 rotate blue pyramid right larger "Rotate the larger blue pyramid on the right." 0/1
127
+ 117 grasp orange car front large "Grasp the large orange car in front." 1/1
128
+ 118 lift orange star behind smaller "Lift the smaller orange star at the back." 0/1
129
+ 119 grasp black cup behind smaller "Grasp the smaller black cup at the back." 0/1
130
+ 120 push blue cup left large "Push the large blue cup on the left." 1/1
131
+ 121 grasp black car left larger "Grasp the larger black car on the left." 0/1
132
+ 122 rotate red star middle large "Rotate the large red star in the middle." 0/1
133
+ 123 lift blue star behind large "Lift the large blue star at the back." 0/1
134
+ 124 lift black cup behind larger "Lift the larger black cup at the back." 0/1
135
+ 125 slide black star front larger "Slide the larger black star in front." 1/1
136
+ 126 lift green star front large "Lift the large green star in front." 1/1
137
+ 127 grasp orange sphere front large "Grasp the large orange sphere in front." 0/1
138
+ 128 grasp yellow car front larger "Grasp the larger yellow car in front." 0/1
139
+ 129 push yellow cup right larger "Push the larger yellow cup on the right." 1/1
140
+ 130 slide yellow car behind large "Slide the large yellow car at the back." 1/1
141
+ 131 slide yellow cup right small "Slide the small yellow cup on the right." 1/1
142
+ 132 grasp red sphere middle smaller "Grasp the smaller red sphere in the middle." 1/1
143
+ 133 pull black car left smaller "Pull the smaller black car on the left." 0/1
144
+ 134 grasp yellow cube behind larger "Grasp the larger yellow cube at the back." 1/1
145
+ 135 push orange pyramid right larger "Push the larger orange pyramid on the right." 1/1
146
+ 136 pull green star left small "Pull the small green star on the left." 1/1
147
+ 137 pull orange car middle large "Pull the large orange car in the middle." 0/1
148
+ 138 lift blue cube right larger "Lift the larger blue cube on the right." 0/1
149
+ 139 lift black sphere behind larger "Lift the larger black sphere at the back." 1/1
150
+ 140 slide red pyramid middle small "Slide the small red pyramid in the middle." 1/1
151
+ 141 push black pyramid right larger "Push the larger black pyramid on the right." 0/1
152
+ 142 pull blue car front large "Pull the large blue car in front." 0/1
153
+ 143 rotate red cup left small "Rotate the small red cup on the left." 1/1
154
+ 144 pull green cup front larger "Pull the larger green cup in front." 1/1
155
+ 145 rotate black star middle smaller "Rotate the smaller black star in the middle." 1/1
156
+ 146 push orange sphere middle smaller "Push the smaller orange sphere in the middle." 1/1
157
+ 147 grasp green sphere middle larger "Grasp the larger green sphere in the middle." 0/1
158
+ 148 rotate yellow cup middle large "Rotate the large yellow cup in the middle." 1/1
159
+ 149 slide blue star middle smaller "Slide the smaller blue star in the middle." 1/1
160
+ 150 slide red cube behind smaller "Slide the smaller red cube at the back." 0/1
161
+ 151 slide blue cube left small "Slide the small blue cube on the left." 1/1
162
+ 152 grasp yellow cup front large "Grasp the large yellow cup in front." 0/1
163
+ 153 grasp blue cube front larger "Grasp the larger blue cube in front." 1/1
164
+ 154 grasp green cube front smaller "Grasp the smaller green cube in front." 0/1
165
+ 155 push orange star middle large "Push the large orange star in the middle." 0/1
166
+ 156 pull green cup left larger "Pull the larger green cup on the left." 1/1
167
+ 157 grasp yellow cube middle large "Grasp the large yellow cube in the middle." 1/1
168
+ 158 grasp green cube left small "Grasp the small green cube on the left." 1/1
169
+ 159 push green car left large "Push the large green car on the left." 1/1
170
+ 160 slide red cup right large "Slide the large red cup on the right." 1/1
171
+ 161 push black cup middle larger "Push the larger black cup in the middle." 0/1
172
+ 162 pull red car behind larger "Pull the larger red car at the back." 0/1
173
+ 163 slide green pyramid left larger "Slide the larger green pyramid on the left." 1/1
174
+ 164 slide orange pyramid behind small "Slide the small orange pyramid at the back." 1/1
175
+ 165 grasp black pyramid left small "Grasp the small black pyramid on the left." 0/1
176
+ 166 push yellow pyramid middle larger "Push the larger yellow pyramid in the middle." 0/1
177
+ 167 slide orange star left large "Slide the large orange star on the left." 1/1
178
+ 168 slide orange star front large "Slide the large orange star in front." 0/1
179
+ 169 grasp orange pyramid middle small "Grasp the small orange pyramid in the middle." 1/1
180
+ 170 lift red sphere behind large "Lift the large red sphere at the back." 0/1
181
+ 171 grasp red sphere behind large "Grasp the large red sphere at the back." 0/1
182
+ 172 slide black cup right smaller "Slide the smaller black cup on the right." 1/1
183
+ 173 lift green pyramid right larger "Lift the larger green pyramid on the right." 0/1
184
+ 174 slide blue cube middle small "Slide the small blue cube in the middle." 1/1
185
+ 175 push green cup front smaller "Push the smaller green cup in front." 1/1
186
+ 176 grasp blue cup behind larger "Grasp the larger blue cup at the back." 0/1
187
+ 177 slide green cup left smaller "Slide the smaller green cup on the left." 1/1
188
+ 178 grasp blue pyramid behind larger "Grasp the larger blue pyramid at the back." 1/1
189
+ 179 pull red star behind larger "Pull the larger red star at the back." 0/1
190
+ 180 pull red sphere behind larger "Pull the larger red sphere at the back." 0/1
191
+ 181 slide orange cup front larger "Slide the larger orange cup in front." 1/1
192
+ 182 pull black cup left small "Pull the small black cup on the left." 0/1
193
+ 183 lift red cube right large "Lift the large red cube on the right." 1/1
194
+ 184 push green star right larger "Push the larger green star on the right." 0/1
195
+ 185 pull yellow pyramid behind larger "Pull the larger yellow pyramid at the back." 0/1
196
+ 186 lift blue star front small "Lift the small blue star in front." 0/1
197
+ 187 rotate green cup front small "Rotate the small green cup in front." 1/1
198
+ 188 slide blue star left small "Slide the small blue star on the left." 0/1
199
+ 189 lift blue cube behind larger "Lift the larger blue cube at the back." 1/1
200
+ 190 rotate red cube right larger "Rotate the larger red cube on the right." 1/1
201
+ 191 lift yellow pyramid front small "Lift the small yellow pyramid in front." 1/1
202
+ 192 push blue cup middle smaller "Push the smaller blue cup in the middle." 0/1
203
+ 193 slide yellow star front larger "Slide the larger yellow star in front." 0/1
204
+ 194 rotate red car behind large "Rotate the large red car at the back." 1/1
205
+ 195 lift green car right small "Lift the small green car on the right." 0/1
206
+ 196 slide black cube left smaller "Slide the smaller black cube on the left." 1/1
207
+ 197 lift red sphere behind small "Lift the small red sphere at the back." 0/1
208
+ 198 lift orange car middle larger "Lift the larger orange car in the middle." 1/1
209
+ 199 push yellow sphere front smaller "Push the smaller yellow sphere in front." 0/1
210
+ 200 slide blue star right small "Slide the small blue star on the right." 1/1
211
+
212
+ overall_success=99/200 (49.5%)
results/gr00t/all_factor/all_factor_Lrandom_f50_n100/full_factor_all_factor_Lrandom_f50_n100_seed42.txt ADDED
@@ -0,0 +1,212 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Full-factor inference (GR00T N1.7) [single-process batch]
2
+ sample_n=200 sample_seed=42 total_cells=200
3
+ total_episodes_target=200 num_episodes_per_cell=1
4
+ total_episodes_actual=200
5
+ host=127.0.0.1 port=5704
6
+ sim_backend=gpu render_backend=gpu
7
+ max_episode_steps=500 seed_base=42
8
+ no_distractor_prob=0.7 replan_steps=5
9
+
10
+ index verb color shape spatial size prompt successes/total
11
+ 1 pull black car right small "Pull the small black car on the right." 0/1
12
+ 2 pull red cube right larger "Pull the larger red cube on the right." 0/1
13
+ 3 lift yellow sphere middle small "Lift the small yellow sphere in the middle." 1/1
14
+ 4 push red car behind small "Push the small red car at the back." 0/1
15
+ 5 grasp red cube middle smaller "Grasp the smaller red cube in the middle." 1/1
16
+ 6 grasp black cube front large "Grasp the large black cube in front." 0/1
17
+ 7 grasp orange sphere left smaller "Grasp the smaller orange sphere on the left." 1/1
18
+ 8 grasp black car middle large "Grasp the large black car in the middle." 0/1
19
+ 9 slide orange cup middle small "Slide the small orange cup in the middle." 0/1
20
+ 10 pull red car left large "Pull the large red car on the left." 1/1
21
+ 11 grasp blue cup middle smaller "Grasp the smaller blue cup in the middle." 1/1
22
+ 12 slide green star behind smaller "Slide the smaller green star at the back." 0/1
23
+ 13 lift orange cube left large "Lift the large orange cube on the left." 0/1
24
+ 14 rotate green sphere behind smaller "Rotate the smaller green sphere at the back." 1/1
25
+ 15 rotate green star behind larger "Rotate the larger green star at the back." 1/1
26
+ 16 pull blue cube middle large "Pull the large blue cube in the middle." 0/1
27
+ 17 pull red star right small "Pull the small red star on the right." 0/1
28
+ 18 lift red star middle small "Lift the small red star in the middle." 1/1
29
+ 19 push black cube left larger "Push the larger black cube on the left." 0/1
30
+ 20 slide red car right smaller "Slide the smaller red car on the right." 1/1
31
+ 21 rotate red star right large "Rotate the large red star on the right." 0/1
32
+ 22 slide orange car right small "Slide the small orange car on the right." 1/1
33
+ 23 slide black cube behind larger "Slide the larger black cube at the back." 0/1
34
+ 24 lift black pyramid behind larger "Lift the larger black pyramid at the back." 0/1
35
+ 25 pull green cube middle small "Pull the small green cube in the middle." 0/1
36
+ 26 pull orange cube right large "Pull the large orange cube on the right." 0/1
37
+ 27 grasp yellow cup right large "Grasp the large yellow cup on the right." 0/1
38
+ 28 rotate green cube front larger "Rotate the larger green cube in front." 1/1
39
+ 29 grasp yellow cup front smaller "Grasp the smaller yellow cup in front." 1/1
40
+ 30 lift orange cube middle larger "Lift the larger orange cube in the middle." 0/1
41
+ 31 rotate green cube right small "Rotate the small green cube on the right." 0/1
42
+ 32 slide blue sphere middle large "Slide the large blue sphere in the middle." 1/1
43
+ 33 rotate yellow car left smaller "Rotate the smaller yellow car on the left." 0/1
44
+ 34 grasp blue star middle larger "Grasp the larger blue star in the middle." 1/1
45
+ 35 rotate orange star behind smaller "Rotate the smaller orange star at the back." 1/1
46
+ 36 push yellow cup middle large "Push the large yellow cup in the middle." 1/1
47
+ 37 slide yellow car right small "Slide the small yellow car on the right." 1/1
48
+ 38 grasp yellow car left smaller "Grasp the smaller yellow car on the left." 0/1
49
+ 39 slide black cube front smaller "Slide the smaller black cube in front." 1/1
50
+ 40 push green cube front large "Push the large green cube in front." 0/1
51
+ 41 lift green car behind large "Lift the large green car at the back." 0/1
52
+ 42 slide yellow car middle smaller "Slide the smaller yellow car in the middle." 0/1
53
+ 43 pull green car middle larger "Pull the larger green car in the middle." 0/1
54
+ 44 grasp blue sphere front small "Grasp the small blue sphere in front." 0/1
55
+ 45 grasp red star right small "Grasp the small red star on the right." 0/1
56
+ 46 pull blue star behind smaller "Pull the smaller blue star at the back." 0/1
57
+ 47 grasp red sphere left large "Grasp the large red sphere on the left." 1/1
58
+ 48 push green cup right large "Push the large green cup on the right." 0/1
59
+ 49 push orange car front large "Push the large orange car in front." 0/1
60
+ 50 lift black cube left small "Lift the small black cube on the left." 0/1
61
+ 51 lift black star left smaller "Lift the smaller black star on the left." 0/1
62
+ 52 lift blue pyramid behind large "Lift the large blue pyramid at the back." 1/1
63
+ 53 lift black car front small "Lift the small black car in front." 0/1
64
+ 54 grasp yellow car middle small "Grasp the small yellow car in the middle." 1/1
65
+ 55 slide orange pyramid left small "Slide the small orange pyramid on the left." 1/1
66
+ 56 lift black sphere left smaller "Lift the smaller black sphere on the left." 1/1
67
+ 57 lift orange cup front larger "Lift the larger orange cup in front." 1/1
68
+ 58 push blue sphere front large "Push the large blue sphere in front." 0/1
69
+ 59 pull blue car front smaller "Pull the smaller blue car in front." 0/1
70
+ 60 push orange sphere right large "Push the large orange sphere on the right." 0/1
71
+ 61 rotate blue sphere left small "Rotate the small blue sphere on the left." 1/1
72
+ 62 grasp blue star front larger "Grasp the larger blue star in front." 0/1
73
+ 63 slide black cube right smaller "Slide the smaller black cube on the right." 1/1
74
+ 64 pull blue car middle small "Pull the small blue car in the middle." 0/1
75
+ 65 push green pyramid middle large "Push the large green pyramid in the middle." 0/1
76
+ 66 pull black pyramid left small "Pull the small black pyramid on the left." 0/1
77
+ 67 grasp blue pyramid behind large "Grasp the large blue pyramid at the back." 1/1
78
+ 68 lift orange car right smaller "Lift the smaller orange car on the right." 1/1
79
+ 69 pull green sphere behind large "Pull the large green sphere at the back." 0/1
80
+ 70 grasp yellow sphere front small "Grasp the small yellow sphere in front." 1/1
81
+ 71 slide orange pyramid front smaller "Slide the smaller orange pyramid in front." 1/1
82
+ 72 lift yellow cube middle larger "Lift the larger yellow cube in the middle." 1/1
83
+ 73 lift yellow star front larger "Lift the larger yellow star in front." 1/1
84
+ 74 push green cube front small "Push the small green cube in front." 0/1
85
+ 75 push orange sphere left small "Push the small orange sphere on the left." 1/1
86
+ 76 rotate orange pyramid behind small "Rotate the small orange pyramid at the back." 0/1
87
+ 77 slide red pyramid behind small "Slide the small red pyramid at the back." 0/1
88
+ 78 lift red star front small "Lift the small red star in front." 1/1
89
+ 79 push green car middle small "Push the small green car in the middle." 0/1
90
+ 80 grasp red cube front small "Grasp the small red cube in front." 1/1
91
+ 81 pull red cup front larger "Pull the larger red cup in front." 0/1
92
+ 82 pull red sphere middle large "Pull the large red sphere in the middle." 1/1
93
+ 83 lift green sphere front smaller "Lift the smaller green sphere in front." 0/1
94
+ 84 push yellow car left smaller "Push the smaller yellow car on the left." 0/1
95
+ 85 rotate blue cup behind small "Rotate the small blue cup at the back." 0/1
96
+ 86 lift yellow cup right smaller "Lift the smaller yellow cup on the right." 1/1
97
+ 87 pull red star left large "Pull the large red star on the left." 0/1
98
+ 88 lift red car front large "Lift the large red car in front." 0/1
99
+ 89 slide yellow sphere right larger "Slide the larger yellow sphere on the right." 0/1
100
+ 90 lift orange cup behind larger "Lift the larger orange cup at the back." 1/1
101
+ 91 lift red pyramid behind smaller "Lift the smaller red pyramid at the back." 0/1
102
+ 92 push red pyramid behind larger "Push the larger red pyramid at the back." 0/1
103
+ 93 pull blue cup behind small "Pull the small blue cup at the back." 0/1
104
+ 94 lift yellow car front smaller "Lift the smaller yellow car in front." 0/1
105
+ 95 grasp red cup front larger "Grasp the larger red cup in front." 1/1
106
+ 96 rotate red cube front smaller "Rotate the smaller red cube in front." 1/1
107
+ 97 lift black car right smaller "Lift the smaller black car on the right." 1/1
108
+ 98 lift orange cup right small "Lift the small orange cup on the right." 1/1
109
+ 99 pull green pyramid right smaller "Pull the smaller green pyramid on the right." 0/1
110
+ 100 pull blue sphere left large "Pull the large blue sphere on the left." 1/1
111
+ 101 push green star front larger "Push the larger green star in front." 0/1
112
+ 102 rotate red pyramid left larger "Rotate the larger red pyramid on the left." 0/1
113
+ 103 rotate red car right larger "Rotate the larger red car on the right." 1/1
114
+ 104 pull black pyramid right small "Pull the small black pyramid on the right." 0/1
115
+ 105 slide black cup behind smaller "Slide the smaller black cup at the back." 0/1
116
+ 106 lift orange cube left smaller "Lift the smaller orange cube on the left." 1/1
117
+ 107 grasp red car middle large "Grasp the large red car in the middle." 0/1
118
+ 108 rotate blue pyramid behind larger "Rotate the larger blue pyramid at the back." 0/1
119
+ 109 push blue sphere right larger "Push the larger blue sphere on the right." 1/1
120
+ 110 lift orange sphere behind larger "Lift the larger orange sphere at the back." 0/1
121
+ 111 pull red cup right larger "Pull the larger red cup on the right." 0/1
122
+ 112 push orange star right smaller "Push the smaller orange star on the right." 0/1
123
+ 113 grasp green sphere middle large "Grasp the large green sphere in the middle." 1/1
124
+ 114 rotate green pyramid left large "Rotate the large green pyramid on the left." 0/1
125
+ 115 grasp green star front smaller "Grasp the smaller green star in front." 0/1
126
+ 116 rotate blue pyramid right larger "Rotate the larger blue pyramid on the right." 1/1
127
+ 117 grasp orange car front large "Grasp the large orange car in front." 0/1
128
+ 118 lift orange star behind smaller "Lift the smaller orange star at the back." 1/1
129
+ 119 grasp black cup behind smaller "Grasp the smaller black cup at the back." 0/1
130
+ 120 push blue cup left large "Push the large blue cup on the left." 1/1
131
+ 121 grasp black car left larger "Grasp the larger black car on the left." 0/1
132
+ 122 rotate red star middle large "Rotate the large red star in the middle." 1/1
133
+ 123 lift blue star behind large "Lift the large blue star at the back." 1/1
134
+ 124 lift black cup behind larger "Lift the larger black cup at the back." 0/1
135
+ 125 slide black star front larger "Slide the larger black star in front." 0/1
136
+ 126 lift green star front large "Lift the large green star in front." 0/1
137
+ 127 grasp orange sphere front large "Grasp the large orange sphere in front." 0/1
138
+ 128 grasp yellow car front larger "Grasp the larger yellow car in front." 0/1
139
+ 129 push yellow cup right larger "Push the larger yellow cup on the right." 1/1
140
+ 130 slide yellow car behind large "Slide the large yellow car at the back." 1/1
141
+ 131 slide yellow cup right small "Slide the small yellow cup on the right." 0/1
142
+ 132 grasp red sphere middle smaller "Grasp the smaller red sphere in the middle." 1/1
143
+ 133 pull black car left smaller "Pull the smaller black car on the left." 0/1
144
+ 134 grasp yellow cube behind larger "Grasp the larger yellow cube at the back." 0/1
145
+ 135 push orange pyramid right larger "Push the larger orange pyramid on the right." 1/1
146
+ 136 pull green star left small "Pull the small green star on the left." 0/1
147
+ 137 pull orange car middle large "Pull the large orange car in the middle." 0/1
148
+ 138 lift blue cube right larger "Lift the larger blue cube on the right." 1/1
149
+ 139 lift black sphere behind larger "Lift the larger black sphere at the back." 1/1
150
+ 140 slide red pyramid middle small "Slide the small red pyramid in the middle." 1/1
151
+ 141 push black pyramid right larger "Push the larger black pyramid on the right." 0/1
152
+ 142 pull blue car front large "Pull the large blue car in front." 0/1
153
+ 143 rotate red cup left small "Rotate the small red cup on the left." 1/1
154
+ 144 pull green cup front larger "Pull the larger green cup in front." 1/1
155
+ 145 rotate black star middle smaller "Rotate the smaller black star in the middle." 1/1
156
+ 146 push orange sphere middle smaller "Push the smaller orange sphere in the middle." 1/1
157
+ 147 grasp green sphere middle larger "Grasp the larger green sphere in the middle." 1/1
158
+ 148 rotate yellow cup middle large "Rotate the large yellow cup in the middle." 1/1
159
+ 149 slide blue star middle smaller "Slide the smaller blue star in the middle." 0/1
160
+ 150 slide red cube behind smaller "Slide the smaller red cube at the back." 1/1
161
+ 151 slide blue cube left small "Slide the small blue cube on the left." 1/1
162
+ 152 grasp yellow cup front large "Grasp the large yellow cup in front." 1/1
163
+ 153 grasp blue cube front larger "Grasp the larger blue cube in front." 1/1
164
+ 154 grasp green cube front smaller "Grasp the smaller green cube in front." 1/1
165
+ 155 push orange star middle large "Push the large orange star in the middle." 1/1
166
+ 156 pull green cup left larger "Pull the larger green cup on the left." 1/1
167
+ 157 grasp yellow cube middle large "Grasp the large yellow cube in the middle." 0/1
168
+ 158 grasp green cube left small "Grasp the small green cube on the left." 1/1
169
+ 159 push green car left large "Push the large green car on the left." 1/1
170
+ 160 slide red cup right large "Slide the large red cup on the right." 1/1
171
+ 161 push black cup middle larger "Push the larger black cup in the middle." 1/1
172
+ 162 pull red car behind larger "Pull the larger red car at the back." 0/1
173
+ 163 slide green pyramid left larger "Slide the larger green pyramid on the left." 0/1
174
+ 164 slide orange pyramid behind small "Slide the small orange pyramid at the back." 0/1
175
+ 165 grasp black pyramid left small "Grasp the small black pyramid on the left." 0/1
176
+ 166 push yellow pyramid middle larger "Push the larger yellow pyramid in the middle." 1/1
177
+ 167 slide orange star left large "Slide the large orange star on the left." 1/1
178
+ 168 slide orange star front large "Slide the large orange star in front." 0/1
179
+ 169 grasp orange pyramid middle small "Grasp the small orange pyramid in the middle." 1/1
180
+ 170 lift red sphere behind large "Lift the large red sphere at the back." 0/1
181
+ 171 grasp red sphere behind large "Grasp the large red sphere at the back." 0/1
182
+ 172 slide black cup right smaller "Slide the smaller black cup on the right." 1/1
183
+ 173 lift green pyramid right larger "Lift the larger green pyramid on the right." 1/1
184
+ 174 slide blue cube middle small "Slide the small blue cube in the middle." 1/1
185
+ 175 push green cup front smaller "Push the smaller green cup in front." 0/1
186
+ 176 grasp blue cup behind larger "Grasp the larger blue cup at the back." 1/1
187
+ 177 slide green cup left smaller "Slide the smaller green cup on the left." 1/1
188
+ 178 grasp blue pyramid behind larger "Grasp the larger blue pyramid at the back." 0/1
189
+ 179 pull red star behind larger "Pull the larger red star at the back." 0/1
190
+ 180 pull red sphere behind larger "Pull the larger red sphere at the back." 0/1
191
+ 181 slide orange cup front larger "Slide the larger orange cup in front." 1/1
192
+ 182 pull black cup left small "Pull the small black cup on the left." 0/1
193
+ 183 lift red cube right large "Lift the large red cube on the right." 1/1
194
+ 184 push green star right larger "Push the larger green star on the right." 1/1
195
+ 185 pull yellow pyramid behind larger "Pull the larger yellow pyramid at the back." 0/1
196
+ 186 lift blue star front small "Lift the small blue star in front." 0/1
197
+ 187 rotate green cup front small "Rotate the small green cup in front." 0/1
198
+ 188 slide blue star left small "Slide the small blue star on the left." 1/1
199
+ 189 lift blue cube behind larger "Lift the larger blue cube at the back." 0/1
200
+ 190 rotate red cube right larger "Rotate the larger red cube on the right." 1/1
201
+ 191 lift yellow pyramid front small "Lift the small yellow pyramid in front." 0/1
202
+ 192 push blue cup middle smaller "Push the smaller blue cup in the middle." 1/1
203
+ 193 slide yellow star front larger "Slide the larger yellow star in front." 0/1
204
+ 194 rotate red car behind large "Rotate the large red car at the back." 0/1
205
+ 195 lift green car right small "Lift the small green car on the right." 0/1
206
+ 196 slide black cube left smaller "Slide the smaller black cube on the left." 1/1
207
+ 197 lift red sphere behind small "Lift the small red sphere at the back." 1/1
208
+ 198 lift orange car middle larger "Lift the larger orange car in the middle." 1/1
209
+ 199 push yellow sphere front smaller "Push the smaller yellow sphere in front." 0/1
210
+ 200 slide blue star right small "Slide the small blue star on the right." 0/1
211
+
212
+ overall_success=93/200 (46.5%)
results/gr00t/all_factor/all_factor_Lrandom_f50_n200/SUMMARY.txt ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ # all_factor_Lrandom_f50_n200 — full-factor TASK-aligned, single-process batch (sample_n=200 seed=42, 200 eps, max_steps=500, no_distractor=0.70, default difficulty, sim=gpu)
2
+ seed40: 86/200 (43.0%)
3
+ seed41: 72/200 (36.0%)
4
+ seed42: 88/200 (44.0%)
5
+ AVG over 3 seed(s): 41.0%
results/gr00t/all_factor/all_factor_Lrandom_f50_n200/full_factor_all_factor_Lrandom_f50_n200_seed40.txt ADDED
@@ -0,0 +1,212 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Full-factor inference (GR00T N1.7) [single-process batch]
2
+ sample_n=200 sample_seed=42 total_cells=200
3
+ total_episodes_target=200 num_episodes_per_cell=1
4
+ total_episodes_actual=200
5
+ host=127.0.0.1 port=5707
6
+ sim_backend=gpu render_backend=gpu
7
+ max_episode_steps=500 seed_base=40
8
+ no_distractor_prob=0.7 replan_steps=5
9
+
10
+ index verb color shape spatial size prompt successes/total
11
+ 1 pull black car right small "Pull the small black car on the right." 0/1
12
+ 2 pull red cube right larger "Pull the larger red cube on the right." 0/1
13
+ 3 lift yellow sphere middle small "Lift the small yellow sphere in the middle." 0/1
14
+ 4 push red car behind small "Push the small red car at the back." 0/1
15
+ 5 grasp red cube middle smaller "Grasp the smaller red cube in the middle." 1/1
16
+ 6 grasp black cube front large "Grasp the large black cube in front." 0/1
17
+ 7 grasp orange sphere left smaller "Grasp the smaller orange sphere on the left." 1/1
18
+ 8 grasp black car middle large "Grasp the large black car in the middle." 1/1
19
+ 9 slide orange cup middle small "Slide the small orange cup in the middle." 0/1
20
+ 10 pull red car left large "Pull the large red car on the left." 0/1
21
+ 11 grasp blue cup middle smaller "Grasp the smaller blue cup in the middle." 1/1
22
+ 12 slide green star behind smaller "Slide the smaller green star at the back." 1/1
23
+ 13 lift orange cube left large "Lift the large orange cube on the left." 1/1
24
+ 14 rotate green sphere behind smaller "Rotate the smaller green sphere at the back." 1/1
25
+ 15 rotate green star behind larger "Rotate the larger green star at the back." 0/1
26
+ 16 pull blue cube middle large "Pull the large blue cube in the middle." 0/1
27
+ 17 pull red star right small "Pull the small red star on the right." 0/1
28
+ 18 lift red star middle small "Lift the small red star in the middle." 0/1
29
+ 19 push black cube left larger "Push the larger black cube on the left." 0/1
30
+ 20 slide red car right smaller "Slide the smaller red car on the right." 0/1
31
+ 21 rotate red star right large "Rotate the large red star on the right." 0/1
32
+ 22 slide orange car right small "Slide the small orange car on the right." 1/1
33
+ 23 slide black cube behind larger "Slide the larger black cube at the back." 1/1
34
+ 24 lift black pyramid behind larger "Lift the larger black pyramid at the back." 0/1
35
+ 25 pull green cube middle small "Pull the small green cube in the middle." 0/1
36
+ 26 pull orange cube right large "Pull the large orange cube on the right." 0/1
37
+ 27 grasp yellow cup right large "Grasp the large yellow cup on the right." 0/1
38
+ 28 rotate green cube front larger "Rotate the larger green cube in front." 1/1
39
+ 29 grasp yellow cup front smaller "Grasp the smaller yellow cup in front." 0/1
40
+ 30 lift orange cube middle larger "Lift the larger orange cube in the middle." 0/1
41
+ 31 rotate green cube right small "Rotate the small green cube on the right." 1/1
42
+ 32 slide blue sphere middle large "Slide the large blue sphere in the middle." 0/1
43
+ 33 rotate yellow car left smaller "Rotate the smaller yellow car on the left." 1/1
44
+ 34 grasp blue star middle larger "Grasp the larger blue star in the middle." 0/1
45
+ 35 rotate orange star behind smaller "Rotate the smaller orange star at the back." 0/1
46
+ 36 push yellow cup middle large "Push the large yellow cup in the middle." 0/1
47
+ 37 slide yellow car right small "Slide the small yellow car on the right." 1/1
48
+ 38 grasp yellow car left smaller "Grasp the smaller yellow car on the left." 0/1
49
+ 39 slide black cube front smaller "Slide the smaller black cube in front." 1/1
50
+ 40 push green cube front large "Push the large green cube in front." 1/1
51
+ 41 lift green car behind large "Lift the large green car at the back." 1/1
52
+ 42 slide yellow car middle smaller "Slide the smaller yellow car in the middle." 1/1
53
+ 43 pull green car middle larger "Pull the larger green car in the middle." 0/1
54
+ 44 grasp blue sphere front small "Grasp the small blue sphere in front." 1/1
55
+ 45 grasp red star right small "Grasp the small red star on the right." 0/1
56
+ 46 pull blue star behind smaller "Pull the smaller blue star at the back." 0/1
57
+ 47 grasp red sphere left large "Grasp the large red sphere on the left." 1/1
58
+ 48 push green cup right large "Push the large green cup on the right." 1/1
59
+ 49 push orange car front large "Push the large orange car in front." 0/1
60
+ 50 lift black cube left small "Lift the small black cube on the left." 1/1
61
+ 51 lift black star left smaller "Lift the smaller black star on the left." 0/1
62
+ 52 lift blue pyramid behind large "Lift the large blue pyramid at the back." 0/1
63
+ 53 lift black car front small "Lift the small black car in front." 0/1
64
+ 54 grasp yellow car middle small "Grasp the small yellow car in the middle." 1/1
65
+ 55 slide orange pyramid left small "Slide the small orange pyramid on the left." 0/1
66
+ 56 lift black sphere left smaller "Lift the smaller black sphere on the left." 1/1
67
+ 57 lift orange cup front larger "Lift the larger orange cup in front." 0/1
68
+ 58 push blue sphere front large "Push the large blue sphere in front." 0/1
69
+ 59 pull blue car front smaller "Pull the smaller blue car in front." 0/1
70
+ 60 push orange sphere right large "Push the large orange sphere on the right." 0/1
71
+ 61 rotate blue sphere left small "Rotate the small blue sphere on the left." 1/1
72
+ 62 grasp blue star front larger "Grasp the larger blue star in front." 1/1
73
+ 63 slide black cube right smaller "Slide the smaller black cube on the right." 1/1
74
+ 64 pull blue car middle small "Pull the small blue car in the middle." 0/1
75
+ 65 push green pyramid middle large "Push the large green pyramid in the middle." 0/1
76
+ 66 pull black pyramid left small "Pull the small black pyramid on the left." 0/1
77
+ 67 grasp blue pyramid behind large "Grasp the large blue pyramid at the back." 0/1
78
+ 68 lift orange car right smaller "Lift the smaller orange car on the right." 0/1
79
+ 69 pull green sphere behind large "Pull the large green sphere at the back." 0/1
80
+ 70 grasp yellow sphere front small "Grasp the small yellow sphere in front." 1/1
81
+ 71 slide orange pyramid front smaller "Slide the smaller orange pyramid in front." 1/1
82
+ 72 lift yellow cube middle larger "Lift the larger yellow cube in the middle." 0/1
83
+ 73 lift yellow star front larger "Lift the larger yellow star in front." 1/1
84
+ 74 push green cube front small "Push the small green cube in front." 1/1
85
+ 75 push orange sphere left small "Push the small orange sphere on the left." 1/1
86
+ 76 rotate orange pyramid behind small "Rotate the small orange pyramid at the back." 0/1
87
+ 77 slide red pyramid behind small "Slide the small red pyramid at the back." 1/1
88
+ 78 lift red star front small "Lift the small red star in front." 1/1
89
+ 79 push green car middle small "Push the small green car in the middle." 0/1
90
+ 80 grasp red cube front small "Grasp the small red cube in front." 1/1
91
+ 81 pull red cup front larger "Pull the larger red cup in front." 1/1
92
+ 82 pull red sphere middle large "Pull the large red sphere in the middle." 1/1
93
+ 83 lift green sphere front smaller "Lift the smaller green sphere in front." 0/1
94
+ 84 push yellow car left smaller "Push the smaller yellow car on the left." 0/1
95
+ 85 rotate blue cup behind small "Rotate the small blue cup at the back." 1/1
96
+ 86 lift yellow cup right smaller "Lift the smaller yellow cup on the right." 1/1
97
+ 87 pull red star left large "Pull the large red star on the left." 0/1
98
+ 88 lift red car front large "Lift the large red car in front." 0/1
99
+ 89 slide yellow sphere right larger "Slide the larger yellow sphere on the right." 0/1
100
+ 90 lift orange cup behind larger "Lift the larger orange cup at the back." 1/1
101
+ 91 lift red pyramid behind smaller "Lift the smaller red pyramid at the back." 0/1
102
+ 92 push red pyramid behind larger "Push the larger red pyramid at the back." 1/1
103
+ 93 pull blue cup behind small "Pull the small blue cup at the back." 0/1
104
+ 94 lift yellow car front smaller "Lift the smaller yellow car in front." 0/1
105
+ 95 grasp red cup front larger "Grasp the larger red cup in front." 0/1
106
+ 96 rotate red cube front smaller "Rotate the smaller red cube in front." 1/1
107
+ 97 lift black car right smaller "Lift the smaller black car on the right." 0/1
108
+ 98 lift orange cup right small "Lift the small orange cup on the right." 1/1
109
+ 99 pull green pyramid right smaller "Pull the smaller green pyramid on the right." 0/1
110
+ 100 pull blue sphere left large "Pull the large blue sphere on the left." 1/1
111
+ 101 push green star front larger "Push the larger green star in front." 0/1
112
+ 102 rotate red pyramid left larger "Rotate the larger red pyramid on the left." 0/1
113
+ 103 rotate red car right larger "Rotate the larger red car on the right." 1/1
114
+ 104 pull black pyramid right small "Pull the small black pyramid on the right." 0/1
115
+ 105 slide black cup behind smaller "Slide the smaller black cup at the back." 1/1
116
+ 106 lift orange cube left smaller "Lift the smaller orange cube on the left." 1/1
117
+ 107 grasp red car middle large "Grasp the large red car in the middle." 0/1
118
+ 108 rotate blue pyramid behind larger "Rotate the larger blue pyramid at the back." 1/1
119
+ 109 push blue sphere right larger "Push the larger blue sphere on the right." 0/1
120
+ 110 lift orange sphere behind larger "Lift the larger orange sphere at the back." 0/1
121
+ 111 pull red cup right larger "Pull the larger red cup on the right." 0/1
122
+ 112 push orange star right smaller "Push the smaller orange star on the right." 0/1
123
+ 113 grasp green sphere middle large "Grasp the large green sphere in the middle." 0/1
124
+ 114 rotate green pyramid left large "Rotate the large green pyramid on the left." 1/1
125
+ 115 grasp green star front smaller "Grasp the smaller green star in front." 0/1
126
+ 116 rotate blue pyramid right larger "Rotate the larger blue pyramid on the right." 1/1
127
+ 117 grasp orange car front large "Grasp the large orange car in front." 0/1
128
+ 118 lift orange star behind smaller "Lift the smaller orange star at the back." 0/1
129
+ 119 grasp black cup behind smaller "Grasp the smaller black cup at the back." 0/1
130
+ 120 push blue cup left large "Push the large blue cup on the left." 0/1
131
+ 121 grasp black car left larger "Grasp the larger black car on the left." 0/1
132
+ 122 rotate red star middle large "Rotate the large red star in the middle." 0/1
133
+ 123 lift blue star behind large "Lift the large blue star at the back." 1/1
134
+ 124 lift black cup behind larger "Lift the larger black cup at the back." 0/1
135
+ 125 slide black star front larger "Slide the larger black star in front." 1/1
136
+ 126 lift green star front large "Lift the large green star in front." 0/1
137
+ 127 grasp orange sphere front large "Grasp the large orange sphere in front." 1/1
138
+ 128 grasp yellow car front larger "Grasp the larger yellow car in front." 0/1
139
+ 129 push yellow cup right larger "Push the larger yellow cup on the right." 0/1
140
+ 130 slide yellow car behind large "Slide the large yellow car at the back." 1/1
141
+ 131 slide yellow cup right small "Slide the small yellow cup on the right." 1/1
142
+ 132 grasp red sphere middle smaller "Grasp the smaller red sphere in the middle." 1/1
143
+ 133 pull black car left smaller "Pull the smaller black car on the left." 0/1
144
+ 134 grasp yellow cube behind larger "Grasp the larger yellow cube at the back." 0/1
145
+ 135 push orange pyramid right larger "Push the larger orange pyramid on the right." 0/1
146
+ 136 pull green star left small "Pull the small green star on the left." 0/1
147
+ 137 pull orange car middle large "Pull the large orange car in the middle." 0/1
148
+ 138 lift blue cube right larger "Lift the larger blue cube on the right." 0/1
149
+ 139 lift black sphere behind larger "Lift the larger black sphere at the back." 1/1
150
+ 140 slide red pyramid middle small "Slide the small red pyramid in the middle." 0/1
151
+ 141 push black pyramid right larger "Push the larger black pyramid on the right." 0/1
152
+ 142 pull blue car front large "Pull the large blue car in front." 0/1
153
+ 143 rotate red cup left small "Rotate the small red cup on the left." 1/1
154
+ 144 pull green cup front larger "Pull the larger green cup in front." 1/1
155
+ 145 rotate black star middle smaller "Rotate the smaller black star in the middle." 0/1
156
+ 146 push orange sphere middle smaller "Push the smaller orange sphere in the middle." 1/1
157
+ 147 grasp green sphere middle larger "Grasp the larger green sphere in the middle." 1/1
158
+ 148 rotate yellow cup middle large "Rotate the large yellow cup in the middle." 1/1
159
+ 149 slide blue star middle smaller "Slide the smaller blue star in the middle." 0/1
160
+ 150 slide red cube behind smaller "Slide the smaller red cube at the back." 1/1
161
+ 151 slide blue cube left small "Slide the small blue cube on the left." 1/1
162
+ 152 grasp yellow cup front large "Grasp the large yellow cup in front." 0/1
163
+ 153 grasp blue cube front larger "Grasp the larger blue cube in front." 1/1
164
+ 154 grasp green cube front smaller "Grasp the smaller green cube in front." 1/1
165
+ 155 push orange star middle large "Push the large orange star in the middle." 0/1
166
+ 156 pull green cup left larger "Pull the larger green cup on the left." 0/1
167
+ 157 grasp yellow cube middle large "Grasp the large yellow cube in the middle." 1/1
168
+ 158 grasp green cube left small "Grasp the small green cube on the left." 1/1
169
+ 159 push green car left large "Push the large green car on the left." 1/1
170
+ 160 slide red cup right large "Slide the large red cup on the right." 1/1
171
+ 161 push black cup middle larger "Push the larger black cup in the middle." 1/1
172
+ 162 pull red car behind larger "Pull the larger red car at the back." 0/1
173
+ 163 slide green pyramid left larger "Slide the larger green pyramid on the left." 1/1
174
+ 164 slide orange pyramid behind small "Slide the small orange pyramid at the back." 0/1
175
+ 165 grasp black pyramid left small "Grasp the small black pyramid on the left." 0/1
176
+ 166 push yellow pyramid middle larger "Push the larger yellow pyramid in the middle." 0/1
177
+ 167 slide orange star left large "Slide the large orange star on the left." 1/1
178
+ 168 slide orange star front large "Slide the large orange star in front." 0/1
179
+ 169 grasp orange pyramid middle small "Grasp the small orange pyramid in the middle." 0/1
180
+ 170 lift red sphere behind large "Lift the large red sphere at the back." 0/1
181
+ 171 grasp red sphere behind large "Grasp the large red sphere at the back." 0/1
182
+ 172 slide black cup right smaller "Slide the smaller black cup on the right." 1/1
183
+ 173 lift green pyramid right larger "Lift the larger green pyramid on the right." 1/1
184
+ 174 slide blue cube middle small "Slide the small blue cube in the middle." 1/1
185
+ 175 push green cup front smaller "Push the smaller green cup in front." 1/1
186
+ 176 grasp blue cup behind larger "Grasp the larger blue cup at the back." 0/1
187
+ 177 slide green cup left smaller "Slide the smaller green cup on the left." 1/1
188
+ 178 grasp blue pyramid behind larger "Grasp the larger blue pyramid at the back." 0/1
189
+ 179 pull red star behind larger "Pull the larger red star at the back." 0/1
190
+ 180 pull red sphere behind larger "Pull the larger red sphere at the back." 0/1
191
+ 181 slide orange cup front larger "Slide the larger orange cup in front." 1/1
192
+ 182 pull black cup left small "Pull the small black cup on the left." 1/1
193
+ 183 lift red cube right large "Lift the large red cube on the right." 0/1
194
+ 184 push green star right larger "Push the larger green star on the right." 0/1
195
+ 185 pull yellow pyramid behind larger "Pull the larger yellow pyramid at the back." 0/1
196
+ 186 lift blue star front small "Lift the small blue star in front." 1/1
197
+ 187 rotate green cup front small "Rotate the small green cup in front." 1/1
198
+ 188 slide blue star left small "Slide the small blue star on the left." 0/1
199
+ 189 lift blue cube behind larger "Lift the larger blue cube at the back." 0/1
200
+ 190 rotate red cube right larger "Rotate the larger red cube on the right." 1/1
201
+ 191 lift yellow pyramid front small "Lift the small yellow pyramid in front." 0/1
202
+ 192 push blue cup middle smaller "Push the smaller blue cup in the middle." 0/1
203
+ 193 slide yellow star front larger "Slide the larger yellow star in front." 1/1
204
+ 194 rotate red car behind large "Rotate the large red car at the back." 1/1
205
+ 195 lift green car right small "Lift the small green car on the right." 0/1
206
+ 196 slide black cube left smaller "Slide the smaller black cube on the left." 1/1
207
+ 197 lift red sphere behind small "Lift the small red sphere at the back." 0/1
208
+ 198 lift orange car middle larger "Lift the larger orange car in the middle." 1/1
209
+ 199 push yellow sphere front smaller "Push the smaller yellow sphere in front." 0/1
210
+ 200 slide blue star right small "Slide the small blue star on the right." 0/1
211
+
212
+ overall_success=86/200 (43.0%)
results/gr00t/all_factor/all_factor_Lrandom_f50_n200/full_factor_all_factor_Lrandom_f50_n200_seed41.txt ADDED
@@ -0,0 +1,212 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Full-factor inference (GR00T N1.7) [single-process batch]
2
+ sample_n=200 sample_seed=42 total_cells=200
3
+ total_episodes_target=200 num_episodes_per_cell=1
4
+ total_episodes_actual=200
5
+ host=127.0.0.1 port=5707
6
+ sim_backend=gpu render_backend=gpu
7
+ max_episode_steps=500 seed_base=41
8
+ no_distractor_prob=0.7 replan_steps=5
9
+
10
+ index verb color shape spatial size prompt successes/total
11
+ 1 pull black car right small "Pull the small black car on the right." 0/1
12
+ 2 pull red cube right larger "Pull the larger red cube on the right." 0/1
13
+ 3 lift yellow sphere middle small "Lift the small yellow sphere in the middle." 1/1
14
+ 4 push red car behind small "Push the small red car at the back." 0/1
15
+ 5 grasp red cube middle smaller "Grasp the smaller red cube in the middle." 0/1
16
+ 6 grasp black cube front large "Grasp the large black cube in front." 1/1
17
+ 7 grasp orange sphere left smaller "Grasp the smaller orange sphere on the left." 0/1
18
+ 8 grasp black car middle large "Grasp the large black car in the middle." 0/1
19
+ 9 slide orange cup middle small "Slide the small orange cup in the middle." 1/1
20
+ 10 pull red car left large "Pull the large red car on the left." 0/1
21
+ 11 grasp blue cup middle smaller "Grasp the smaller blue cup in the middle." 0/1
22
+ 12 slide green star behind smaller "Slide the smaller green star at the back." 0/1
23
+ 13 lift orange cube left large "Lift the large orange cube on the left." 0/1
24
+ 14 rotate green sphere behind smaller "Rotate the smaller green sphere at the back." 0/1
25
+ 15 rotate green star behind larger "Rotate the larger green star at the back." 0/1
26
+ 16 pull blue cube middle large "Pull the large blue cube in the middle." 0/1
27
+ 17 pull red star right small "Pull the small red star on the right." 0/1
28
+ 18 lift red star middle small "Lift the small red star in the middle." 0/1
29
+ 19 push black cube left larger "Push the larger black cube on the left." 0/1
30
+ 20 slide red car right smaller "Slide the smaller red car on the right." 0/1
31
+ 21 rotate red star right large "Rotate the large red star on the right." 0/1
32
+ 22 slide orange car right small "Slide the small orange car on the right." 1/1
33
+ 23 slide black cube behind larger "Slide the larger black cube at the back." 1/1
34
+ 24 lift black pyramid behind larger "Lift the larger black pyramid at the back." 0/1
35
+ 25 pull green cube middle small "Pull the small green cube in the middle." 0/1
36
+ 26 pull orange cube right large "Pull the large orange cube on the right." 0/1
37
+ 27 grasp yellow cup right large "Grasp the large yellow cup on the right." 0/1
38
+ 28 rotate green cube front larger "Rotate the larger green cube in front." 1/1
39
+ 29 grasp yellow cup front smaller "Grasp the smaller yellow cup in front." 1/1
40
+ 30 lift orange cube middle larger "Lift the larger orange cube in the middle." 1/1
41
+ 31 rotate green cube right small "Rotate the small green cube on the right." 1/1
42
+ 32 slide blue sphere middle large "Slide the large blue sphere in the middle." 0/1
43
+ 33 rotate yellow car left smaller "Rotate the smaller yellow car on the left." 1/1
44
+ 34 grasp blue star middle larger "Grasp the larger blue star in the middle." 0/1
45
+ 35 rotate orange star behind smaller "Rotate the smaller orange star at the back." 0/1
46
+ 36 push yellow cup middle large "Push the large yellow cup in the middle." 0/1
47
+ 37 slide yellow car right small "Slide the small yellow car on the right." 1/1
48
+ 38 grasp yellow car left smaller "Grasp the smaller yellow car on the left." 0/1
49
+ 39 slide black cube front smaller "Slide the smaller black cube in front." 1/1
50
+ 40 push green cube front large "Push the large green cube in front." 1/1
51
+ 41 lift green car behind large "Lift the large green car at the back." 1/1
52
+ 42 slide yellow car middle smaller "Slide the smaller yellow car in the middle." 0/1
53
+ 43 pull green car middle larger "Pull the larger green car in the middle." 0/1
54
+ 44 grasp blue sphere front small "Grasp the small blue sphere in front." 0/1
55
+ 45 grasp red star right small "Grasp the small red star on the right." 0/1
56
+ 46 pull blue star behind smaller "Pull the smaller blue star at the back." 0/1
57
+ 47 grasp red sphere left large "Grasp the large red sphere on the left." 1/1
58
+ 48 push green cup right large "Push the large green cup on the right." 0/1
59
+ 49 push orange car front large "Push the large orange car in front." 0/1
60
+ 50 lift black cube left small "Lift the small black cube on the left." 1/1
61
+ 51 lift black star left smaller "Lift the smaller black star on the left." 1/1
62
+ 52 lift blue pyramid behind large "Lift the large blue pyramid at the back." 0/1
63
+ 53 lift black car front small "Lift the small black car in front." 1/1
64
+ 54 grasp yellow car middle small "Grasp the small yellow car in the middle." 1/1
65
+ 55 slide orange pyramid left small "Slide the small orange pyramid on the left." 1/1
66
+ 56 lift black sphere left smaller "Lift the smaller black sphere on the left." 0/1
67
+ 57 lift orange cup front larger "Lift the larger orange cup in front." 1/1
68
+ 58 push blue sphere front large "Push the large blue sphere in front." 0/1
69
+ 59 pull blue car front smaller "Pull the smaller blue car in front." 0/1
70
+ 60 push orange sphere right large "Push the large orange sphere on the right." 1/1
71
+ 61 rotate blue sphere left small "Rotate the small blue sphere on the left." 1/1
72
+ 62 grasp blue star front larger "Grasp the larger blue star in front." 0/1
73
+ 63 slide black cube right smaller "Slide the smaller black cube on the right." 1/1
74
+ 64 pull blue car middle small "Pull the small blue car in the middle." 0/1
75
+ 65 push green pyramid middle large "Push the large green pyramid in the middle." 0/1
76
+ 66 pull black pyramid left small "Pull the small black pyramid on the left." 0/1
77
+ 67 grasp blue pyramid behind large "Grasp the large blue pyramid at the back." 0/1
78
+ 68 lift orange car right smaller "Lift the smaller orange car on the right." 1/1
79
+ 69 pull green sphere behind large "Pull the large green sphere at the back." 0/1
80
+ 70 grasp yellow sphere front small "Grasp the small yellow sphere in front." 0/1
81
+ 71 slide orange pyramid front smaller "Slide the smaller orange pyramid in front." 0/1
82
+ 72 lift yellow cube middle larger "Lift the larger yellow cube in the middle." 0/1
83
+ 73 lift yellow star front larger "Lift the larger yellow star in front." 1/1
84
+ 74 push green cube front small "Push the small green cube in front." 1/1
85
+ 75 push orange sphere left small "Push the small orange sphere on the left." 1/1
86
+ 76 rotate orange pyramid behind small "Rotate the small orange pyramid at the back." 0/1
87
+ 77 slide red pyramid behind small "Slide the small red pyramid at the back." 1/1
88
+ 78 lift red star front small "Lift the small red star in front." 0/1
89
+ 79 push green car middle small "Push the small green car in the middle." 0/1
90
+ 80 grasp red cube front small "Grasp the small red cube in front." 1/1
91
+ 81 pull red cup front larger "Pull the larger red cup in front." 0/1
92
+ 82 pull red sphere middle large "Pull the large red sphere in the middle." 1/1
93
+ 83 lift green sphere front smaller "Lift the smaller green sphere in front." 0/1
94
+ 84 push yellow car left smaller "Push the smaller yellow car on the left." 0/1
95
+ 85 rotate blue cup behind small "Rotate the small blue cup at the back." 1/1
96
+ 86 lift yellow cup right smaller "Lift the smaller yellow cup on the right." 1/1
97
+ 87 pull red star left large "Pull the large red star on the left." 0/1
98
+ 88 lift red car front large "Lift the large red car in front." 0/1
99
+ 89 slide yellow sphere right larger "Slide the larger yellow sphere on the right." 1/1
100
+ 90 lift orange cup behind larger "Lift the larger orange cup at the back." 0/1
101
+ 91 lift red pyramid behind smaller "Lift the smaller red pyramid at the back." 1/1
102
+ 92 push red pyramid behind larger "Push the larger red pyramid at the back." 0/1
103
+ 93 pull blue cup behind small "Pull the small blue cup at the back." 0/1
104
+ 94 lift yellow car front smaller "Lift the smaller yellow car in front." 1/1
105
+ 95 grasp red cup front larger "Grasp the larger red cup in front." 1/1
106
+ 96 rotate red cube front smaller "Rotate the smaller red cube in front." 1/1
107
+ 97 lift black car right smaller "Lift the smaller black car on the right." 1/1
108
+ 98 lift orange cup right small "Lift the small orange cup on the right." 1/1
109
+ 99 pull green pyramid right smaller "Pull the smaller green pyramid on the right." 0/1
110
+ 100 pull blue sphere left large "Pull the large blue sphere on the left." 1/1
111
+ 101 push green star front larger "Push the larger green star in front." 0/1
112
+ 102 rotate red pyramid left larger "Rotate the larger red pyramid on the left." 0/1
113
+ 103 rotate red car right larger "Rotate the larger red car on the right." 1/1
114
+ 104 pull black pyramid right small "Pull the small black pyramid on the right." 0/1
115
+ 105 slide black cup behind smaller "Slide the smaller black cup at the back." 1/1
116
+ 106 lift orange cube left smaller "Lift the smaller orange cube on the left." 0/1
117
+ 107 grasp red car middle large "Grasp the large red car in the middle." 0/1
118
+ 108 rotate blue pyramid behind larger "Rotate the larger blue pyramid at the back." 0/1
119
+ 109 push blue sphere right larger "Push the larger blue sphere on the right." 0/1
120
+ 110 lift orange sphere behind larger "Lift the larger orange sphere at the back." 0/1
121
+ 111 pull red cup right larger "Pull the larger red cup on the right." 0/1
122
+ 112 push orange star right smaller "Push the smaller orange star on the right." 0/1
123
+ 113 grasp green sphere middle large "Grasp the large green sphere in the middle." 1/1
124
+ 114 rotate green pyramid left large "Rotate the large green pyramid on the left." 1/1
125
+ 115 grasp green star front smaller "Grasp the smaller green star in front." 0/1
126
+ 116 rotate blue pyramid right larger "Rotate the larger blue pyramid on the right." 1/1
127
+ 117 grasp orange car front large "Grasp the large orange car in front." 1/1
128
+ 118 lift orange star behind smaller "Lift the smaller orange star at the back." 0/1
129
+ 119 grasp black cup behind smaller "Grasp the smaller black cup at the back." 0/1
130
+ 120 push blue cup left large "Push the large blue cup on the left." 0/1
131
+ 121 grasp black car left larger "Grasp the larger black car on the left." 0/1
132
+ 122 rotate red star middle large "Rotate the large red star in the middle." 1/1
133
+ 123 lift blue star behind large "Lift the large blue star at the back." 0/1
134
+ 124 lift black cup behind larger "Lift the larger black cup at the back." 0/1
135
+ 125 slide black star front larger "Slide the larger black star in front." 0/1
136
+ 126 lift green star front large "Lift the large green star in front." 0/1
137
+ 127 grasp orange sphere front large "Grasp the large orange sphere in front." 0/1
138
+ 128 grasp yellow car front larger "Grasp the larger yellow car in front." 0/1
139
+ 129 push yellow cup right larger "Push the larger yellow cup on the right." 0/1
140
+ 130 slide yellow car behind large "Slide the large yellow car at the back." 1/1
141
+ 131 slide yellow cup right small "Slide the small yellow cup on the right." 0/1
142
+ 132 grasp red sphere middle smaller "Grasp the smaller red sphere in the middle." 1/1
143
+ 133 pull black car left smaller "Pull the smaller black car on the left." 0/1
144
+ 134 grasp yellow cube behind larger "Grasp the larger yellow cube at the back." 0/1
145
+ 135 push orange pyramid right larger "Push the larger orange pyramid on the right." 0/1
146
+ 136 pull green star left small "Pull the small green star on the left." 0/1
147
+ 137 pull orange car middle large "Pull the large orange car in the middle." 0/1
148
+ 138 lift blue cube right larger "Lift the larger blue cube on the right." 1/1
149
+ 139 lift black sphere behind larger "Lift the larger black sphere at the back." 1/1
150
+ 140 slide red pyramid middle small "Slide the small red pyramid in the middle." 0/1
151
+ 141 push black pyramid right larger "Push the larger black pyramid on the right." 0/1
152
+ 142 pull blue car front large "Pull the large blue car in front." 0/1
153
+ 143 rotate red cup left small "Rotate the small red cup on the left." 0/1
154
+ 144 pull green cup front larger "Pull the larger green cup in front." 1/1
155
+ 145 rotate black star middle smaller "Rotate the smaller black star in the middle." 0/1
156
+ 146 push orange sphere middle smaller "Push the smaller orange sphere in the middle." 1/1
157
+ 147 grasp green sphere middle larger "Grasp the larger green sphere in the middle." 1/1
158
+ 148 rotate yellow cup middle large "Rotate the large yellow cup in the middle." 0/1
159
+ 149 slide blue star middle smaller "Slide the smaller blue star in the middle." 0/1
160
+ 150 slide red cube behind smaller "Slide the smaller red cube at the back." 1/1
161
+ 151 slide blue cube left small "Slide the small blue cube on the left." 1/1
162
+ 152 grasp yellow cup front large "Grasp the large yellow cup in front." 1/1
163
+ 153 grasp blue cube front larger "Grasp the larger blue cube in front." 1/1
164
+ 154 grasp green cube front smaller "Grasp the smaller green cube in front." 0/1
165
+ 155 push orange star middle large "Push the large orange star in the middle." 0/1
166
+ 156 pull green cup left larger "Pull the larger green cup on the left." 1/1
167
+ 157 grasp yellow cube middle large "Grasp the large yellow cube in the middle." 1/1
168
+ 158 grasp green cube left small "Grasp the small green cube on the left." 1/1
169
+ 159 push green car left large "Push the large green car on the left." 0/1
170
+ 160 slide red cup right large "Slide the large red cup on the right." 0/1
171
+ 161 push black cup middle larger "Push the larger black cup in the middle." 0/1
172
+ 162 pull red car behind larger "Pull the larger red car at the back." 0/1
173
+ 163 slide green pyramid left larger "Slide the larger green pyramid on the left." 1/1
174
+ 164 slide orange pyramid behind small "Slide the small orange pyramid at the back." 0/1
175
+ 165 grasp black pyramid left small "Grasp the small black pyramid on the left." 1/1
176
+ 166 push yellow pyramid middle larger "Push the larger yellow pyramid in the middle." 0/1
177
+ 167 slide orange star left large "Slide the large orange star on the left." 0/1
178
+ 168 slide orange star front large "Slide the large orange star in front." 1/1
179
+ 169 grasp orange pyramid middle small "Grasp the small orange pyramid in the middle." 0/1
180
+ 170 lift red sphere behind large "Lift the large red sphere at the back." 0/1
181
+ 171 grasp red sphere behind large "Grasp the large red sphere at the back." 0/1
182
+ 172 slide black cup right smaller "Slide the smaller black cup on the right." 1/1
183
+ 173 lift green pyramid right larger "Lift the larger green pyramid on the right." 1/1
184
+ 174 slide blue cube middle small "Slide the small blue cube in the middle." 0/1
185
+ 175 push green cup front smaller "Push the smaller green cup in front." 0/1
186
+ 176 grasp blue cup behind larger "Grasp the larger blue cup at the back." 0/1
187
+ 177 slide green cup left smaller "Slide the smaller green cup on the left." 0/1
188
+ 178 grasp blue pyramid behind larger "Grasp the larger blue pyramid at the back." 0/1
189
+ 179 pull red star behind larger "Pull the larger red star at the back." 0/1
190
+ 180 pull red sphere behind larger "Pull the larger red sphere at the back." 0/1
191
+ 181 slide orange cup front larger "Slide the larger orange cup in front." 1/1
192
+ 182 pull black cup left small "Pull the small black cup on the left." 0/1
193
+ 183 lift red cube right large "Lift the large red cube on the right." 1/1
194
+ 184 push green star right larger "Push the larger green star on the right." 0/1
195
+ 185 pull yellow pyramid behind larger "Pull the larger yellow pyramid at the back." 0/1
196
+ 186 lift blue star front small "Lift the small blue star in front." 0/1
197
+ 187 rotate green cup front small "Rotate the small green cup in front." 0/1
198
+ 188 slide blue star left small "Slide the small blue star on the left." 1/1
199
+ 189 lift blue cube behind larger "Lift the larger blue cube at the back." 1/1
200
+ 190 rotate red cube right larger "Rotate the larger red cube on the right." 0/1
201
+ 191 lift yellow pyramid front small "Lift the small yellow pyramid in front." 0/1
202
+ 192 push blue cup middle smaller "Push the smaller blue cup in the middle." 0/1
203
+ 193 slide yellow star front larger "Slide the larger yellow star in front." 0/1
204
+ 194 rotate red car behind large "Rotate the large red car at the back." 0/1
205
+ 195 lift green car right small "Lift the small green car on the right." 0/1
206
+ 196 slide black cube left smaller "Slide the smaller black cube on the left." 0/1
207
+ 197 lift red sphere behind small "Lift the small red sphere at the back." 1/1
208
+ 198 lift orange car middle larger "Lift the larger orange car in the middle." 0/1
209
+ 199 push yellow sphere front smaller "Push the smaller yellow sphere in front." 0/1
210
+ 200 slide blue star right small "Slide the small blue star on the right." 0/1
211
+
212
+ overall_success=72/200 (36.0%)
results/gr00t/all_factor/all_factor_Lrandom_f50_n200/full_factor_all_factor_Lrandom_f50_n200_seed42.txt ADDED
@@ -0,0 +1,212 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Full-factor inference (GR00T N1.7) [single-process batch]
2
+ sample_n=200 sample_seed=42 total_cells=200
3
+ total_episodes_target=200 num_episodes_per_cell=1
4
+ total_episodes_actual=200
5
+ host=127.0.0.1 port=5707
6
+ sim_backend=gpu render_backend=gpu
7
+ max_episode_steps=500 seed_base=42
8
+ no_distractor_prob=0.7 replan_steps=5
9
+
10
+ index verb color shape spatial size prompt successes/total
11
+ 1 pull black car right small "Pull the small black car on the right." 0/1
12
+ 2 pull red cube right larger "Pull the larger red cube on the right." 0/1
13
+ 3 lift yellow sphere middle small "Lift the small yellow sphere in the middle." 1/1
14
+ 4 push red car behind small "Push the small red car at the back." 0/1
15
+ 5 grasp red cube middle smaller "Grasp the smaller red cube in the middle." 1/1
16
+ 6 grasp black cube front large "Grasp the large black cube in front." 0/1
17
+ 7 grasp orange sphere left smaller "Grasp the smaller orange sphere on the left." 0/1
18
+ 8 grasp black car middle large "Grasp the large black car in the middle." 0/1
19
+ 9 slide orange cup middle small "Slide the small orange cup in the middle." 1/1
20
+ 10 pull red car left large "Pull the large red car on the left." 0/1
21
+ 11 grasp blue cup middle smaller "Grasp the smaller blue cup in the middle." 1/1
22
+ 12 slide green star behind smaller "Slide the smaller green star at the back." 0/1
23
+ 13 lift orange cube left large "Lift the large orange cube on the left." 0/1
24
+ 14 rotate green sphere behind smaller "Rotate the smaller green sphere at the back." 1/1
25
+ 15 rotate green star behind larger "Rotate the larger green star at the back." 0/1
26
+ 16 pull blue cube middle large "Pull the large blue cube in the middle." 0/1
27
+ 17 pull red star right small "Pull the small red star on the right." 0/1
28
+ 18 lift red star middle small "Lift the small red star in the middle." 0/1
29
+ 19 push black cube left larger "Push the larger black cube on the left." 1/1
30
+ 20 slide red car right smaller "Slide the smaller red car on the right." 0/1
31
+ 21 rotate red star right large "Rotate the large red star on the right." 0/1
32
+ 22 slide orange car right small "Slide the small orange car on the right." 0/1
33
+ 23 slide black cube behind larger "Slide the larger black cube at the back." 1/1
34
+ 24 lift black pyramid behind larger "Lift the larger black pyramid at the back." 0/1
35
+ 25 pull green cube middle small "Pull the small green cube in the middle." 0/1
36
+ 26 pull orange cube right large "Pull the large orange cube on the right." 0/1
37
+ 27 grasp yellow cup right large "Grasp the large yellow cup on the right." 0/1
38
+ 28 rotate green cube front larger "Rotate the larger green cube in front." 1/1
39
+ 29 grasp yellow cup front smaller "Grasp the smaller yellow cup in front." 0/1
40
+ 30 lift orange cube middle larger "Lift the larger orange cube in the middle." 1/1
41
+ 31 rotate green cube right small "Rotate the small green cube on the right." 1/1
42
+ 32 slide blue sphere middle large "Slide the large blue sphere in the middle." 1/1
43
+ 33 rotate yellow car left smaller "Rotate the smaller yellow car on the left." 1/1
44
+ 34 grasp blue star middle larger "Grasp the larger blue star in the middle." 0/1
45
+ 35 rotate orange star behind smaller "Rotate the smaller orange star at the back." 0/1
46
+ 36 push yellow cup middle large "Push the large yellow cup in the middle." 0/1
47
+ 37 slide yellow car right small "Slide the small yellow car on the right." 1/1
48
+ 38 grasp yellow car left smaller "Grasp the smaller yellow car on the left." 0/1
49
+ 39 slide black cube front smaller "Slide the smaller black cube in front." 1/1
50
+ 40 push green cube front large "Push the large green cube in front." 1/1
51
+ 41 lift green car behind large "Lift the large green car at the back." 0/1
52
+ 42 slide yellow car middle smaller "Slide the smaller yellow car in the middle." 1/1
53
+ 43 pull green car middle larger "Pull the larger green car in the middle." 0/1
54
+ 44 grasp blue sphere front small "Grasp the small blue sphere in front." 1/1
55
+ 45 grasp red star right small "Grasp the small red star on the right." 0/1
56
+ 46 pull blue star behind smaller "Pull the smaller blue star at the back." 0/1
57
+ 47 grasp red sphere left large "Grasp the large red sphere on the left." 0/1
58
+ 48 push green cup right large "Push the large green cup on the right." 0/1
59
+ 49 push orange car front large "Push the large orange car in front." 0/1
60
+ 50 lift black cube left small "Lift the small black cube on the left." 1/1
61
+ 51 lift black star left smaller "Lift the smaller black star on the left." 0/1
62
+ 52 lift blue pyramid behind large "Lift the large blue pyramid at the back." 0/1
63
+ 53 lift black car front small "Lift the small black car in front." 0/1
64
+ 54 grasp yellow car middle small "Grasp the small yellow car in the middle." 1/1
65
+ 55 slide orange pyramid left small "Slide the small orange pyramid on the left." 0/1
66
+ 56 lift black sphere left smaller "Lift the smaller black sphere on the left." 1/1
67
+ 57 lift orange cup front larger "Lift the larger orange cup in front." 1/1
68
+ 58 push blue sphere front large "Push the large blue sphere in front." 0/1
69
+ 59 pull blue car front smaller "Pull the smaller blue car in front." 0/1
70
+ 60 push orange sphere right large "Push the large orange sphere on the right." 0/1
71
+ 61 rotate blue sphere left small "Rotate the small blue sphere on the left." 1/1
72
+ 62 grasp blue star front larger "Grasp the larger blue star in front." 0/1
73
+ 63 slide black cube right smaller "Slide the smaller black cube on the right." 1/1
74
+ 64 pull blue car middle small "Pull the small blue car in the middle." 0/1
75
+ 65 push green pyramid middle large "Push the large green pyramid in the middle." 0/1
76
+ 66 pull black pyramid left small "Pull the small black pyramid on the left." 0/1
77
+ 67 grasp blue pyramid behind large "Grasp the large blue pyramid at the back." 0/1
78
+ 68 lift orange car right smaller "Lift the smaller orange car on the right." 1/1
79
+ 69 pull green sphere behind large "Pull the large green sphere at the back." 0/1
80
+ 70 grasp yellow sphere front small "Grasp the small yellow sphere in front." 1/1
81
+ 71 slide orange pyramid front smaller "Slide the smaller orange pyramid in front." 1/1
82
+ 72 lift yellow cube middle larger "Lift the larger yellow cube in the middle." 1/1
83
+ 73 lift yellow star front larger "Lift the larger yellow star in front." 0/1
84
+ 74 push green cube front small "Push the small green cube in front." 1/1
85
+ 75 push orange sphere left small "Push the small orange sphere on the left." 1/1
86
+ 76 rotate orange pyramid behind small "Rotate the small orange pyramid at the back." 1/1
87
+ 77 slide red pyramid behind small "Slide the small red pyramid at the back." 0/1
88
+ 78 lift red star front small "Lift the small red star in front." 0/1
89
+ 79 push green car middle small "Push the small green car in the middle." 0/1
90
+ 80 grasp red cube front small "Grasp the small red cube in front." 1/1
91
+ 81 pull red cup front larger "Pull the larger red cup in front." 1/1
92
+ 82 pull red sphere middle large "Pull the large red sphere in the middle." 1/1
93
+ 83 lift green sphere front smaller "Lift the smaller green sphere in front." 0/1
94
+ 84 push yellow car left smaller "Push the smaller yellow car on the left." 0/1
95
+ 85 rotate blue cup behind small "Rotate the small blue cup at the back." 0/1
96
+ 86 lift yellow cup right smaller "Lift the smaller yellow cup on the right." 1/1
97
+ 87 pull red star left large "Pull the large red star on the left." 0/1
98
+ 88 lift red car front large "Lift the large red car in front." 1/1
99
+ 89 slide yellow sphere right larger "Slide the larger yellow sphere on the right." 0/1
100
+ 90 lift orange cup behind larger "Lift the larger orange cup at the back." 1/1
101
+ 91 lift red pyramid behind smaller "Lift the smaller red pyramid at the back." 0/1
102
+ 92 push red pyramid behind larger "Push the larger red pyramid at the back." 1/1
103
+ 93 pull blue cup behind small "Pull the small blue cup at the back." 0/1
104
+ 94 lift yellow car front smaller "Lift the smaller yellow car in front." 0/1
105
+ 95 grasp red cup front larger "Grasp the larger red cup in front." 1/1
106
+ 96 rotate red cube front smaller "Rotate the smaller red cube in front." 1/1
107
+ 97 lift black car right smaller "Lift the smaller black car on the right." 1/1
108
+ 98 lift orange cup right small "Lift the small orange cup on the right." 0/1
109
+ 99 pull green pyramid right smaller "Pull the smaller green pyramid on the right." 0/1
110
+ 100 pull blue sphere left large "Pull the large blue sphere on the left." 1/1
111
+ 101 push green star front larger "Push the larger green star in front." 0/1
112
+ 102 rotate red pyramid left larger "Rotate the larger red pyramid on the left." 0/1
113
+ 103 rotate red car right larger "Rotate the larger red car on the right." 1/1
114
+ 104 pull black pyramid right small "Pull the small black pyramid on the right." 0/1
115
+ 105 slide black cup behind smaller "Slide the smaller black cup at the back." 1/1
116
+ 106 lift orange cube left smaller "Lift the smaller orange cube on the left." 1/1
117
+ 107 grasp red car middle large "Grasp the large red car in the middle." 0/1
118
+ 108 rotate blue pyramid behind larger "Rotate the larger blue pyramid at the back." 0/1
119
+ 109 push blue sphere right larger "Push the larger blue sphere on the right." 0/1
120
+ 110 lift orange sphere behind larger "Lift the larger orange sphere at the back." 0/1
121
+ 111 pull red cup right larger "Pull the larger red cup on the right." 0/1
122
+ 112 push orange star right smaller "Push the smaller orange star on the right." 0/1
123
+ 113 grasp green sphere middle large "Grasp the large green sphere in the middle." 1/1
124
+ 114 rotate green pyramid left large "Rotate the large green pyramid on the left." 0/1
125
+ 115 grasp green star front smaller "Grasp the smaller green star in front." 0/1
126
+ 116 rotate blue pyramid right larger "Rotate the larger blue pyramid on the right." 1/1
127
+ 117 grasp orange car front large "Grasp the large orange car in front." 1/1
128
+ 118 lift orange star behind smaller "Lift the smaller orange star at the back." 1/1
129
+ 119 grasp black cup behind smaller "Grasp the smaller black cup at the back." 0/1
130
+ 120 push blue cup left large "Push the large blue cup on the left." 1/1
131
+ 121 grasp black car left larger "Grasp the larger black car on the left." 0/1
132
+ 122 rotate red star middle large "Rotate the large red star in the middle." 1/1
133
+ 123 lift blue star behind large "Lift the large blue star at the back." 0/1
134
+ 124 lift black cup behind larger "Lift the larger black cup at the back." 0/1
135
+ 125 slide black star front larger "Slide the larger black star in front." 0/1
136
+ 126 lift green star front large "Lift the large green star in front." 1/1
137
+ 127 grasp orange sphere front large "Grasp the large orange sphere in front." 1/1
138
+ 128 grasp yellow car front larger "Grasp the larger yellow car in front." 0/1
139
+ 129 push yellow cup right larger "Push the larger yellow cup on the right." 1/1
140
+ 130 slide yellow car behind large "Slide the large yellow car at the back." 1/1
141
+ 131 slide yellow cup right small "Slide the small yellow cup on the right." 1/1
142
+ 132 grasp red sphere middle smaller "Grasp the smaller red sphere in the middle." 1/1
143
+ 133 pull black car left smaller "Pull the smaller black car on the left." 1/1
144
+ 134 grasp yellow cube behind larger "Grasp the larger yellow cube at the back." 0/1
145
+ 135 push orange pyramid right larger "Push the larger orange pyramid on the right." 0/1
146
+ 136 pull green star left small "Pull the small green star on the left." 0/1
147
+ 137 pull orange car middle large "Pull the large orange car in the middle." 0/1
148
+ 138 lift blue cube right larger "Lift the larger blue cube on the right." 1/1
149
+ 139 lift black sphere behind larger "Lift the larger black sphere at the back." 0/1
150
+ 140 slide red pyramid middle small "Slide the small red pyramid in the middle." 1/1
151
+ 141 push black pyramid right larger "Push the larger black pyramid on the right." 1/1
152
+ 142 pull blue car front large "Pull the large blue car in front." 1/1
153
+ 143 rotate red cup left small "Rotate the small red cup on the left." 1/1
154
+ 144 pull green cup front larger "Pull the larger green cup in front." 1/1
155
+ 145 rotate black star middle smaller "Rotate the smaller black star in the middle." 0/1
156
+ 146 push orange sphere middle smaller "Push the smaller orange sphere in the middle." 1/1
157
+ 147 grasp green sphere middle larger "Grasp the larger green sphere in the middle." 1/1
158
+ 148 rotate yellow cup middle large "Rotate the large yellow cup in the middle." 1/1
159
+ 149 slide blue star middle smaller "Slide the smaller blue star in the middle." 0/1
160
+ 150 slide red cube behind smaller "Slide the smaller red cube at the back." 1/1
161
+ 151 slide blue cube left small "Slide the small blue cube on the left." 1/1
162
+ 152 grasp yellow cup front large "Grasp the large yellow cup in front." 1/1
163
+ 153 grasp blue cube front larger "Grasp the larger blue cube in front." 0/1
164
+ 154 grasp green cube front smaller "Grasp the smaller green cube in front." 1/1
165
+ 155 push orange star middle large "Push the large orange star in the middle." 0/1
166
+ 156 pull green cup left larger "Pull the larger green cup on the left." 1/1
167
+ 157 grasp yellow cube middle large "Grasp the large yellow cube in the middle." 1/1
168
+ 158 grasp green cube left small "Grasp the small green cube on the left." 1/1
169
+ 159 push green car left large "Push the large green car on the left." 0/1
170
+ 160 slide red cup right large "Slide the large red cup on the right." 0/1
171
+ 161 push black cup middle larger "Push the larger black cup in the middle." 1/1
172
+ 162 pull red car behind larger "Pull the larger red car at the back." 0/1
173
+ 163 slide green pyramid left larger "Slide the larger green pyramid on the left." 1/1
174
+ 164 slide orange pyramid behind small "Slide the small orange pyramid at the back." 1/1
175
+ 165 grasp black pyramid left small "Grasp the small black pyramid on the left." 0/1
176
+ 166 push yellow pyramid middle larger "Push the larger yellow pyramid in the middle." 0/1
177
+ 167 slide orange star left large "Slide the large orange star on the left." 0/1
178
+ 168 slide orange star front large "Slide the large orange star in front." 0/1
179
+ 169 grasp orange pyramid middle small "Grasp the small orange pyramid in the middle." 0/1
180
+ 170 lift red sphere behind large "Lift the large red sphere at the back." 0/1
181
+ 171 grasp red sphere behind large "Grasp the large red sphere at the back." 0/1
182
+ 172 slide black cup right smaller "Slide the smaller black cup on the right." 0/1
183
+ 173 lift green pyramid right larger "Lift the larger green pyramid on the right." 1/1
184
+ 174 slide blue cube middle small "Slide the small blue cube in the middle." 1/1
185
+ 175 push green cup front smaller "Push the smaller green cup in front." 0/1
186
+ 176 grasp blue cup behind larger "Grasp the larger blue cup at the back." 0/1
187
+ 177 slide green cup left smaller "Slide the smaller green cup on the left." 1/1
188
+ 178 grasp blue pyramid behind larger "Grasp the larger blue pyramid at the back." 0/1
189
+ 179 pull red star behind larger "Pull the larger red star at the back." 0/1
190
+ 180 pull red sphere behind larger "Pull the larger red sphere at the back." 0/1
191
+ 181 slide orange cup front larger "Slide the larger orange cup in front." 1/1
192
+ 182 pull black cup left small "Pull the small black cup on the left." 0/1
193
+ 183 lift red cube right large "Lift the large red cube on the right." 1/1
194
+ 184 push green star right larger "Push the larger green star on the right." 0/1
195
+ 185 pull yellow pyramid behind larger "Pull the larger yellow pyramid at the back." 0/1
196
+ 186 lift blue star front small "Lift the small blue star in front." 0/1
197
+ 187 rotate green cup front small "Rotate the small green cup in front." 1/1
198
+ 188 slide blue star left small "Slide the small blue star on the left." 1/1
199
+ 189 lift blue cube behind larger "Lift the larger blue cube at the back." 1/1
200
+ 190 rotate red cube right larger "Rotate the larger red cube on the right." 1/1
201
+ 191 lift yellow pyramid front small "Lift the small yellow pyramid in front." 1/1
202
+ 192 push blue cup middle smaller "Push the smaller blue cup in the middle." 0/1
203
+ 193 slide yellow star front larger "Slide the larger yellow star in front." 0/1
204
+ 194 rotate red car behind large "Rotate the large red car at the back." 0/1
205
+ 195 lift green car right small "Lift the small green car on the right." 1/1
206
+ 196 slide black cube left smaller "Slide the smaller black cube on the left." 1/1
207
+ 197 lift red sphere behind small "Lift the small red sphere at the back." 0/1
208
+ 198 lift orange car middle larger "Lift the larger orange car in the middle." 0/1
209
+ 199 push yellow sphere front smaller "Push the smaller yellow sphere in front." 0/1
210
+ 200 slide blue star right small "Slide the small blue star on the right." 0/1
211
+
212
+ overall_success=88/200 (44.0%)
results/gr00t/all_factor/all_factor_Lrandom_f50_n400/SUMMARY.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ # all_factor_Lrandom_f50_n400 — full-factor, TASK-aligned (sample_n=200 seed=42, 200 eps, max_steps=500, no_distractor=0.70, default difficulty); sim_backend=gpu → 任务/采样/prompt/success 与 pi0.5 一致,但数值非 1:1 可比
2
+ seed42: 91/200 (45.5%)
3
+ AVG over 1 seed(s): 45.5%