Use full BRIGHT subset names on the leaderboard#38
Merged
Conversation
The leaderboard's SHORT label map only covered the 7 BRIGHT subsets that have runs, so the other 5 (aops, leetcode, pony, theoremqa-theorems/questions) fell back to the registry name and rendered as "BRIGHT — AOPS" etc. Add all 12 subsets with their official names and de-abbreviate the existing three (Earth Science, Sustainable Living, Stack Overflow) — the single-dataset table no longer needs cramped column labels. Correct the registry display name "BRIGHT — AOPS" to the official "BRIGHT — AoPS". Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.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.
Summary
BRIGHT subsets without runs rendered with the registry's
"BRIGHT — …"prefix on the leaderboard (e.g. "BRIGHT — AOPS", "BRIGHT — LeetCode"), and the three with runs used cramped abbreviations.Root cause — display-layer only, not data:
SHORTlabel map only covered the 7 BRIGHT subsets that have runs. The other 5 (aops, leetcode, pony, theoremqa-theorems/questions) fell back todataset_registry.yaml'sname, which carries the intended"BRIGHT — "prefix → it leaked onto the page."BRIGHT — AOPS"had the wrong casing.The raw results carry only the slug
dataset_id(bright-aops, …) — no display name — so nothing inreproducibility/data/runs/orresults.csvis affected or changed.Changes
index.astro— complete theSHORTmap for all 12 BRIGHT subsets with official names; de-abbreviate the three holdovers (Earth Science, Sustainable Living, Stack Overflow). The single-dataset table no longer needs short column labels.dataset_registry.yaml—"BRIGHT — AOPS"→"BRIGHT — AoPS".Runless subsets intentionally remain visible as placeholder datasets (per maintainer preference).
Test plan
🤖 Generated with Claude Code