anhtld commited on
Commit
178e400
·
verified ·
1 Parent(s): 46323be

auto-sync 2026-07-02T18:12:23Z workspace

Browse files
workspace/docs/cil_format.md CHANGED
@@ -45,5 +45,15 @@ Benchmark tracks:
45
  - Deployment: execute deployment-clean proposals without same-state validation rewards.
46
  - Recovery: evaluate near-miss states and safety/abstention behavior.
47
 
 
 
 
 
 
 
 
 
 
 
48
  JSONL shards should preserve complete groups. A group may exceed the target shard size, but it
49
  should never be split across shards unless an explicit future streaming mode opts into that tradeoff.
 
45
  - Deployment: execute deployment-clean proposals without same-state validation rewards.
46
  - Recovery: evaluate near-miss states and safety/abstention behavior.
47
 
48
+ Generator baselines:
49
+
50
+ - V0 transported residual retrieval copies train-state tangents into the current
51
+ state and lets the learned utility field select among them.
52
+ - V1 utility-weighted residual retrieval changes proposal support before
53
+ selection by weighting train tangents with retrieval affinity and measured
54
+ source advantage, `exp(-distance / tau + rho * delta_utility)`.
55
+ - The full CIL-Atlas generator should learn positive causal tangent support
56
+ directly, with V0/V1 kept as diagnostic baselines rather than the main novelty.
57
+
58
  JSONL shards should preserve complete groups. A group may exceed the target shard size, but it
59
  should never be split across shards unless an explicit future streaming mode opts into that tradeoff.
