-
Notifications
You must be signed in to change notification settings - Fork 449
Update Safety Evals #850
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
Open
mgmorgan23
wants to merge
17
commits into
main
Choose a base branch
from
maliam-update-safety-evals
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.
+77
−81
Open
Update Safety Evals #850
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
7479bed
Update script to call new oe-eval safety evals
mgmorgan23 50ab0de
Add num gpu constraints
mgmorgan23 0bc9247
Add handling for alternative safety beaker image
mgmorgan23 460a874
typos in script, add hf key to gantry args
mgmorgan23 547b121
Merge branch 'main' into maliam-update-safety-evals
mgmorgan23 995028b
move safety eval call into a task suite
mgmorgan23 e0556fe
Merge branch 'maliam-update-safety-evals' of https://github.com/allen…
mgmorgan23 1333eb3
Merge branch 'main' into maliam-update-safety-evals
mgmorgan23 8a1b5df
update num_gpu calculation
mgmorgan23 8d0f5d5
Merge branch 'maliam-update-safety-evals' of https://github.com/allen…
mgmorgan23 15f25dc
typo
mgmorgan23 8410b29
Merge branch 'main' into maliam-update-safety-evals
mgmorgan23 53c70f5
update to match oe-eval naming and engine requirements
mgmorgan23 13c90f5
Merge branch 'maliam-update-safety-evals' of https://github.com/allen…
mgmorgan23 f4b0860
typo
mgmorgan23 d633f7b
Merge branch 'main' into maliam-update-safety-evals
mgmorgan23 6ee93e5
update with safety eval version
mgmorgan23 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
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
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
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.
Bug: GPU Count Error in Safety Evaluation Tasks
The GPU count for
SAFETY_EVAL_REASONING
tasks is quadrupled instead of doubled whennum_gpus
starts greater than one. This occurs because the new doubling logic forSAFETY_EVAL_REASONING
runs after an existing doubling fornum_gpus > 1
, leading to 4x the original GPU count and potentially excessive resource allocation.