ci.eval.compare: put things with counts together
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user