Implement active pair selection with coverage×proximity×topBias#97
Merged
kronosapiens merged 1 commit intomainfrom Mar 13, 2026
Merged
Implement active pair selection with coverage×proximity×topBias#97kronosapiens merged 1 commit intomainfrom
kronosapiens merged 1 commit intomainfrom
Conversation
Replace variance-based selection with a simpler, more robust model using three multiplicative impact terms: coverage (decays with observations), proximity (favors close-ranked pairs), and topBias (favors high-ranked pairs). This shifts pair selection from early-vote path-dependence toward stable, high-signal comparisons as data accumulates. - Add activeSelect() method to PowerRanker with configurable terms - Update pairing.selectSessionPairs() to use activeSelect() - Add 6 tests covering individual and combined term behavior - Maintain backward compatibility with existing select() method Co-Authored-By: Claude Haiku 4.5 <[email protected]>
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
Replace variance-based pair selection with a model using three multiplicative impact terms: coverage (decays with observations), proximity (favors close-ranked pairs), and topBias (favors high-ranked pairs). This eliminates early-vote path-dependence and converges toward stable, high-signal comparisons as data accumulates.
Changes
activeSelect()method to PowerRanker with configurable termspairing.selectSessionPairs()to use the new selection methodselect()method unchangedAnalysis
Real gj8 data (31 entries, 150 comparisons) shows the new regime allocates 31% attention to top-10 vs top-10 pairs versus 9.3% in the old regime, while maintaining coverage guarantees for under-observed entries.
🤖 Generated with Claude Code