leaderboard: method paper citations, dataset HuggingFace links, model icons - #40
Merged
radinhamidi merged 1 commit intoJun 24, 2026
Conversation
… icons - Method dropdown on the home page now lists a paper link per method, sourced from the curated method→paper map shared with the marketing site. - Datasets carry HuggingFace subset links (BEIR, BRIGHT, TREC-DL), shown on the dataset cards, dataset detail headers, and beside the dataset selector. - Models render polished display names (e.g. GPT-4.1, Qwen2.5 72B Instruct) with a provider logo icon in the home table LLM column and on model cards. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
radinhamidi
deleted the
feat/leaderboard-method-citations-dataset-hf-model-icons
branch
June 24, 2026 01:57
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.
Brings the leaderboard's method, dataset, and model surfaces up to parity with the marketing site and adds source links throughout.
Methods — paper citations
The home-page Method control is now a custom dropdown that lists a
paper ↗link per method, opening the paper in a new tab. Citations are sourced at build time from the curated method→paper map shared with the marketing site (web/site/src/data/methods.json), so there is a single source of truth. Variant ids (e.g.query2doc-cot/fs/zs) resolve to their base method's paper.Datasets — HuggingFace links
Each dataset now carries a canonical HuggingFace subset link, surfaced on the
/datasetscards, the/datasets/[id]header, and beside the dataset selector on the home page:BeIR/*reposxlangai/BRIGHT(/viewer/examples/<domain>)Two are approximations of the closest public HF home: TREC-NEWS links the BEIR generated-queries artifact (the WaPo corpus can't be redistributed), and DL19/DL20 link community passage mirrors (no first-party standalone repos exist).
Models — polished names + provider icons
Model ids render as polished display names (
GPT-4.1,GPT-4.1 nano,Qwen2.5 72B Instruct,Qwen2.5 7B Instruct) with an OpenAI/Qwen logo icon in the home table LLM column and on the/modelscards. Names flow from a singledisplayModelmap.Notes
build-data.ts; provider logos live insrc/lib/providerIcon.ts. Nothing is hardcoded in page templates.src/data/stay gitignored (rebuilt at deploy).🤖 Generated with Claude Code