workspace/dovla_cil/eval/maniskill_policy_rollout.py CHANGED
@@ -120,6 +120,7 @@ def evaluate_maniskill_policy_rollout(
120
  retrieval_residual_source_score_bonus_scale: float = 0.0,
121
  retrieval_residual_source_score_bonus_by_task: dict[str, float] | None = None,
122
  retrieval_residual_source_advantage_bonus_scale: float = 0.0,
 
123
  retrieval_residual_composite_l2_penalty_scale: float = 0.0,
124
  retrieval_residual_action_l2_penalty: float = 0.0,
125
  retrieval_residual_scale: float = 1.0,
@@ -284,6 +285,8 @@ def evaluate_maniskill_policy_rollout(
284
  )
285
  if retrieval_residual_source_advantage_bonus_scale < 0:
286
  raise ValueError("retrieval_residual_source_advantage_bonus_scale must be non-negative")
 
 
287
  if retrieval_residual_composite_l2_penalty_scale < 0:
288
  raise ValueError("retrieval_residual_composite_l2_penalty_scale must be non-negative")
289
  if retrieval_residual_action_l2_penalty < 0:
@@ -447,6 +450,9 @@ def evaluate_maniskill_policy_rollout(
447
  retrieval_residual_source_advantage_bonus_scale=(
448
  retrieval_residual_source_advantage_bonus_scale
449
  ),
 
 
 
450
  retrieval_residual_composite_l2_penalty_scale=(
451
  retrieval_residual_composite_l2_penalty_scale
452
  ),
@@ -625,6 +631,11 @@ def evaluate_maniskill_policy_rollout(
625
  if selection_mode == "retrieval_residual"
626
  else 0.0
627
  ),
 
 
 
 
 
628
  "retrieval_residual_composite_l2_penalty_scale": (
629
  retrieval_residual_composite_l2_penalty_scale
630
  if selection_mode == "retrieval_residual"
@@ -876,6 +887,7 @@ def _attach_retrieved_residual_candidates(
876
  retrieval_residual_source_score_bonus_scale: float = 0.0,
877
  retrieval_residual_source_score_bonus_by_task: dict[str, float] | None = None,
878
  retrieval_residual_source_advantage_bonus_scale: float = 0.0,
 
879
  retrieval_residual_composite_l2_penalty_scale: float = 0.0,
880
  retrieval_residual_anchor: str = "expert",
881
  retrieval_residual_direction: str = "candidate_minus_anchor",
@@ -909,6 +921,7 @@ def _attach_retrieved_residual_candidates(
909
  list[list[list[float]]],
910
  list[str],
911
  list[float],
 
912
  ]
913
  ],
914
  ] = defaultdict(list)
@@ -934,6 +947,7 @@ def _attach_retrieved_residual_candidates(
934
  residuals: list[list[list[float]]] = [np.zeros_like(anchor_action).tolist()]
935
  candidate_types = ["policy_residual"]
936
  residual_bonuses = [0.0]
 
937
  for record in records:
938
  if record.record_id == anchor.record_id:
939
  continue
@@ -972,12 +986,25 @@ def _attach_retrieved_residual_candidates(
972
  + float(source_score_bonus_scale) * source_score
973
  + float(retrieval_residual_source_advantage_bonus_scale) * source_advantage
974
  )
 
 
 
 
 
 
975
  feature = np.asarray(
976
  vectorize_toy_observation(records[0].observation_inline or {}, obs_dim=obs_dim),
977
  dtype=np.float32,
978
  )
979
  bank[next(iter(task_ids))].append(
980
- (group_id, feature, residuals, candidate_types, residual_bonuses)
 
 
 
 
 
 
 
981
  )
982
 
983
  output: list[_RolloutCase] = []
@@ -1023,11 +1050,17 @@ def _attach_retrieved_residual_candidates(
1023
  source_residuals,
1024
  source_candidate_types,
1025
  source_residual_bonuses,
 
1026
  ) = entry
1027
  source_group_ids.append(source_group_id)
1028
  residuals.extend(source_residuals)
1029
  candidate_types.extend(source_candidate_types)
1030
- residual_weights.extend([float(source_weight)] * len(source_residuals))
 
 
 
 
 
1031
  residual_bonuses.extend(source_residual_bonuses)
1032
  if retrieval_residual_reduce in _NUMPY_RESIDUAL_REDUCERS:
1033
  residuals, candidate_types, residual_bonuses = _reduce_residual_candidates_by_type(
@@ -1036,6 +1069,7 @@ def _attach_retrieved_residual_candidates(
1036
  mode=retrieval_residual_reduce,
1037
  weights=residual_weights,
1038
  bonuses=residual_bonuses,
 
1039
  consensus_penalty_scale=retrieval_residual_consensus_penalty_scale,
1040
  composite_l2_penalty_scale=retrieval_residual_composite_l2_penalty_scale,
1041
  )
@@ -1091,6 +1125,7 @@ def _reduce_residual_candidates_by_type(
1091
  mode: str,
1092
  weights: list[float] | None = None,
1093
  bonuses: list[float] | None = None,
 
1094
  consensus_penalty_scale: float = 0.0,
1095
  composite_l2_penalty_scale: float = 0.0,
1096
  ) -> tuple[list[list[list[float]]], list[str]] | tuple[
@@ -1112,6 +1147,8 @@ def _reduce_residual_candidates_by_type(
1112
  raise ValueError("weights and residuals must have the same length")
1113
  if bonuses is not None and len(bonuses) != len(residuals):
1114
  raise ValueError("bonuses and residuals must have the same length")
 
 
1115
  if consensus_penalty_scale < 0:
1116
  raise ValueError("consensus_penalty_scale must be non-negative")
1117
  if composite_l2_penalty_scale < 0:
@@ -1136,11 +1173,8 @@ def _reduce_residual_candidates_by_type(
1136
  if not values:
1137
  continue
1138
  stack = np.stack(values, axis=0)
1139
- if mode in {"mean_by_type", "compose_mean_by_type"}:
1140
- reduced = np.mean(stack, axis=0)
1141
- reduced_bonus = float(np.mean(value_bonuses)) if value_bonuses else 0.0
1142
- elif mode == "kernel_mean_by_type":
1143
- if value_weights:
1144
  np_weights = np.asarray(value_weights, dtype=np.float32)
1145
  weight_sum = float(np.sum(np_weights))
1146
  if weight_sum > 1e-12:
@@ -1239,13 +1273,13 @@ def _source_reward_score(reward: Any, *, progress: float) -> float:
1239
 
1240
 
1241
  def _nearest_retrieval_entries(
1242
- candidates: list[tuple[Any, np.ndarray, Any, Any]],
1243
  query: np.ndarray,
1244
  *,
1245
  retrieval_neighbors: int,
1246
  retrieval_metric: str,
1247
  task_id: str | None = None,
1248
- ) -> list[tuple[Any, np.ndarray, Any, Any]]:
1249
  return [
1250
  entry
1251
  for entry, _distance in _nearest_retrieval_entries_with_distances(
@@ -1259,13 +1293,13 @@ def _nearest_retrieval_entries(
1259
 
1260
 
1261
  def _nearest_retrieval_entries_with_distances(
1262
- candidates: list[tuple[Any, np.ndarray, Any, Any]],
1263
  query: np.ndarray,
1264
  *,
1265
  retrieval_neighbors: int,
1266
  retrieval_metric: str,
1267
  task_id: str | None = None,
1268
- ) -> list[tuple[tuple[Any, np.ndarray, Any, Any], float]]:
1269
  if retrieval_metric == "raw":
1270
  scored = [
1271
  (item, float(np.mean((item[1] - query) ** 2)))
@@ -1378,6 +1412,17 @@ def _kernel_weights_from_distances(distances: list[float]) -> list[float]:
1378
  return weights.astype(np.float32).tolist()
1379
 
1380
 
 
 
 
 
 
 
 
 
 
 
 
1381
  def _evaluate_task_cases(
1382
  task_id: str,
1383
  cases: list[_RolloutCase],
 
120
  retrieval_residual_source_score_bonus_scale: float = 0.0,
121
  retrieval_residual_source_score_bonus_by_task: dict[str, float] | None = None,
122
  retrieval_residual_source_advantage_bonus_scale: float = 0.0,
123
+ retrieval_residual_source_advantage_weight_scale: float = 0.0,
124
  retrieval_residual_composite_l2_penalty_scale: float = 0.0,
125
  retrieval_residual_action_l2_penalty: float = 0.0,
126
  retrieval_residual_scale: float = 1.0,
 
285
  )
286
  if retrieval_residual_source_advantage_bonus_scale < 0:
287
  raise ValueError("retrieval_residual_source_advantage_bonus_scale must be non-negative")
288
+ if retrieval_residual_source_advantage_weight_scale < 0:
289
+ raise ValueError("retrieval_residual_source_advantage_weight_scale must be non-negative")
290
  if retrieval_residual_composite_l2_penalty_scale < 0:
291
  raise ValueError("retrieval_residual_composite_l2_penalty_scale must be non-negative")
292
  if retrieval_residual_action_l2_penalty < 0:
 
450
  retrieval_residual_source_advantage_bonus_scale=(
451
  retrieval_residual_source_advantage_bonus_scale
452
  ),
453
+ retrieval_residual_source_advantage_weight_scale=(
454
+ retrieval_residual_source_advantage_weight_scale
455
+ ),
456
  retrieval_residual_composite_l2_penalty_scale=(
457
  retrieval_residual_composite_l2_penalty_scale
458
  ),
 
631
  if selection_mode == "retrieval_residual"
632
  else 0.0
633
  ),
634
+ "retrieval_residual_source_advantage_weight_scale": (
635
+ retrieval_residual_source_advantage_weight_scale
636
+ if selection_mode == "retrieval_residual"
637
+ else 0.0
638
+ ),
639
  "retrieval_residual_composite_l2_penalty_scale": (
640
  retrieval_residual_composite_l2_penalty_scale
641
  if selection_mode == "retrieval_residual"
 
887
  retrieval_residual_source_score_bonus_scale: float = 0.0,
888
  retrieval_residual_source_score_bonus_by_task: dict[str, float] | None = None,
889
  retrieval_residual_source_advantage_bonus_scale: float = 0.0,
890
+ retrieval_residual_source_advantage_weight_scale: float = 0.0,
891
  retrieval_residual_composite_l2_penalty_scale: float = 0.0,
892
  retrieval_residual_anchor: str = "expert",
893
  retrieval_residual_direction: str = "candidate_minus_anchor",
 
921
  list[list[list[float]]],
922
  list[str],
923
  list[float],
924
+ list[float],
925
  ]
926
  ],
927
  ] = defaultdict(list)
 
947
  residuals: list[list[list[float]]] = [np.zeros_like(anchor_action).tolist()]
948
  candidate_types = ["policy_residual"]
949
  residual_bonuses = [0.0]
950
+ residual_source_weights = [1.0]
951
  for record in records:
952
  if record.record_id == anchor.record_id:
953
  continue
 
986
  + float(source_score_bonus_scale) * source_score
987
  + float(retrieval_residual_source_advantage_bonus_scale) * source_advantage
988
  )
989
+ residual_source_weights.append(
990
+ _source_advantage_weight(
991
+ source_advantage,
992
+ scale=retrieval_residual_source_advantage_weight_scale,
993
+ )
994
+ )
995
  feature = np.asarray(
996
  vectorize_toy_observation(records[0].observation_inline or {}, obs_dim=obs_dim),
997
  dtype=np.float32,
998
  )
999
  bank[next(iter(task_ids))].append(
1000
+ (
1001
+ group_id,
1002
+ feature,
1003
+ residuals,
1004
+ candidate_types,
1005
+ residual_bonuses,
1006
+ residual_source_weights,
1007
+ )
1008
  )
1009
 
1010
  output: list[_RolloutCase] = []
 
1050
  source_residuals,
1051
  source_candidate_types,
1052
  source_residual_bonuses,
1053
+ source_residual_weights,
1054
  ) = entry
1055
  source_group_ids.append(source_group_id)
1056
  residuals.extend(source_residuals)
1057
  candidate_types.extend(source_candidate_types)
1058
+ residual_weights.extend(
1059
+ [
1060
+ float(source_weight) * float(residual_source_weight)
1061
+ for residual_source_weight in source_residual_weights
1062
+ ]
1063
+ )
1064
  residual_bonuses.extend(source_residual_bonuses)
1065
  if retrieval_residual_reduce in _NUMPY_RESIDUAL_REDUCERS:
1066
  residuals, candidate_types, residual_bonuses = _reduce_residual_candidates_by_type(
 
1069
  mode=retrieval_residual_reduce,
1070
  weights=residual_weights,
1071
  bonuses=residual_bonuses,
1072
+ mean_weights=retrieval_residual_source_advantage_weight_scale > 0.0,
1073
  consensus_penalty_scale=retrieval_residual_consensus_penalty_scale,
1074
  composite_l2_penalty_scale=retrieval_residual_composite_l2_penalty_scale,
1075
  )
 
1125
  mode: str,
1126
  weights: list[float] | None = None,
1127
  bonuses: list[float] | None = None,
1128
+ mean_weights: bool = False,
1129
  consensus_penalty_scale: float = 0.0,
1130
  composite_l2_penalty_scale: float = 0.0,
1131
  ) -> tuple[list[list[list[float]]], list[str]] | tuple[
 
1147
  raise ValueError("weights and residuals must have the same length")
1148
  if bonuses is not None and len(bonuses) != len(residuals):
1149
  raise ValueError("bonuses and residuals must have the same length")
1150
+ if mean_weights and weights is None:
1151
+ raise ValueError("mean_weights requires weights")
1152
  if consensus_penalty_scale < 0:
1153
  raise ValueError("consensus_penalty_scale must be non-negative")
1154
  if composite_l2_penalty_scale < 0:
 
1173
  if not values:
1174
  continue
1175
  stack = np.stack(values, axis=0)
1176
+ if mode in {"mean_by_type", "compose_mean_by_type", "kernel_mean_by_type"}:
1177
+ if value_weights and (mode == "kernel_mean_by_type" or mean_weights):
 
 
 
1178
  np_weights = np.asarray(value_weights, dtype=np.float32)
1179
  weight_sum = float(np.sum(np_weights))
1180
  if weight_sum > 1e-12:
 
1273
 
1274
 
1275
  def _nearest_retrieval_entries(
1276
+ candidates: list[tuple[Any, ...]],
1277
  query: np.ndarray,
1278
  *,
1279
  retrieval_neighbors: int,
1280
  retrieval_metric: str,
1281
  task_id: str | None = None,
1282
+ ) -> list[tuple[Any, ...]]:
1283
  return [
1284
  entry
1285
  for entry, _distance in _nearest_retrieval_entries_with_distances(
 
1293
 
1294
 
1295
  def _nearest_retrieval_entries_with_distances(
1296
+ candidates: list[tuple[Any, ...]],
1297
  query: np.ndarray,
1298
  *,
1299
  retrieval_neighbors: int,
1300
  retrieval_metric: str,
1301
  task_id: str | None = None,
1302
+ ) -> list[tuple[tuple[Any, ...], float]]:
1303
  if retrieval_metric == "raw":
1304
  scored = [
1305
  (item, float(np.mean((item[1] - query) ** 2)))
 
1412
  return weights.astype(np.float32).tolist()
1413
 
1414
 
1415
+ def _source_advantage_weight(source_advantage: float, *, scale: float) -> float:
1416
+ if scale <= 0.0:
1417
+ return 1.0
1418
+ exponent = float(scale) * float(source_advantage)
1419
+ exponent = min(max(exponent, -50.0), 50.0)
1420
+ weight = math.exp(exponent)
1421
+ if not math.isfinite(weight) or weight <= 0.0:
1422
+ return 1.0
1423
+ return weight
1424
+
1425
+
1426
  def _evaluate_task_cases(
1427
  task_id: str,
1428
  cases: list[_RolloutCase],
workspace/latex/main.aux CHANGED
@@ -22,17 +22,17 @@
22
  \@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Same-State Action Charts}{2}{subsection.2.1}\protected@file@percent }
23
  \@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Tracks}{2}{subsection.2.2}\protected@file@percent }
24
  \@writefile{toc}{\contentsline {section}{\numberline {3}Metrics}{2}{section.3}\protected@file@percent }
25
- \@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Core results. Clean rows do not use same-state validation proposals or expert proposals at deployment.}}{3}{table.1}\protected@file@percent }
26
- \newlabel{tab:main-results}{{1}{3}{Core results. Clean rows do not use same-state validation proposals or expert proposals at deployment}{table.1}{}}
27
- \@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces Causal Action Regret decomposition on the current six-task diagnostic. Support is the proposal-generation gap to the hidden same-state no-expert oracle; selector is the clean proposal-oracle headroom left by the deployed selector.}}{3}{table.2}\protected@file@percent }
28
- \newlabel{tab:car-decomposition}{{2}{3}{Causal Action Regret decomposition on the current six-task diagnostic. Support is the proposal-generation gap to the hidden same-state no-expert oracle; selector is the clean proposal-oracle headroom left by the deployed selector}{table.2}{}}
29
  \@writefile{toc}{\contentsline {section}{\numberline {4}CIL-Atlas}{3}{section.4}\protected@file@percent }
