From 2817f796492587b12f63cf0a7ffb231b9937cb15 Mon Sep 17 00:00:00 2001 From: Philip Taron Date: Tue, 16 Sep 2025 17:47:50 -0700 Subject: [PATCH] ci.eval.compare: put things with counts together --- ci/eval/compare/cmp-stats.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/eval/compare/cmp-stats.py b/ci/eval/compare/cmp-stats.py index 7afb3a0bec1e..68ebd2d0236e 100644 --- a/ci/eval/compare/cmp-stats.py +++ b/ci/eval/compare/cmp-stats.py @@ -86,8 +86,10 @@ def metric_sort_key(name: str) -> str: return (2, name) elif name.endswith(("bytes", "Bytes")): return (3, name) - else: + elif name.startswith("nr") or name.endswith("number"): return (4, name) + else: + return (5, name) def dataframe_to_markdown(df: pd.DataFrame) -> str: