auto-sync 2026-07-04T01:43:46Z workspace (part 3)
Browse files
workspace/reports/2026-07-03.md
CHANGED
|
@@ -34,6 +34,7 @@
|
|
| 34 |
- Extended `scripts/eval_learned_dominance_selector.py` with `--threshold-scope task`, a Mondrian execute/fallback threshold over visible `task_id` buckets. The model weights and task thresholds are fit on calibration rows only; held-out eval outcomes are used only for reporting.
|
| 35 |
- Extended `scripts/eval_learned_dominance_selector.py` with `--fit-objective {pointwise,pairwise,hybrid_pairwise}`. The pairwise objectives train the ridge selector on within-chart measured causal comparisons from calibration rows only, then calibrate execute/fallback thresholds on candidate-row predictions. Added regression coverage in `tests/test_dominance_selector.py` for pairwise design rows outnumbering candidate rows.
|
| 36 |
- Extended `scripts/eval_learned_dominance_selector.py` with deployment-visible chart-compatibility feature sets and `--selector-chart-feature-mode`. The new path loads target/source chart features without hidden outcomes, compares whole/base/RGB-stat/object-layout segments, logs selector/source split hashes, and has regression coverage in `tests/test_dominance_selector.py`.
|
|
|
|
| 37 |
- Fixed `scripts/summarize_ctt_runs.py` so summary artifacts include `ctt*_learned_dominance*/metrics.json` runs such as `ctt_base_context_obs_learned_dominance_*`, not only the older `ctt_learned_dominance*` naming pattern.
|
| 38 |
- Extended `scripts/eval_dominance_selector.py` with `--score-source checkpoint`, cached chart embeddings/base scores, and single-thread torch scoring so a standalone train-only utility-energy checkpoint can be used for dominance evaluation.
|
| 39 |
- Updated `scripts/train_utility_energy.py` to save `chart_dim` in checkpoints.
|
|
@@ -720,6 +721,12 @@ Action-bound audit status: new rollout artifacts now log action-bound safety lab
|
|
| 720 |
- `runs/ctt_base_context_obs_learned_dominance_chartcompat_obs_success_weighted_task_envclip_k16_train_to_test`: selected success `0.3333`, coverage `0.7222`, selector gap `0.2569`
|
| 721 |
- `runs/ctt_base_context_obs_learned_dominance_chartcompat_obj_success_weighted_task_envclip_k16_train_to_test`: selected success `0.3125`, coverage `0.5486`, selector gap `0.2847`
|
| 722 |
- `runs/ctt_base_context_obs_learned_dominance_chartcompat_success_weighted_task_envclip_k16_train_to_test`: selected success `0.3264`, coverage `0.5486`, selector gap `0.2639`
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 723 |
|
| 724 |
### Best Metric Table
|
| 725 |
|
|
@@ -741,7 +748,10 @@ with a utility-margin ridge model and task-specific Mondrian thresholds. The
|
|
| 741 |
previous basic success-weighted task-threshold row reached 32.64%, and the
|
| 742 |
RGB-stat success-weighted row reaches 33.33%. Object-layout, source-evidence,
|
| 743 |
nonlinear, pairwise within-chart ranking, and hybrid pointwise-plus-pairwise
|
| 744 |
-
variants do not resolve the selector bottleneck.
|
|
|
|
|
|
|
|
|
|
| 745 |
|
| 746 |
### Paper Changes
|
| 747 |
|
|
@@ -761,6 +771,10 @@ variants do not resolve the selector bottleneck.
|
|
| 761 |
`latex/main.tex`: train-only RGB-stat target--source compatibility improves
|
| 762 |
selected success to `0.3542`, but the remaining selector gap keeps it a
|
| 763 |
diagnostic rather than a solved deployment method.
|
|
|
|
|
|
|
|
|
|
|
|
|
| 764 |
|
| 765 |
### Leakage and Data Status
|
| 766 |
|
|
@@ -852,7 +866,8 @@ variants do not resolve the selector bottleneck.
|
|
| 852 |
1. Treat K=16 `env_clip` as the current declared bounded-action diagnostic convention: it is action-bound-clean and now support-strong on held-out test (`0.5694` proposal oracle, `0.5486` OutcomePTR@16), exposing the selector/dominance blocker sharply.
|
| 853 |
2. Replace deterministic RGB/object descriptors with learned visual-language or task/object tokens that distinguish target, distractor, gripper/contact region, and task stage.
|
| 854 |
3. Train a dominance/utility selector that uses richer deployment-visible chart features under K=16 `env_clip`; the best train-clean row is now `0.3542` selected success against a `0.5694` proposal oracle, leaving a `0.2431` selector gap.
|
| 855 |
-
4.
|
| 856 |
-
5.
|
| 857 |
-
6.
|
| 858 |
-
7.
|
|
|
|
|
|
| 34 |
- Extended `scripts/eval_learned_dominance_selector.py` with `--threshold-scope task`, a Mondrian execute/fallback threshold over visible `task_id` buckets. The model weights and task thresholds are fit on calibration rows only; held-out eval outcomes are used only for reporting.
|
| 35 |
- Extended `scripts/eval_learned_dominance_selector.py` with `--fit-objective {pointwise,pairwise,hybrid_pairwise}`. The pairwise objectives train the ridge selector on within-chart measured causal comparisons from calibration rows only, then calibrate execute/fallback thresholds on candidate-row predictions. Added regression coverage in `tests/test_dominance_selector.py` for pairwise design rows outnumbering candidate rows.
|
| 36 |
- Extended `scripts/eval_learned_dominance_selector.py` with deployment-visible chart-compatibility feature sets and `--selector-chart-feature-mode`. The new path loads target/source chart features without hidden outcomes, compares whole/base/RGB-stat/object-layout segments, logs selector/source split hashes, and has regression coverage in `tests/test_dominance_selector.py`.
|
| 37 |
+
- Fixed `scripts/eval_nonlinear_dominance_selector.py` to load deployment-visible chart-compatibility maps via `--selector-chart-feature-mode` and to record source/index hashes when chart compatibility or source evidence is used. Added regression coverage that nonlinear chart-compat provenance records the default train source index.
|
| 38 |
- Fixed `scripts/summarize_ctt_runs.py` so summary artifacts include `ctt*_learned_dominance*/metrics.json` runs such as `ctt_base_context_obs_learned_dominance_*`, not only the older `ctt_learned_dominance*` naming pattern.
|
| 39 |
- Extended `scripts/eval_dominance_selector.py` with `--score-source checkpoint`, cached chart embeddings/base scores, and single-thread torch scoring so a standalone train-only utility-energy checkpoint can be used for dominance evaluation.
|
| 40 |
- Updated `scripts/train_utility_energy.py` to save `chart_dim` in checkpoints.
|
|
|
|
| 721 |
- `runs/ctt_base_context_obs_learned_dominance_chartcompat_obs_success_weighted_task_envclip_k16_train_to_test`: selected success `0.3333`, coverage `0.7222`, selector gap `0.2569`
|
| 722 |
- `runs/ctt_base_context_obs_learned_dominance_chartcompat_obj_success_weighted_task_envclip_k16_train_to_test`: selected success `0.3125`, coverage `0.5486`, selector gap `0.2847`
|
| 723 |
- `runs/ctt_base_context_obs_learned_dominance_chartcompat_success_weighted_task_envclip_k16_train_to_test`: selected success `0.3264`, coverage `0.5486`, selector gap `0.2639`
|
| 724 |
+
- nonlinear chart-compatibility K=16 diagnostics after fixing feature loading:
|
| 725 |
+
- `runs/ctt_base_context_obs_nonlinear_dominance_chartcompat_obs_utility_envclip_k16_train_to_test`: selected success `0.2847`, coverage `0.3542`, selector gap `0.2986`
|
| 726 |
+
- `runs/ctt_base_context_obs_nonlinear_dominance_chartcompat_obs_success_weighted_envclip_k16_train_to_test`: selected success `0.2847`, coverage `0.3542`, selector gap `0.2986`
|
| 727 |
+
- `runs/ctt_base_context_obs_nonlinear_dominance_chartcompat_obs_positive_envclip_k16_train_to_test`: selected success `0.2847`, coverage `0.3542`, selector gap `0.2986`
|
| 728 |
+
- `runs/ctt_base_context_obs_nonlinear_dominance_chart_sourcecompat_obs_utility_envclip_k16_train_to_test`: selected success `0.2639`, coverage `0.5278`, selector gap `0.3264`
|
| 729 |
+
- regressor-only follow-up `runs/ctt_base_context_obs_nonlinear_dominance_chartcompat_obs_success_weighted_reg_envclip_k16_train_to_test`: selected success `0.3264`, coverage `0.3403`, selector gap `0.2639`
|
| 730 |
|
| 731 |
### Best Metric Table
|
| 732 |
|
|
|
|
| 748 |
previous basic success-weighted task-threshold row reached 32.64%, and the
|
| 749 |
RGB-stat success-weighted row reaches 33.33%. Object-layout, source-evidence,
|
| 750 |
nonlinear, pairwise within-chart ranking, and hybrid pointwise-plus-pairwise
|
| 751 |
+
variants do not resolve the selector bottleneck. After fixing nonlinear
|
| 752 |
+
chart-compat feature loading, HGB/RF nonlinear selectors still peak at 32.64%,
|
| 753 |
+
so the remaining issue is not merely nonlinear model capacity over the current
|
| 754 |
+
hand-built chart statistics.
|
| 755 |
|
| 756 |
### Paper Changes
|
| 757 |
|
|
|
|
| 771 |
`latex/main.tex`: train-only RGB-stat target--source compatibility improves
|
| 772 |
selected success to `0.3542`, but the remaining selector gap keeps it a
|
| 773 |
diagnostic rather than a solved deployment method.
|
| 774 |
+
- Added the fixed nonlinear chart-compat selector negative diagnostic to
|
| 775 |
+
`latex/main.tex`: nonlinear selectors now load the same deployment-visible
|
| 776 |
+
chart maps and source hashes as the ridge selector, but do not improve over
|
| 777 |
+
the linear chart-compat row.
|
| 778 |
|
| 779 |
### Leakage and Data Status
|
| 780 |
|
|
|
|
| 866 |
1. Treat K=16 `env_clip` as the current declared bounded-action diagnostic convention: it is action-bound-clean and now support-strong on held-out test (`0.5694` proposal oracle, `0.5486` OutcomePTR@16), exposing the selector/dominance blocker sharply.
|
| 867 |
2. Replace deterministic RGB/object descriptors with learned visual-language or task/object tokens that distinguish target, distractor, gripper/contact region, and task stage.
|
| 868 |
3. Train a dominance/utility selector that uses richer deployment-visible chart features under K=16 `env_clip`; the best train-clean row is now `0.3542` selected success against a `0.5694` proposal oracle, leaving a `0.2431` selector gap.
|
| 869 |
+
4. Do not spend more time on model-capacity-only selector variants over the current deterministic chart statistics: fixed nonlinear chart-compat peaks at `0.3264`, below the ridge chart-compat row.
|
| 870 |
+
5. Improve the decoder/action representation beyond post-hoc scalar or per-dimension scaling; both collapse support, while tanh trades support for validity.
|
| 871 |
+
6. Stop treating deterministic object-layout as a likely win: it passed proxy but failed measured support relative to RGB-stat.
|
| 872 |
+
7. Rerun measured support/selection after the learned representation/selector fix under exactly the K=16 `env_clip` action convention before changing the support generator again.
|
| 873 |
+
8. Add actual collision/contact labels after action-bound validity is resolved.
|
workspace/reports/draft_audit_ctt.md
CHANGED
|
@@ -138,6 +138,15 @@ diagnostic, but it is still hand-built RGB statistics rather than learned
|
|
| 138 |
object-centric CTT geometry. Object-layout-only reaches 0.3125, combined
|
| 139 |
RGB-stat/object-layout ties 0.3264, and RGB-stat success-weighted reaches
|
| 140 |
0.3333, so deterministic object-layout features are not yet the missing method.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 141 |
The current continuation adds a leakage-clean deterministic object-layout chart
|
| 142 |
token path, but it is not yet promoted as a method result. The exporter
|
| 143 |
`scripts/export_chart_object_embeddings.py` writes 64D RGB foreground
|
|
@@ -336,6 +345,11 @@ Current artifact evidence:
|
|
| 336 |
selected success 0.3542, coverage 0.6597, proposal oracle 0.5694, and
|
| 337 |
success selector gap 0.2431. It uses train-only target--source RGB-stat
|
| 338 |
chart compatibility and remains a selector diagnostic.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 339 |
- `runs/ctt_base_context_obs_{val,test}_tanh_rollout_comparison` contain the
|
| 340 |
full bounded-decoder tanh measured validation/test diagnostics. They are
|
| 341 |
action-bound-clean but support-negative relative to clipped/no-clipping
|
|
@@ -595,9 +609,9 @@ Current missing:
|
|
| 595 |
improves selected success to 0.3542, with a 0.2431 selector gap to the
|
| 596 |
proposal oracle. This is better than the earlier 0.3264 basic
|
| 597 |
success-weighted task-threshold row, but not enough for a method-success
|
| 598 |
-
claim.
|
| 599 |
-
deterministic object-layout compatibility, and pairwise/hybrid
|
| 600 |
-
objectives do not materially improve the diagnosis.
|
| 601 |
|
| 602 |
## Immediate Fix Order
|
| 603 |
|
|
@@ -622,9 +636,10 @@ Next:
|
|
| 622 |
object-centric chart tokens; the current K=16 support row reaches 0.5694
|
| 623 |
proposal oracle, but the best train-clean selector reaches only 0.3542.
|
| 624 |
3. Replace the validation-calibrated ridge/context selector with a stronger
|
| 625 |
-
deployment-clean train-only dominance model. The
|
| 626 |
-
|
| 627 |
-
|
|
|
|
| 628 |
4. Fix action representation/decoding rather than applying a global scalar:
|
| 629 |
no-clipping jobs `15117739`--`15117744` show widespread bound violations,
|
| 630 |
while scaled0.215 fixes base bounds but collapses generated support and
|
|
|
|
| 138 |
object-centric CTT geometry. Object-layout-only reaches 0.3125, combined
|
| 139 |
RGB-stat/object-layout ties 0.3264, and RGB-stat success-weighted reaches
|
| 140 |
0.3333, so deterministic object-layout features are not yet the missing method.
|
| 141 |
+
The nonlinear selector path previously accepted chart-compat feature sets
|
| 142 |
+
without loading selector chart maps, making that diagnostic too weak. It now
|
| 143 |
+
loads the same deployment-visible selector chart maps as the ridge selector and
|
| 144 |
+
records source/index hashes. The rerun is still negative: HGB classifier
|
| 145 |
+
variants over RGB-stat compatibility reach 0.2847 selected success,
|
| 146 |
+
source+RGB-stat compatibility reaches 0.2639, and the best regressor-only
|
| 147 |
+
RGB-stat compatibility row reaches 0.3264. Therefore the current selector
|
| 148 |
+
failure is not resolved by nonlinear capacity over the deterministic chart
|
| 149 |
+
statistics.
|
| 150 |
The current continuation adds a leakage-clean deterministic object-layout chart
|
| 151 |
token path, but it is not yet promoted as a method result. The exporter
|
| 152 |
`scripts/export_chart_object_embeddings.py` writes 64D RGB foreground
|
|
|
|
| 345 |
selected success 0.3542, coverage 0.6597, proposal oracle 0.5694, and
|
| 346 |
success selector gap 0.2431. It uses train-only target--source RGB-stat
|
| 347 |
chart compatibility and remains a selector diagnostic.
|
| 348 |
+
- `runs/ctt_base_context_obs_nonlinear_dominance_chartcompat_obs_*_envclip_k16_train_to_test`
|
| 349 |
+
and `runs/ctt_base_context_obs_nonlinear_dominance_chartcompat_obs_*_reg_envclip_k16_train_to_test`
|
| 350 |
+
contain the fixed nonlinear chart-compat diagnostics. They now log
|
| 351 |
+
`selector_chart_feature_mode=base_context_obs` and train-source hashes; the
|
| 352 |
+
best selected success is 0.3264, below the ridge chart-compat row.
|
| 353 |
- `runs/ctt_base_context_obs_{val,test}_tanh_rollout_comparison` contain the
|
| 354 |
full bounded-decoder tanh measured validation/test diagnostics. They are
|
| 355 |
action-bound-clean but support-negative relative to clipped/no-clipping
|
|
|
|
| 609 |
improves selected success to 0.3542, with a 0.2431 selector gap to the
|
| 610 |
proposal oracle. This is better than the earlier 0.3264 basic
|
| 611 |
success-weighted task-threshold row, but not enough for a method-success
|
| 612 |
+
claim. Fixed nonlinear chart-compat selectors, source-evidence/task-threshold
|
| 613 |
+
variants, deterministic object-layout compatibility, and pairwise/hybrid
|
| 614 |
+
ridge objectives do not materially improve the diagnosis.
|
| 615 |
|
| 616 |
## Immediate Fix Order
|
| 617 |
|
|
|
|
| 636 |
object-centric chart tokens; the current K=16 support row reaches 0.5694
|
| 637 |
proposal oracle, but the best train-clean selector reaches only 0.3542.
|
| 638 |
3. Replace the validation-calibrated ridge/context selector with a stronger
|
| 639 |
+
deployment-clean train-only dominance model. The pairwise/hybrid ridge and
|
| 640 |
+
fixed nonlinear chart-compat diagnostics are negative: within-chart
|
| 641 |
+
causal-ranking loss or nonlinear capacity alone does not beat the current
|
| 642 |
+
chart-compatibility K=16 selector.
|
| 643 |
4. Fix action representation/decoding rather than applying a global scalar:
|
| 644 |
no-clipping jobs `15117739`--`15117744` show widespread bound violations,
|
| 645 |
while scaled0.215 fixes base bounds but collapses generated support and
|