30
  \@writefile{toc}{\contentsline {section}{\numberline {5}Current Six-Task Diagnostic}{3}{section.5}\protected@file@percent }
31
- \@writefile{lot}{\contentsline {table}{\numberline {3}{\ignorespaces Train-source score prior sensitivity for the current K6 transported residual field. A very small prior calibrates the selector; stronger priors tie or degrade success.}}{4}{table.3}\protected@file@percent }
32
- \newlabel{tab:source-score-sweep}{{3}{4}{Train-source score prior sensitivity for the current K6 transported residual field. A very small prior calibrates the selector; stronger priors tie or degrade success}{table.3}{}}
33
- \@writefile{lot}{\contentsline {table}{\numberline {4}{\ignorespaces Selector calibration ablations on the current K6 transported residual field. All rows are deployment-clean and use only train-split calibration signals.}}{4}{table.4}\protected@file@percent }
34
- \newlabel{tab:selector-calibration}{{4}{4}{Selector calibration ablations on the current K6 transported residual field. All rows are deployment-clean and use only train-split calibration signals}{table.4}{}}
35
- \@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Selector Diagnostics}{4}{subsection.5.1}\protected@file@percent }
36
- \@writefile{toc}{\contentsline {section}{\numberline {6}Roadmap to the Full Paper}{4}{section.6}\protected@file@percent }
37
  \@writefile{toc}{\contentsline {section}{\numberline {7}Limitations}{4}{section.7}\protected@file@percent }
 
 
 
 
