feat(cybergym): v3 lane bottom-fill payout curve (leader takes remainder) - #146
Open
ai-hpc wants to merge 1 commit into
Open
feat(cybergym): v3 lane bottom-fill payout curve (leader takes remainder)#146ai-hpc wants to merge 1 commit into
ai-hpc wants to merge 1 commit into
Conversation
…takes remainder The v3 CyberGym lane (30%) previously RENORMALIZED the top-N fixed shares when fewer than five miners qualified. _award_shares now gives the BOTTOM ranks their fixed level shares from the bottom up (rank n -> S5, rank n-1 -> S4, ...) and rank 1 the remainder, so the lane still pays its full 1.0 while a thin field concentrates on the leader (winner-take-most): N=1 [1.00] N=2 [0.96, 0.04] N=3 [0.89, 0.07, 0.04] N=4 [0.79, 0.10, 0.07, 0.04] N=5 [0.65, 0.14, 0.10, 0.07, 0.04] Level scores are the existing TOURNAMENT_SHARES; shares always sum to 1. Change is byte-identical in cathedral-distill's cybergym_tournament (BOUNDARY.md fork hazard), guarded by an identical golden test in both repos. N=0 (empty lane) is unchanged here; the N=0->compute redirect lands in a follow-up. Reward-path; for wallscaler review, not self-merged. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Member
Author
|
Co-merge required (fork hazard). This |
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.
Implements jared's v3 CyberGym-lane payout curve (STAGE A of the v3 lane redesign). With fewer than five qualified miners, the bottom ranks take their fixed level shares from the bottom up and rank 1 absorbs the remainder (winner-take-most), replacing the old renormalize:
Level scores are the existing
TOURNAMENT_SHARES; shares always sum to 1. The change is byte-identical incathedral-validatorandcathedral-distillcybergym_tournament.py(BOUNDARY.md fork hazard), guarded by an identical golden test in both.N=0 (empty lane) is unchanged here; the N=0->compute redirect is a follow-up (it touches the validator re-derivation and is a v3 contract-shape change).
Reward-path; not self-merged.
🤖 Generated with Claude Code