feat: [GDPval-AA v2 Updates 6 / n] - Multi-Stage Task Sampling#1746
Open
vadam5 wants to merge 12 commits into
Open
feat: [GDPval-AA v2 Updates 6 / n] - Multi-Stage Task Sampling#1746vadam5 wants to merge 12 commits into
vadam5 wants to merge 12 commits into
Conversation
Signed-off-by: Virginia Wu <vadams@nvidia.com>
Signed-off-by: Virginia Wu <vadams@nvidia.com>
Signed-off-by: Virginia Wu <vadams@nvidia.com>
Signed-off-by: Virginia Wu <vadams@nvidia.com>
Signed-off-by: Virginia Wu <vadams@nvidia.com>
Signed-off-by: Virginia Wu <vadams@nvidia.com>
…-NeMo/Gym into vadams/gdpval-multistage-sampling Signed-off-by: Virginia Wu <vadams@nvidia.com>
Signed-off-by: Virginia Wu <vadams@nvidia.com>
Signed-off-by: Virginia Wu <vadams@nvidia.com>
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 multi-stage adaptive ELO estimation to better approximate AA's ELO estimation strategy:
Multi-stage adaptive ELO estimation for GDPVal pairwise comparison.
Instead of comparing the evaluated model against every reference model on all
tasks, this runs a sequence of stages. Each stage:
Ttasks sampled from a task-distribution JSON file (seeresponses_api_agents.stirrup_agent.task_distribution),Mreference models on thosetasks (delegated to an injected
judge_stagecallable),battles (reusing
comparison.calculate_mle_elo), andMreferences for the next stage.Across stages,
Mtypically shrinks (zooming in on references whose knownELO is closest to the evaluated model's current estimate) while
Tgrows(spending the saved judge budget on a tighter final estimate).
To align with AA's evaluation setup, we will set the number of stages to 2. In the first stage, all reference models passed in the config will be used and in the second stage a subset of M reference models with ELOs close to the estimated elo in stage one will be used. The exact number of tasks in each stage (T) and the number of reference models (M) to use in the second stage will be determined experimentally.
Smoke Test Results:
I tried a small smoke test with two stages:
Stage 1: All models on 1 sampled task
Stage 2: Closest 2 models on 2 sampled tasks
I was evaluating the nemotron3 ultra checkpoint, which has an ELO of 1168 for the v2 benchmark. This small smoke test predicted 1134.