38
  \gdef \@abspage@last{5}
 
22
  \@writefile{toc}{\contentsline {subsection}{\numberline {2.1}Same-State Action Charts}{2}{subsection.2.1}\protected@file@percent }
23
  \@writefile{toc}{\contentsline {subsection}{\numberline {2.2}Tracks}{2}{subsection.2.2}\protected@file@percent }
24
  \@writefile{toc}{\contentsline {section}{\numberline {3}Metrics}{2}{section.3}\protected@file@percent }
 
 
 
 
25
  \@writefile{toc}{\contentsline {section}{\numberline {4}CIL-Atlas}{3}{section.4}\protected@file@percent }
26
  \@writefile{toc}{\contentsline {section}{\numberline {5}Current Six-Task Diagnostic}{3}{section.5}\protected@file@percent }
27
+ \@writefile{toc}{\contentsline {subsection}{\numberline {5.1}Selector Diagnostics}{3}{subsection.5.1}\protected@file@percent }
28
+ \@writefile{toc}{\contentsline {section}{\numberline {6}Roadmap to the Full Paper}{3}{section.6}\protected@file@percent }
29
+ \@writefile{lot}{\contentsline {table}{\numberline {1}{\ignorespaces Core results. Clean rows do not use same-state validation proposals or expert proposals at deployment.}}{4}{table.1}\protected@file@percent }
30
+ \newlabel{tab:main-results}{{1}{4}{Core results. Clean rows do not use same-state validation proposals or expert proposals at deployment}{table.1}{}}
31
+ \@writefile{lot}{\contentsline {table}{\numberline {2}{\ignorespaces Causal Action Regret decomposition on the current six-task diagnostic. Support is the proposal-generation gap to the hidden same-state no-expert oracle; selector is the clean proposal-oracle headroom left by the deployed selector.}}{4}{table.2}\protected@file@percent }
32
+ \newlabel{tab:car-decomposition}{{2}{4}{Causal Action Regret decomposition on the current six-task diagnostic. Support is the proposal-generation gap to the hidden same-state no-expert oracle; selector is the clean proposal-oracle headroom left by the deployed selector}{table.2}{}}
33
  \@writefile{toc}{\contentsline {section}{\numberline {7}Limitations}{4}{section.7}\protected@file@percent }
