Spaces:
Running
Running
File size: 11,018 Bytes
58e6611 44de261 16cdd3e 44de261 58e6611 1f960f8 58e6611 cb98dd6 44de261 cb98dd6 44de261 cb98dd6 44de261 cb98dd6 44de261 cb98dd6 44de261 cb98dd6 44de261 cb98dd6 58e6611 44de261 58e6611 44de261 58e6611 44de261 58e6611 16cdd3e 58e6611 16cdd3e 58e6611 16cdd3e 58e6611 16cdd3e 58e6611 16cdd3e 58e6611 16cdd3e 58e6611 16cdd3e 58e6611 16cdd3e 58e6611 16cdd3e 58e6611 16cdd3e 58e6611 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 | #!/usr/bin/env python3
# /// script
# dependencies = ["requests", "huggingface-hub", "datasets", "pyarrow"]
# ///
import requests
import json
import os
import sys
from datetime import datetime
BENCHMARK_CONFIGS = [
{"dataset": "openai/gsm8k", "key": "gsm8k", "name": "GSM8K", "gated": False},
{
"dataset": "TIGER-Lab/MMLU-Pro",
"key": "mmluPro",
"name": "MMLU-Pro",
"gated": False,
},
{
"dataset": "Idavidrein/gpqa",
"key": "gpqa",
"name": "GPQA Diamond",
"gated": True,
},
{"dataset": "cais/hle", "key": "hle", "name": "HLE", "gated": True},
{
"dataset": "SWE-bench/SWE-bench_Verified",
"key": "sweVerified",
"name": "SWE-bench Verified",
"gated": False,
},
{
"dataset": "MathArena/aime_2026",
"key": "aime2026",
"name": "AIME 2026",
"gated": False,
},
{
"dataset": "MathArena/hmmt_feb_2026",
"key": "hmmt2026",
"name": "HMMT Feb 2026",
"gated": False,
},
{
"dataset": "allenai/olmOCR-bench",
"key": "olmOcr",
"name": "olmOCR-bench",
"gated": False,
},
{
"dataset": "harborframework/terminal-bench-2.0",
"key": "terminalBench",
"name": "Terminal-Bench 2.0",
"gated": False,
},
{
"dataset": "ScaleAI/SWE-bench_Pro",
"key": "swePro",
"name": "SWE-bench Pro",
"gated": False,
},
{
"dataset": "FutureMa/EvasionBench",
"key": "evasionBench",
"name": "EvasionBench",
"gated": False,
},
]
def fetch_model_parameters(model_id, hf_token=None):
"""Fetch parameter count for a model from HuggingFace API.
Args:
model_id: Model ID (e.g., "meta-llama/Llama-3-70B")
hf_token: Optional HuggingFace token for private models
Returns:
Parameter count in billions, or None if not available
"""
url = f"https://huggingface.co/api/models/{model_id}"
headers = {}
if hf_token:
headers["Authorization"] = f"Bearer {hf_token}"
response = requests.get(url, headers=headers, timeout=5)
if response.status_code != 200:
return parse_params_from_name(model_id)
data = response.json()
if "safetensors" in data:
total_params = data["safetensors"].get("total")
if total_params:
return round(total_params / 1_000_000_000, 1)
if "parameters" in data["safetensors"]:
bf16_params = data["safetensors"]["parameters"].get("BF16")
if bf16_params:
return round(bf16_params / 1_000_000_000, 1)
return parse_params_from_name(model_id)
def parse_params_from_name(model_id):
"""Parse parameter count from model name/ID.
Examples:
- "meta-llama/Llama-3-70B" -> 70.0
- "Qwen/Qwen2-72B" -> 72.0
- "Qwen/Qwen3.5-397B-A17B" -> 397.0 (full model, not active params)
- "microsoft/Phi-3.5-mini-instruct" -> None (no clear size)
Returns:
Parameter count in billions, or None
"""
import re
# Pattern to match numbers followed by 'B' (case insensitive)
# Looks for patterns like: -70B, -72B-, _8B, etc.
# Also handles decimals like 1.5B
# Prioritize larger numbers (full model size vs active params)
matches = re.findall(r"[-_/](\d+\.?\d*)[Bb](?:[-_/]|$)", model_id)
if matches:
# Convert all matches to floats and take the maximum
# (assumes full model size is larger than active params)
params = [float(m) for m in matches]
return max(params)
return None
def fetch_all_from_apis(hf_token=None):
"""Fetch ALL models from APIs only - no manual data.
Args:
hf_token: Optional HuggingFace token for accessing gated datasets
"""
models_dict = {}
for config in BENCHMARK_CONFIGS:
url = f"https://huggingface.co/api/datasets/{config['dataset']}/leaderboard"
# Skip gated datasets if no token provided
if config.get("gated", False) and not hf_token:
print(f"Skipping {config['name']} (gated, requires HF token)")
continue
print(f"Fetching {config['name']}...")
# Add authorization header for gated datasets
headers = {}
if config.get("gated", False) and hf_token:
headers["Authorization"] = f"Bearer {hf_token}"
print(f" π Using auth token for gated dataset")
response = requests.get(url, headers=headers, timeout=10)
if response.status_code != 200:
print(f" β οΈ Skip (status {response.status_code})")
continue
data = response.json()
for entry in data:
model_id = entry.get("modelId")
score = entry.get("value")
# Create or update model
if model_id not in models_dict:
# Fetch parameter count from HuggingFace API
param_count = fetch_model_parameters(model_id, hf_token)
models_dict[model_id] = {
"id": model_id.lower().replace("/", "-"),
"name": model_id,
"provider": model_id.split("/")[0]
if "/" in model_id
else "Unknown",
"type": "open",
"metadata": {
"license": "Unknown",
"parametersInBillions": param_count,
"contextWindow": 0,
"modality": "text",
"architecture": "Transformer",
},
"benchmarks": {},
}
# Add benchmark score
models_dict[model_id]["benchmarks"][config["key"]] = entry
print(f" β Found {len([e for e in data if e.get('modelId')])} models")
# Calculate aggregate scores
models = list(models_dict.values())
return models
def flatten_model_for_parquet(model, all_benchmark_keys):
"""Flatten nested model structure for parquet compatibility.
Converts nested JSON structure into flat columns suitable for parquet format.
Each benchmark score becomes its own column.
Args:
model: Model dict with nested structure
all_benchmark_keys: List of all possible benchmark keys to ensure consistent schema
"""
flat = {
"model_id": model["id"],
"model_name": model["name"],
"provider": model["provider"],
"model_type": model["type"],
"parameters_billions": model["metadata"].get("parametersInBillions"),
"license": model["metadata"].get("license", "Unknown"),
"context_window": model["metadata"].get("contextWindow", 0),
"modality": model["metadata"].get("modality", "text"),
"architecture": model["metadata"].get("architecture", "Transformer"),
}
# Add ALL benchmark columns (with None for missing values)
# This ensures consistent schema across all rows
benchmarks = model.get("benchmarks", {})
for bench_key in sorted(all_benchmark_keys):
if bench_key in benchmarks:
bench_data = benchmarks[bench_key]
flat[f"{bench_key}_score"] = bench_data.get("value")
else:
flat[f"{bench_key}_score"] = None
# Calculate aggregate metrics
if benchmarks:
scores = [
b.get("value") for b in benchmarks.values() if b.get("value") is not None
]
if scores:
flat["aggregate_score"] = round(sum(scores) / len(scores), 2)
flat["coverage_count"] = len(benchmarks)
flat["coverage_percent"] = round((len(benchmarks) / 11) * 100, 1)
else:
flat["aggregate_score"] = None
flat["coverage_count"] = 0
flat["coverage_percent"] = 0.0
else:
flat["aggregate_score"] = None
flat["coverage_count"] = 0
flat["coverage_percent"] = 0.0
return flat
def main():
print("=" * 70)
print("Fetching from Official APIs & Uploading to HF Dataset")
print("=" * 70)
print()
# Get HF token from environment (required for upload)
hf_token = os.environ.get("HF_TOKEN")
if not hf_token:
print("β HF_TOKEN environment variable required")
print(" Export your token: export HF_TOKEN=your_token")
sys.exit(1)
print("β HF_TOKEN found")
print("π Will fetch gated datasets (GPQA, HLE)")
print()
# Fetch models from APIs
models = fetch_all_from_apis(hf_token)
if not models:
print("β No models fetched - exiting")
sys.exit(0)
print()
print("=" * 70)
print(f"β Fetched {len(models)} models from APIs")
print("=" * 70)
# Collect all benchmark keys to ensure consistent schema
all_benchmark_keys = set()
for m in models:
all_benchmark_keys.update(m.get("benchmarks", {}).keys())
print(
f"\nπ Found {len(all_benchmark_keys)} unique benchmarks: {sorted(all_benchmark_keys)}"
)
# Flatten data for parquet (pass all_benchmark_keys for consistent schema)
print("\nπ Flattening data for parquet format...")
flattened_models = [
flatten_model_for_parquet(m, all_benchmark_keys) for m in models
]
# Create HF Dataset
from datasets import Dataset
dataset = Dataset.from_list(flattened_models)
print(f" β Created dataset with {len(dataset)} rows")
print(f" β Schema: {len(dataset.column_names)} columns")
# Upload to HuggingFace
DATASET_REPO = "OpenEvals/leaderboard-data"
print(f"\nπ€ Uploading to {DATASET_REPO}...")
try:
timestamp = datetime.now().strftime("%Y-%m-%d %H:%M:%S UTC")
dataset.push_to_hub(
DATASET_REPO,
token=hf_token,
commit_message=f"Automated update: {timestamp}",
)
print(f" β
Successfully uploaded!")
print(f" π View at: https://huggingface.co/datasets/{DATASET_REPO}")
except Exception as e:
print(f" β Upload failed: {e}")
sys.exit(1)
# Show summary
benchmark_keys = [
"gsm8k",
"mmluPro",
"gpqa",
"hle",
"olmOcr",
"sweVerified",
"swePro",
"aime2026",
"terminalBench",
"evasionBench",
"hmmt2026",
]
print("\nπ Benchmark Coverage:")
for bench in benchmark_keys:
col_name = f"{bench}_score"
if col_name in dataset.column_names:
# Count non-null values in the column
values = dataset[col_name]
count = sum(1 for v in values if v is not None)
if count > 0:
print(f" {bench:20s}: {count:2d} models")
print("\nβ
Data updated successfully!")
print(f" Total models: {len(models)}")
print(f" Timestamp: {timestamp}")
if __name__ == "__main__":
main()
|