Spaces:
Running
Running
File size: 14,821 Bytes
c1f2130 5279156 bca888a fe99ffa bca888a c1f2130 8058fce bca888a a80dd9f f816900 fe99ffa bca888a fe99ffa bca888a fe99ffa bca888a fe99ffa bca888a 2ed4959 c1f2130 2ed4959 c1f2130 2ed4959 c1f2130 2ed4959 11542d9 a80dd9f c1f2130 bca888a c1f2130 2ed4959 c1f2130 bca888a a80dd9f c1f2130 bca888a c1f2130 11542d9 2ed4959 a80dd9f c1f2130 2ed4959 c1f2130 2ed4959 a80dd9f bca888a 2ed4959 bca888a 2ed4959 c1f2130 2ed4959 c1f2130 2ed4959 bca888a c1f2130 2ed4959 c2e86ea 415ac43 2ed4959 415ac43 2ed4959 415ac43 bca888a 6cc7b0b | 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 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 | export interface BackendManifest {
generated_at: string
config_version: number
skipped_configs: string[]
// Counts the upstream pipeline already records in manifest.json. The home
// page reads these directly so it does not have to load model-cards-lite
// (~20MB) just to display headline numbers.
model_count?: number
eval_count?: number
metric_eval_count?: number
source_config_count?: number
skipped_config_count?: number
summary_artifacts?: {
corpus_aggregates?: string
eval_hierarchy?: string
[key: string]: string | undefined
}
}
export interface BackendManifestStatus {
currentManifest: BackendManifest | null
latestManifest: BackendManifest | null
currentManifestSignature: string | null
latestManifestSignature: string | null
updateAvailable: boolean
refreshing: boolean
pendingRefreshCount: number
}
// ---------------------------------------------------------------------------
// EvalCards interpretive signals v1.0
// ---------------------------------------------------------------------------
export interface ReproducibilityGap {
has_reproducibility_gap: boolean
missing_fields: string[]
required_field_count: number
populated_field_count: number
signal_version: string
}
export type ProvenanceSourceType =
| "first_party"
| "third_party"
| "collaborative"
| "unspecified"
export interface Provenance {
source_type: ProvenanceSourceType
is_multi_source: boolean
first_party_only: boolean
distinct_reporting_organizations: number
signal_version: string
}
export type DivergenceThresholdBasis =
| "proportion_or_continuous_normalized"
| "percent"
| "range_5pct"
| "fallback_default"
export interface DifferingSetupField {
field: string
values: unknown[]
}
export interface VariantDivergence {
has_variant_divergence: boolean
group_id: string
divergence_magnitude: number
threshold_used: number
threshold_basis: DivergenceThresholdBasis
differing_setup_fields: DifferingSetupField[]
scores_in_group: number[]
this_triple_score: number | null
triple_count_in_group: number
score_scale_anomaly: boolean
group_variant_breakdown: Array<{ variant_key: string; row_count: number }>
signal_version: string
}
export interface CrossPartyDivergence {
has_cross_party_divergence: boolean
group_id: string
divergence_magnitude: number
threshold_used: number
threshold_basis: DivergenceThresholdBasis
scores_by_organization: Record<string, number>
differing_setup_fields: DifferingSetupField[]
organization_count: number
group_variant_breakdown: Array<{ variant_key: string; row_count: number }>
signal_version: string
}
export interface RowAnnotations {
reproducibility_gap: ReproducibilityGap | null
provenance: Provenance | null
variant_divergence: VariantDivergence | null
cross_party_divergence: CrossPartyDivergence | null
}
export interface ReportingCompleteness {
completeness_score: number
total_fields_evaluated: number
missing_required_fields: string[]
partial_fields: Array<{
field_path: string
score: number
populated_subitems: number
total_subitems: number
}>
field_scores: Array<{
field_path: string
coverage_type: "full" | "partial" | "reserved"
score: number
}>
signal_version: string
}
export interface BenchmarkComparability {
variant_divergence_groups: Array<{
group_id: string
model_route_id: string
divergence_magnitude: number
threshold_used: number
threshold_basis: DivergenceThresholdBasis
differing_setup_fields: DifferingSetupField[]
}>
cross_party_divergence_groups: Array<{
group_id: string
model_route_id: string
divergence_magnitude: number
threshold_used: number
threshold_basis: DivergenceThresholdBasis
scores_by_organization: Record<string, number>
differing_setup_fields: DifferingSetupField[]
}>
}
export interface EvalcardsAnnotations {
reporting_completeness?: ReportingCompleteness
benchmark_comparability?: BenchmarkComparability
}
export interface ReproducibilitySummary {
results_total: number
has_reproducibility_gap_count: number
populated_ratio_avg: number | null
}
export interface ProvenanceSummary {
total_results: number
total_groups: number
multi_source_groups: number
first_party_only_groups: number
source_type_distribution: Record<ProvenanceSourceType, number>
}
export interface ComparabilitySummary {
total_groups: number
groups_with_variant_check: number
groups_with_cross_party_check: number
variant_divergent_count: number
cross_party_divergent_count: number
}
export interface SignalSummaries {
reproducibility_summary?: ReproducibilitySummary
provenance_summary?: ProvenanceSummary
comparability_summary?: ComparabilitySummary
}
export interface CorpusAggregates {
generated_at: string
signal_version: string
stratification_dimensions: ["category"]
reproducibility: Stratified<ReproducibilityCorpusBlock>
completeness: Stratified<CompletenessCorpusBlock>
provenance: Stratified<ProvenanceCorpusBlock>
comparability: Stratified<ComparabilityCorpusBlock>
reporting_org_count?: number
total_benchmarks?: number
developers?: DeveloperListEntry[]
families?: Array<{
family_key: string
display_name: string
model_count: number
eval_count: number
}>
categories?: Array<{
category: string
model_count: number
eval_count: number
}>
}
export interface DeveloperListEntry {
developer: string
route_id: string
model_count: number
benchmark_count: number
evaluation_count: number
popular_evals: Array<{ benchmark: string; model_count: number }>
}
export interface Stratified<T> {
overall: T
by_category: Record<string, T>
}
export interface ReproducibilityCorpusBlock {
total_triples: number
triples_with_reproducibility_gap: number
reproducibility_gap_rate: number | null
agentic_triples: number
per_field_missingness: Record<string, {
missing_count: number
missing_rate: number | null
denominator: "all_triples" | "agentic_only"
denominator_count: number
}>
}
export interface CompletenessCorpusBlock {
total_triples: number
completeness_avg: number | null
completeness_min: number | null
completeness_max: number | null
}
export interface ProvenanceCorpusBlock {
total_triples: number
multi_source_triples: number
first_party_only_triples: number
source_type_distribution: Record<ProvenanceSourceType, number>
}
export interface ComparabilityCorpusBlock {
total_triples: number
variant_divergent_count: number
cross_party_divergent_count: number
groups_with_variant_check: number
groups_with_cross_party_check: number
}
// ---------------------------------------------------------------------------
// Hierarchy types (v3 β family-rooted tree).
//
// The producer emits this shape via eval_card_backend's
// `write_hierarchy()` after the Step 3 reshape. See
// /Users/jchim/projects/evaleval/notes/hierarchy-alignment.md Β§5.1
// for the canonical spec.
//
// Top level: `families[]` is the rich entity. Composites nest under
// families[].composites[]. `benchmark_index[]` cross-links a canonical
// benchmark that appears in multiple families.
//
// Each family chooses ONE of three layouts:
// - standalone_benchmarks: single-benchmark family.
// - benchmarks (flat): multiple benchmarks, no composite layer.
// - composites: multi-composite family (HELM has 7).
// ---------------------------------------------------------------------------
export interface HierarchyTags {
domains: string[]
languages: string[]
tasks: string[]
}
export interface HierarchyMetric {
key: string
display_name: string
/** Producer-supplied list of organisations whose results back this
* metric. Empty when source attribution wasn't recoverable. */
sources?: string[]
/** Per spec Β§5.1 β true when this is the benchmark's primary metric
* (matches `primary_metric_key`). */
is_primary?: boolean
/** Distinct model count contributing to this metric β drives
* primary-metric tie-break. */
models_count?: number
}
export interface HierarchySlice {
key: string
display_name: string
metrics: HierarchyMetric[]
/** Marks the bare-stem "Overall" slice (e.g. `gaia` inside the
* `gaia` benchmark). Frontend labels such a row "Overall". */
is_bare_stem?: boolean
/** Categorical tags derived client-side; see HierarchyFamily.derivedTags. */
derivedTags?: string[]
}
export interface HierarchyBenchmark extends SignalSummaries {
key: string
display_name: string
family_id: string
is_slice: boolean
/** True when this row IS the family/composite root (canonical_id
* matches the family or composite key). For a singleton family,
* the sole benchmark is overall. For multi-bench families with
* no head benchmark of the same name (HAL, BFCL with no `bfcl`
* benchmark), all are False. */
is_overall: boolean
/** True for the benchmark within its family that's the headline
* reading. Selected via FAMILY_PRIMARY_OVERRIDE β is_overall β
* alphabetical (see _mark_family_primary_benchmark in producer). */
is_primary?: boolean
/** Metric key whose primary metric should be displayed as the
* benchmark's headline number. Null when the benchmark has no
* metrics. */
primary_metric_key?: string | null
has_card: boolean
tags: HierarchyTags
slices: HierarchySlice[]
metrics: HierarchyMetric[]
summary_eval_ids?: string[]
/** Categorical tags derived client-side; see HierarchyFamily.derivedTags. */
derivedTags?: string[]
}
export interface HierarchyComposite extends SignalSummaries {
key: string
display_name: string
category: string
tags: HierarchyTags
benchmarks: HierarchyBenchmark[]
evals_count?: number
summary_eval_ids?: string[]
/** True for the headline composite within a multi-composite family. */
is_primary?: boolean
/** Categorical tags derived client-side; see HierarchyFamily.derivedTags. */
derivedTags?: string[]
}
export interface HierarchyFamily extends SignalSummaries {
key: string
display_name: string
category: string
tags: HierarchyTags
evals_count: number
eval_summary_ids: string[]
/** Exactly ONE of the three layout fields below is present. */
standalone_benchmarks?: HierarchyBenchmark[]
benchmarks?: HierarchyBenchmark[]
composites?: HierarchyComposite[]
/** Categorical tags derived at hydration time from
* data/benchmarks/categories.json (ref lookup with parent
* inheritance, regex fallback). Populated client-side after
* fetchEvalHierarchy via decorateHierarchyDerivedTags in
* lib/benchmark-tags.ts; not present in the snapshot artefact. */
derivedTags?: string[]
}
export interface BenchmarkIndexAppearance {
family_key: string
benchmark_key: string
eval_summary_ids: string[]
/** True when the family this appearance is under is the benchmark's
* natural "home" family (family_key === benchmark_key). */
is_canonical_home: boolean
}
export interface BenchmarkIndexEntry {
key: string
display_name: string
appearances: BenchmarkIndexAppearance[]
}
export interface EvalHierarchyStats {
family_count: number
composite_count: number
benchmark_count: number
slice_count: number
metric_count: number
metric_rows_scanned: number
}
export interface EvalHierarchy {
/** Schema marker: "v3.hierarchy.1". Older snapshots lack this. */
schema_version?: string
generated_at?: string
stats?: EvalHierarchyStats
families: HierarchyFamily[]
benchmark_index?: BenchmarkIndexEntry[]
/** Per-model cleaned benchmark count, keyed by model_route_id.
* Injected by cleanHierarchy() and persisted in the disk cache so
* data-backend can override the warehouse's pre-baked benchmarks_count
* (which is computed before the cleaner folds split families). */
_modelCoverageMap?: Record<string, number>
}
// ---------------------------------------------------------------------------
// comparison-index.json β per-(eval, metric) leaderboards for the histogram UI
// ---------------------------------------------------------------------------
export type MetricGroup =
| "capability"
| "robustness"
| "efficiency"
| "cost"
| "latency"
| "rank"
| "other"
export type SubmissionAxis = "default" | "harness" | "variant" | "rerun" | "mixed"
export interface ComparisonSubmission {
score: number
run_kind: SubmissionAxis
run_label: string
raw_model_id: string | null
}
export interface ComparisonScoreEntry {
model_route_id: string
model_family_id: string
model_family_name: string
developer: string
variant_key: string
score: number
rank: number
total: number
submission_count: number
submission_axis: SubmissionAxis
headline_run_kind?: SubmissionAxis
headline_run_label?: string
submissions?: ComparisonSubmission[]
}
export interface ComparisonMetricEntry {
metric_summary_id: string
metric_name: string
metric_id: string | null
metric_key: string | null
group: MetricGroup
group_order: number
lower_is_better: boolean
unit: string | null
scores: ComparisonScoreEntry[]
}
export interface ComparisonEvalEntry {
eval_summary_id: string
benchmark_id: string | null
family_id: string | null
family_display_name: string | null
composite_slug: string | null
composite_display_name: string | null
parent_benchmark_id: string | null
display_name: string | null
category: string
is_slice: boolean
is_summary_score: boolean
summary_score_for: string | null
summary_eval_ids: string[]
metrics: ComparisonMetricEntry[]
}
export interface ComparisonByModelEntry {
score: number
rank: number
total: number
submission_count: number
submission_axis: SubmissionAxis
}
export interface ComparisonIndex {
generated_at: string
config_version: number
metric_group_order: MetricGroup[]
evals: Record<string, ComparisonEvalEntry>
by_model: Record<string, Record<string, Record<string, ComparisonByModelEntry>>>
}
// ---------------------------------------------------------------------------
// peer-ranks.json β primary-metric peer rank per (eval, model)
// ---------------------------------------------------------------------------
/** Bare map shape consumed by the model-detail benchmark grid. */
export type PeerRanksMap = Record<
string,
Record<string, { position: number; total: number }>
>
/** Wrapped sidecar payload emitted by the v2 producer. Older (unversioned)
* publishings of peer-ranks.json at the dataset root were a bare map; the
* v2 snapshot wraps it with the same `{generated_at, config_version, ...}`
* envelope as the other sidecars. */
export interface PeerRanksSidecar {
generated_at: string
config_version: number
ranks: PeerRanksMap
}
|