headline_only runs pressure axes one at a time - #487
Merged
Conversation
…nteraction cell Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
# Conflicts: # CHANGELOG.md
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
# Conflicts: # CHANGELOG.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
phase2_pressure_contrasts(app/metrics.py) reads each pressure axis's delta against the shared none/none baseline independently (time_pressure - none,unreachable - none) — it never reads the combined interaction cell (time_pressure/unreachable).pressure_axes_by_condition(app/phase2/scope.py) now returns explicit per-condition(urgency, availability)cell lists ("plus shape": baseline + each non-baseline urgency + each non-baseline availability) instead of two axis lists to cross — dropping the unread interaction cell under the default--pressure-scope headline_only.--pressure-scope allis unaffected — still the full cross-product everywhere._grid_cells(app/phase2/runner.py) and the CLI cost estimator (app/cli.py) updated to consume the new per-condition cell-list shape; the estimator'spressure_axes_differcheck also got more precise — it now compares each condition's actual cell count against the naive product directly, so it still fires correctly even when only one condition is selected.Test plan
python -m pytest— 914 passed, 2 skippedphase2-eval --dry-runend to end: confirmedtime_pressure/unreachableshows 0 episodes while the other 3 cells run normally🤖 Generated with Claude Code