artificial-citizen commited on
Commit
969dcd7
·
verified ·
1 Parent(s): f9949f6

Add gates.json — canonical release-gate thresholds for /lab model-compare (protoContent#399)

Browse files
Files changed (1) hide show
  1. gates.json +40 -0
gates.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "1.0",
3
+ "updated": "2026-07-05",
4
+ "description": "Release-gate thresholds for protoLabs model cards and the /lab model-compare delta semantics. A quant PASSES its gate when its regression vs baseline stays within max_regression. Delta rendering is gate-aware, NOT red-on-any-negative: beats_base (green), within_gate (muted chip -- the parity claim every model card ships), over_gate (red -- a real regression). Naive red-on-negative would contradict every card we publish.",
5
+ "direction": "higher_is_better",
6
+ "delta_convention": "delta = value - baseline. A row is within gate when (baseline - value) <= max_regression, i.e. delta >= -max_regression. beats_base when delta > 0; within_gate when -max_regression <= delta <= 0; over_gate when delta < -max_regression.",
7
+ "baseline_fields": ["baseline_bf16", "baseline_fp8_official"],
8
+ "baseline_note": "Gate rows carry ONE baseline field naming the reference the quant was gated against (bf16 for most; fp8_official when the shipped baseline was the official FP8, e.g. Agents-A1). Frontend: use whichever baseline_* key is present on the row.",
9
+ "gates": {
10
+ "claw": {
11
+ "max_regression": 0.03,
12
+ "unit": "score",
13
+ "metric": "mean_task_score",
14
+ "label": "claw (agentic)",
15
+ "suites": ["claw_paired", "claw_paired29", "claw", "claw_business", "claw_coding"]
16
+ },
17
+ "function_call": {
18
+ "max_regression": 0.02,
19
+ "unit": "rate",
20
+ "metric": "pass_rate",
21
+ "label": "function-call",
22
+ "suites": ["function_call"],
23
+ "note": "Published claim is '<= 2 percentage points'. pass_rate is stored as a 0-1 rate, so the threshold in row units is 0.02."
24
+ },
25
+ "reasoning": {
26
+ "max_regression": 0.05,
27
+ "unit": "score",
28
+ "metric": "mean_task_score",
29
+ "label": "reasoning",
30
+ "suites": ["reasoning_v2", "reasoning_v2_16k", "reasoning"]
31
+ },
32
+ "code": {
33
+ "max_regression": 0.05,
34
+ "unit": "score",
35
+ "metric": "mean_task_score",
36
+ "label": "code",
37
+ "suites": ["code_exec_v2", "code_spec_delta", "coding", "code_exec"]
38
+ }
39
+ }
40
+ }