Rescore submissions#147
Open
stefanc-ai2 wants to merge 11 commits intomainfrom
Open
Conversation
mdarcy220
reviewed
Apr 28, 2026
| set -euo pipefail | ||
|
|
||
| # Edit this regex to change which submission logs are targeted for rescoring. | ||
| TARGET_LOG_REGEX='(sqa-(test|dev)|e2e-discovery(-hard)?-(test|validation))' |
Contributor
There was a problem hiding this comment.
Two snags:
- This regex doesn't pick up the sqa-specific solvers since those submitted eval files are renamed; the more reliable way (used by
astabench score) is to look inside the files to check the stored task name. - This only captures SQA and E2E tasks because those are the scorers that changed in this round of model deprecations, but they are not the only two tasks that use LLM judges.
IMO the ideal fix would be to change the detection method and make it more configurable for future rescores. Alternatively, I think it would be okay to start it with echo "This script is a template and needs to be adapted to your use case. Edit and try again"; exit 1 so that it's obvious to future users that it needs the per-use-case adaptation (maybe also include a comment about the regex detection caveat).
|
|
||
| The scorer project is pinned independently in [`solvers/scorer/pyproject.toml`](solvers/scorer/pyproject.toml). | ||
|
|
||
| ### Rescoring Existing Submissions |
| dependencies = [ | ||
| "inspect_ai==0.3.203", | ||
| "agent-eval[leaderboard]==0.1.47", | ||
| "agent-eval[leaderboard]==0.1.49", |
Contributor
There was a problem hiding this comment.
Suggested change
| "agent-eval[leaderboard]==0.1.49", | |
| "agent-eval[leaderboard]==0.1.50", |
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.
Code for https://github.com/allenai/nora-issues/issues/2760
Script to rescore plus documentation.