34
+ \@writefile{lot}{\contentsline {table}{\numberline {3}{\ignorespaces Train-source score prior sensitivity for the current K6 transported residual field. A very small prior calibrates the selector; stronger priors tie or degrade success.}}{5}{table.3}\protected@file@percent }
35
+ \newlabel{tab:source-score-sweep}{{3}{5}{Train-source score prior sensitivity for the current K6 transported residual field. A very small prior calibrates the selector; stronger priors tie or degrade success}{table.3}{}}
36
+ \@writefile{lot}{\contentsline {table}{\numberline {4}{\ignorespaces Selector calibration ablations on the current K6 transported residual field. All rows are deployment-clean and use only train-split calibration signals.}}{5}{table.4}\protected@file@percent }
37
+ \newlabel{tab:selector-calibration}{{4}{5}{Selector calibration ablations on the current K6 transported residual field. All rows are deployment-clean and use only train-split calibration signals}{table.4}{}}
38
  \gdef \@abspage@last{5}
workspace/latex/main.fdb_latexmk CHANGED
@@ -1,5 +1,5 @@
1
  # Fdb version 4
2
- ["pdflatex"] 1783013516 "main.tex" "main.pdf" "main" 1783013516 0
3
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc" 1136849721 2900 1537cc8184ad1792082cd229ecc269f4 ""
4
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/map/fontname/texfonts.map" 1577235249 3524 cb3e574dea2d1052e39280babc910dc8 ""
5
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/tfm/jknappen/ec/tcrm1000.tfm" 1136768653 1536 e07581a4bb3136ece9eeb4c3ffab8233 ""
@@ -34,6 +34,7 @@
34
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb" 1248133631 32080 340ef9bf63678554ee606688e7b5339d ""
35
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb" 1248133631 32298 c6d25bb16d1eac01ebdc6d7084126a1e ""
36
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmcsc10.pfb" 1248133631 32001 6aeea3afe875097b1eb0da29acd61e28 ""
 
37
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb" 1248133631 36299 5f9df58c2139e7edcf37c8fca4bd384d ""
38
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi5.pfb" 1248133631 37912 77d683123f92148345f3fc36a38d9ab1 ""
39
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb" 1248133631 36281 c355509802a035cadc5f15869451dcee ""
@@ -106,9 +107,9 @@
106
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/web2c/texmf.cnf" 1692823885 39639 818dd8e5a0dce3a72597a7e6bad45d55 ""
107
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1692821535 5031293 07973d5e761f645996ac32ebf7b8d1f3 ""
108
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1692821530 1386016 abd9ba6eb53c47bc5de8d672b6ac87d3 ""
109
- "main.aux" 1783013516 3883 ff508ab370eaa8e9feeafda994006f38 "pdflatex"
110
- "main.out" 1783013516 1245 b3d461b4fec67164f7152e09acaee494 "pdflatex"
111
- "main.tex" 1783013512 9958 486b6a340f6a633503c9c60ae76b4c1d ""
112
  "tables/car_decomposition.tex" 1783013498 662 bac24c0014c2ba573860ce199b776934 ""
113
  "tables/main_results.tex" 1783004655 1061 19bfdcc844614aadefc921dae15c700d ""
114
  "tables/selector_calibration.tex" 1783011198 788 1b54a8eb88519c50862f4acf718798ab ""
 
1
  # Fdb version 4
2
+ ["pdflatex"] 1783017127 "main.tex" "main.pdf" "main" 1783017127 0
3
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/enc/dvips/cm-super/cm-super-ts1.enc" 1136849721 2900 1537cc8184ad1792082cd229ecc269f4 ""
4
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/map/fontname/texfonts.map" 1577235249 3524 cb3e574dea2d1052e39280babc910dc8 ""
5
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/tfm/jknappen/ec/tcrm1000.tfm" 1136768653 1536 e07581a4bb3136ece9eeb4c3ffab8233 ""
 
