-
Notifications
You must be signed in to change notification settings - Fork 196
feat(eval): --backend=gym pilot for ns eval (gsm8k) #1454
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
gwarmstrong
wants to merge
20
commits into
main
Choose a base branch
from
georgea/convert-eval-to-gym
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
ab1a709
feat(eval): add --backend={skills,gym} flag and Skills→Gym override t…
gwarmstrong 81ea7bb
feat(eval): wire --backend=gym to a GymEvalClientScript pilot (gsm8k …
gwarmstrong 4bd1542
feat(eval): gym→skills metrics adapter (math case)
gwarmstrong b2437b5
fix(eval): pick gym container when backend=gym
gwarmstrong 85d1b1c
fix(eval): point Gym backend at the Gym-shape input JSONL, not Skills'
gwarmstrong 53a2530
fix(gym translator): drop prompt_config / prompt_template
gwarmstrong 57c9f71
fix(gym eval): pass Gym-side prompt_config to ng_collect_rollouts
gwarmstrong 535f871
fix(gym eval): mkdir output dir before ng_collect_rollouts
gwarmstrong 1a53572
fix(adapters): move gym→skills adapter out of nemo_skills.pipeline
gwarmstrong f32803d
fix(gym): shell-quote extra_body dict literals
gwarmstrong 0e9278a
fix(gym): drop responses_create_params.extra_body — schema is extra='…
gwarmstrong f1ffd1d
refactor(gym eval): break the Skills output schema; use Gym native
gwarmstrong 3e01d00
feat(gym registry): add aime24, aime25, hmmt_feb25, hendrycks_math
gwarmstrong 40d3ed4
fix(gym registry): align prompt_config paths with upstream Gym main
gwarmstrong f44bea5
feat(gym registry): add gpqa (mcqa) and ifbench
gwarmstrong a7bf49e
fix(gym registry): add livecodebench (v6_2408_2505) + realign gpqa pr…
gwarmstrong e9ca290
feat(gym registry): auto-discover all 57 Skills↔Gym shared benchmarks
gwarmstrong 711fcdc
gym backend: infra fixes for judge / sandbox / translation parity
gwarmstrong 647d931
gym backend: dedicated dispatcher for --backend=gym
gwarmstrong 5d1b77a
eval_gym: trigger run_exp on the wrapping experiment
gwarmstrong File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reject unsupported Gym modes here.
Lines 619-650 only enforce “one benchmark per job”.
--backend=gymstill accepts multi-model inputs and chunked eval units, even though this path is scoped to a single model without chunking. Please fail fast before constructingGymEvalClientScript; otherwise those user flags are accepted and the failure moves downstream.Suggested guard
As per coding guidelines, "Avoid cases where user-passed parameters are unused; code should fail if user specifies an unsupported argument or if a required argument is missing."