Removing tasks that only set a subject - #698
Draft
prabhuteja12 wants to merge 3 commits into
Draft
Conversation
GlobalMMLU_German only narrowed GlobalMMLU's SUBJECTS to the German
locale; the same behavior is available via EvalConfig.task_subjects,
e.g. task_name="GlobalMMLU", task_subjects=[("de", subject) for subject in MMLU_SUBJECTS].
Co-authored-by: Cursor <cursoragent@cursor.com>
GPQA_DIAMOND_COT only narrowed GPQA_COT's SUBJECTS to the diamond split. Register GPQA_COT itself instead and widen its SUBJECTS to ["gpqa_extended", "gpqa_diamond"], so the diamond subset remains available via task_name="GPQA_COT", task_subjects=["gpqa_diamond"]. Co-authored-by: Cursor <cursoragent@cursor.com>
…TS_SANITIZED tasks Both classes only narrowed their parent's SUBJECTS to the "sanitized" split and were never registered in task_names.py, so they were unreachable dead code. Neither MBPP nor MBPP_PROMPT_WITHOUT_TESTS is currently registered either; once registered, the sanitized subset remains reachable via task_subjects=["sanitized"] on the parent task. Co-authored-by: Cursor <cursoragent@cursor.com>
prabhuteja12
force-pushed
the
removesubjecttasks
branch
from
August 20, 2026 17:52
1909de5 to
2fedf88
Compare
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.
Description
This cleans up four tasks whose purpose was to filter down the subjects of a parent task. EvalConfig.task_subjects supports this.
Each one was deleted and, where needed, the parent task was adjusted so the same evaluation is still reachable via task_subjects.
Go commit-by-commit.