34
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb" 1248133631 32080 340ef9bf63678554ee606688e7b5339d ""
35
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb" 1248133631 32298 c6d25bb16d1eac01ebdc6d7084126a1e ""
36
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmcsc10.pfb" 1248133631 32001 6aeea3afe875097b1eb0da29acd61e28 ""
37
+ "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb" 1248133631 30251 6afa5cb1d0204815a708a080681d4674 ""
38
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb" 1248133631 36299 5f9df58c2139e7edcf37c8fca4bd384d ""
39
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi5.pfb" 1248133631 37912 77d683123f92148345f3fc36a38d9ab1 ""
40
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb" 1248133631 36281 c355509802a035cadc5f15869451dcee ""
 
107
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/web2c/texmf.cnf" 1692823885 39639 818dd8e5a0dce3a72597a7e6bad45d55 ""
108
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map" 1692821535 5031293 07973d5e761f645996ac32ebf7b8d1f3 ""
109
  "/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/var/lib/texmf/web2c/pdftex/pdflatex.fmt" 1692821530 1386016 abd9ba6eb53c47bc5de8d672b6ac87d3 ""
110
+ "main.aux" 1783017127 3883 188704cafa467156903b53ef9791ac88 "pdflatex"
111
+ "main.out" 1783017127 1245 b3d461b4fec67164f7152e09acaee494 "pdflatex"
112
+ "main.tex" 1783017077 10821 d88c97be7ba8ff9760de11b80af38e29 ""
113
  "tables/car_decomposition.tex" 1783013498 662 bac24c0014c2ba573860ce199b776934 ""
114
  "tables/main_results.tex" 1783004655 1061 19bfdcc844614aadefc921dae15c700d ""
115
  "tables/selector_calibration.tex" 1783011198 788 1b54a8eb88519c50862f4acf718798ab ""
workspace/latex/main.fls CHANGED
@@ -663,6 +663,7 @@ INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fo
663
  INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb
664
  INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb
665
  INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmcsc10.pfb
 
666
  INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb
667
  INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi5.pfb
668
  INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb
 
663
  INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx12.pfb
664
  INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb
665
  INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmcsc10.pfb
666
+ INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb
667
  INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb
668
  INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi5.pfb
669
  INPUT /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb
workspace/latex/main.log CHANGED
@@ -1,4 +1,4 @@
1
- This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021 Gentoo Linux) (preloaded format=pdflatex 2023.8.23) 2 JUL 2026 13:31
2
  entering extended mode
3
  restricted \write18 enabled.
4
  %&-line parsing enabled.
@@ -483,19 +483,19 @@ File: umsb.fd 2013/01/14 v3.01 AMS symbols B
483
 
484
  {/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/var/lib/texmf/fonts/map/pdf
485
  tex/updmap/pdftex.map}] [2] (./tables/main_results.tex) (./tables/car_decomposi
486
- tion.tex) [3] (./tables/source_score_sweep.tex)
487
- (./tables/selector_calibration.tex) [4] [5] (./main.aux)
488
  Package rerunfilecheck Info: File `main.out' has not changed.
489
  (rerunfilecheck) Checksum: B3D461B4FEC67164F7152E09ACAEE494;1245.
490
  )
491
  Here is how much of TeX's memory you used:
492
  9899 strings out of 480884
493
  146741 string characters out of 5900692
494
- 453545 words of memory out of 5000000
495
  26980 multiletter control sequences out of 15000+600000
496
  414083 words of font info for 68 fonts, out of 8000000 for 9000
497
  36 hyphenation exceptions out of 8191
498
- 71i,8n,74p,371b,391s stack positions out of 5000i,500n,10000p,200000b,80000s
499
  {/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/font
500
  s/enc/dvips/cm-super/cm-super-ts1.enc}</cvmfs/soft.computecanada.ca/gentoo/2023
501
  /x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb></cvm
@@ -504,29 +504,30 @@ fs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1
504
  -v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb></cvmfs/soft.
505
  computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/
506
  amsfonts/cm/cmcsc10.pfb></cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr
507
- /share/texmf-dist/fonts/type1/public/amsfonts/cm/cmmi10.pfb></cvmfs/soft.comput
508
  ecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfon
509
- ts/cm/cmmi5.pfb></cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/t
510
- exmf-dist/fonts/type1/public/amsfonts/cm/cmmi7.pfb></cvmfs/soft.computecanada.c
511
- a/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr
512
- 10.pfb></cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist
513
- /fonts/type1/public/amsfonts/cm/cmr12.pfb></cvmfs/soft.computecanada.ca/gentoo/
514
- 2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr17.pfb></
515
- cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/ty
516
- pe1/public/amsfonts/cm/cmr7.pfb></cvmfs/soft.computecanada.ca/gentoo/2023/x86-6
517
- 4-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr8.pfb></cvmfs/soft.
518
- computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/
519
- amsfonts/cm/cmr9.pfb></cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/sh
520
- are/texmf-dist/fonts/type1/public/amsfonts/cm/cmsy10.pfb></cvmfs/soft.computeca
521
  nada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/
522
- cm/cmsy7.pfb></cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texm
523
- f-dist/fonts/type1/public/amsfonts/symbols/msbm10.pfb></cvmfs/soft.computecanad
524
- a.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/cm-super/sfr
525
- m1000.pfb>
526
- Output written on main.pdf (5 pages, 199333 bytes).
 
527
  PDF statistics:
528
- 150 PDF objects out of 1000 (max. 8388607)
529
- 124 compressed objects within 2 object streams
530
  21 named destinations out of 1000 (max. 500000)
531
  81 words of extra memory for PDF output out of 10000 (max. 10000000)
532
 
 
1
+ This is pdfTeX, Version 3.141592653-2.6-1.40.22 (TeX Live 2021 Gentoo Linux) (preloaded format=pdflatex 2023.8.23) 2 JUL 2026 14:32
2
  entering extended mode
3
  restricted \write18 enabled.
4
  %&-line parsing enabled.
 
483
 
484
  {/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/var/lib/texmf/fonts/map/pdf
485
  tex/updmap/pdftex.map}] [2] (./tables/main_results.tex) (./tables/car_decomposi
486
+ tion.tex) (./tables/source_score_sweep.tex)
487
+ (./tables/selector_calibration.tex) [3] [4] [5] (./main.aux)
488
  Package rerunfilecheck Info: File `main.out' has not changed.
