org-activity-heatmap / src /constants /organizations.ts
Viani's picture
feat: dynamic leaderboard ranked by HF activity + papers stats
7b8fd86
import { OrgCandidate } from "../types/heatmap";
export const LEADERBOARD_SIZE = 16;
export const CANDIDATES: OrgCandidate[] = [
// Original 16
{ authors: ["mistralai"], color: "#ff7000" },
{ authors: ["meta-llama", "facebook"], color: "#1877F2" },
{ authors: ["openai"], color: "#10A37F" },
{ authors: ["Anthropic"], color: "#cc785c" },
{ authors: ["google"], color: "#DB4437" },
{ authors: ["allenai"], color: "#F45098" },
{ authors: ["apple"], color: "#0088cc" },
{ authors: ["microsoft"], color: "#FEB800" },
{ authors: ["nvidia"], color: "#76B900" },
{ authors: ["deepseek-ai"] },
{ authors: ["Qwen"] },
{ authors: ["CohereLabs", "CohereForAI"] },
{ authors: ["ibm-granite"] },
{ authors: ["stabilityai"], color: "#A020F0" },
{
authors: [
"huggingface", "OpenEvals", "HuggingFaceTB", "HuggingFaceH4",
"HuggingFaceM4", "HuggingFaceFW", "HuggingFaceFV", "open-r1",
"parler-tts", "nanotron", "lerobot", "distilbert",
],
color: "#FEC912",
},
{ authors: ["ByteDance", "ByteDance-Seed", "bytedance-research"], color: "#e93b3b" },
// Hardware / chip companies
{ authors: ["amd"], color: "#ED1C24" },
{ authors: ["Intel"], color: "#0071C5" },
{ authors: ["qualcomm"] },
// Research labs & open-source orgs
{ authors: ["EleutherAI"] },
{ authors: ["bigscience"] },
{ authors: ["NousResearch"] },
{ authors: ["tiiuae"] },
{ authors: ["ai21labs"] },
{ authors: ["Salesforce"] },
{ authors: ["unsloth"] },
{ authors: ["black-forest-labs"] },
{ authors: ["sentence-transformers"] },
// Chinese AI labs
{ authors: ["alibaba-nlp"] },
{ authors: ["THUDM"] },
{ authors: ["01-ai"] },
{ authors: ["internlm"] },
{ authors: ["baichuan-inc"] },
// Other notable orgs
{ authors: ["xai-org"] },
{ authors: ["amazon"] },
{ authors: ["databricks"] },
{ authors: ["Nexusflow"] },
{ authors: ["Writer"] },
];