489
  (rerunfilecheck) Checksum: B3D461B4FEC67164F7152E09ACAEE494;1245.
490
  )
491
  Here is how much of TeX's memory you used:
492
  9899 strings out of 480884
493
  146741 string characters out of 5900692
494
+ 458545 words of memory out of 5000000
495
  26980 multiletter control sequences out of 15000+600000
496
  414083 words of font info for 68 fonts, out of 8000000 for 9000
497
  36 hyphenation exceptions out of 8191
498
+ 71i,8n,74p,371b,393s stack positions out of 5000i,500n,10000p,200000b,80000s
499
  {/cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/font
500
  s/enc/dvips/cm-super/cm-super-ts1.enc}</cvmfs/soft.computecanada.ca/gentoo/2023
501
  /x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx10.pfb></cvm
 
504
  -v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmbx9.pfb></cvmfs/soft.
505
  computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/
506
  amsfonts/cm/cmcsc10.pfb></cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr
507
+ /share/texmf-dist/fonts/type1/public/amsfonts/cm/cmex10.pfb></cvmfs/soft.comput
508
  ecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfon
509
+ ts/cm/cmmi10.pfb></cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/
510
+ texmf-dist/fonts/type1/public/amsfonts/cm/cmmi5.pfb></cvmfs/soft.computecanada.
511
+ ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cm
512
+ mi7.pfb></cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dis
513
+ t/fonts/type1/public/amsfonts/cm/cmr10.pfb></cvmfs/soft.computecanada.ca/gentoo
514
+ /2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr12.pfb><
515
+ /cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/t
516
+ ype1/public/amsfonts/cm/cmr17.pfb></cvmfs/soft.computecanada.ca/gentoo/2023/x86
517
+ -64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr7.pfb></cvmfs/sof
518
+ t.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/publi
519
+ c/amsfonts/cm/cmr8.pfb></cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/
520
+ share/texmf-dist/fonts/type1/public/amsfonts/cm/cmr9.pfb></cvmfs/soft.computeca
521
  nada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/
522
+ cm/cmsy10.pfb></cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/tex
523
+ mf-dist/fonts/type1/public/amsfonts/cm/cmsy7.pfb></cvmfs/soft.computecanada.ca/
524
+ gentoo/2023/x86-64-v3/usr/share/texmf-dist/fonts/type1/public/amsfonts/symbols/
525
+ msbm10.pfb></cvmfs/soft.computecanada.ca/gentoo/2023/x86-64-v3/usr/share/texmf-
526
+ dist/fonts/type1/public/cm-super/sfrm1000.pfb>
527
+ Output written on main.pdf (5 pages, 209497 bytes).
528
  PDF statistics:
529
+ 154 PDF objects out of 1000 (max. 8388607)
530
+ 127 compressed objects within 2 object streams
531
  21 named destinations out of 1000 (max. 500000)
532
  81 words of extra memory for PDF output out of 10000 (max. 10000000)
533
 
workspace/latex/main.pdf CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:575ebbe026fa95190f2b69f456bb87115625d0774d9ec3250cd699f1484d02c6
3
  size 199333
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0191fdb33c2a848626b82b9c3ff8f04c07019d727321e0a7c1d73ca4c950e732
3
  size 199333
workspace/latex/main.tex CHANGED
@@ -36,9 +36,10 @@ field, reaches 38.90\%. A diagnostic top-8 oracle over the same clean proposal
36
  prefix reaches 44.35\%, while the hidden same-state no-expert chart reaches
37
  56.99\%. This reveals the central bottleneck: current selector headroom is 5.45
38
  points, but the proposal support gap is 12.64 points. The next method step is
39
- therefore not another selector prior; it is a learned positive tangent
40
- generator that closes support gap without same-state validation rewards,
41
- expert proposals, or hidden simulator state at deployment.
 
42
  \end{abstract}
43
 
44
  \section{Introduction}
@@ -72,9 +73,10 @@ deployment leakage.
72
  selector calibration.
73
  \item We propose \atlas{}, an object-centric representation of local causal
74
  action geometry learned from counterfactual intervention charts.
75
- \item We frame transported residual retrieval as Generator V0 and identify
76
- learned positive tangent generation as the main path beyond the current
77
- ceiling.
 
78
  \item We report a six-task diagnostic showing a 9.16 point clean gain over
79
  h=16 behavior cloning, while exposing substantially larger proposal-generation
80
  headroom than selector headroom.
@@ -161,8 +163,25 @@ transport them around the current policy mean,
161
  \tilde a_{j,\alpha}=a_{\mathrm{base}}+\alpha
162
  (a^{\mathrm{train}}_j-a^{\mathrm{train}}_{\mathrm{anchor}}).
163
  \]
164
- This is useful evidence, not the final novelty. The intended \atlas{} generator
165
- learns
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
166
  \[
167
  q_{\phi}(\delta a\mid o,\ell)
168
  \]
@@ -207,9 +226,9 @@ source priors to the role of diagnostic baselines.
207
  The full A*/Q1 paper should scale \bench{} from this six-task diagnostic to a
208
  large ManiSkill3 core benchmark, add one external long-horizon or embodiment
209
  benchmark, and include real robot near-miss recovery. Method development should
210
- proceed in the order implied by the decomposition: weighted residual retrieval
211
- as Generator V1, then a positive-tangent CVAE or flow-matching generator in
212
- object-centric spline tangent space, trained with pairwise/listwise utility
213
  field losses and calibrated dominance. The acceptance bar is selected clean
214
  success above 47--50\% on the current tasks, generator top-8 oracle above 50\%,
215
  selector gap below 3 points, and a real near-miss recovery gain of at least
 
36
  prefix reaches 44.35\%, while the hidden same-state no-expert chart reaches
37
  56.99\%. This reveals the central bottleneck: current selector headroom is 5.45
38
  points, but the proposal support gap is 12.64 points. The next method step is
39
+ therefore not another selector prior; it is proposal support: first
40
+ utility-weighted positive tangent retrieval, then a learned tangent generator
41
+ that closes support gap without same-state validation rewards, expert
42
+ proposals, or hidden simulator state at deployment.
43
  \end{abstract}
44
 
45
  \section{Introduction}
 
73
  selector calibration.
74
  \item We propose \atlas{}, an object-centric representation of local causal
75
  action geometry learned from counterfactual intervention charts.
76
+ \item We frame transported residual retrieval as Generator V0, implement a
77
+ utility-weighted Generator V1 baseline that changes proposal geometry rather
78
+ than selector scores, and identify learned positive tangent generation as the
79
+ main path beyond the current ceiling.
80
  \item We report a six-task diagnostic showing a 9.16 point clean gain over
81
  h=16 behavior cloning, while exposing substantially larger proposal-generation
82
  headroom than selector headroom.
 
163
  \tilde a_{j,\alpha}=a_{\mathrm{base}}+\alpha
164
  (a^{\mathrm{train}}_j-a^{\mathrm{train}}_{\mathrm{anchor}}).
165
  \]
166
+ Generator V1 is the minimal support-side intervention. Instead of changing the
167
+ selector potential after candidates are formed, it changes the retrieved
168
+ tangent field itself:
169
+ \[
170
+ w_j(o,\ell)\propto
171
+ \exp\left(-d(z(o,\ell),z_j)/\tau_k+
172
+ \rho\,[U(y_j)-U(y_{\mathrm{anchor},j})]\right),
173
+ \]
174
+ \[
175
+ \bar\delta_{t}(o,\ell)=
176
+ \frac{\sum_{j:b_j=t}w_j(o,\ell)
177
+ (a^{\mathrm{train}}_j-a^{\mathrm{train}}_{\mathrm{anchor},j})}
178
+ {\sum_{j:b_j=t}w_j(o,\ell)}.
179
+ \]
180
+ This keeps the method in the same measured causal chart language: positive
181
+ train interventions make the local transported tangent stronger, negative
182
+ ones are suppressed, and no validation-state reward is read at deployment.
183
+ V1 is still a diagnostic bridge, not the final novelty. The intended
184
+ \atlas{} generator learns
185
  \[
186
  q_{\phi}(\delta a\mid o,\ell)
187
  \]
 
226
  The full A*/Q1 paper should scale \bench{} from this six-task diagnostic to a
227
  large ManiSkill3 core benchmark, add one external long-horizon or embodiment
228
  benchmark, and include real robot near-miss recovery. Method development should
229
+ proceed in the order implied by the decomposition: evaluate Generator V1,
230
+ then replace retrieval with a positive-tangent CVAE or flow-matching generator
231
+ in object-centric spline tangent space, trained with pairwise/listwise utility
232
  field losses and calibrated dominance. The acceptance bar is selected clean
233
  success above 47--50\% on the current tasks, generator top-8 oracle above 50\%,
234
  selector gap below 3 points, and a real near-miss recovery gain of at least
workspace/latex/tables/car_decomposition.tex ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ \begin{table}[t]
2
+ \centering
3
+ \caption{Causal Action Regret decomposition on the current six-task diagnostic. Support is the proposal-generation gap to the hidden same-state no-expert oracle; selector is the clean proposal-oracle headroom left by the deployed selector.}
4
+ \label{tab:car-decomposition}
5
+ \small
6
+ \begin{tabular}{@{}lrrrrrr@{}}
7
+ \toprule
8
+ Method & Base & Prop. oracle & Selected & State oracle & Support & Selector \\
9
+ \midrule
10
+ Current CIL-Atlas V0 & 29.74 & 44.35 & 38.90 & 56.99 & 12.64 & 5.45 \\
11
+ \bottomrule
12
+ \end{tabular}
13
+ \vspace{2pt}
14
+ \footnotesize Clean gain is 9.16 points; gap closed is 33.6\%; 65--75\% closure targets are 47.45--50.17.
15
+ \end{table}