summaryrefslogtreecommitdiff
path: root/rrog
diff options
context:
space:
mode:
authorYurenHao0426 <Blackhao0426@gmail.com>2026-06-22 13:10:30 -0500
committerYurenHao0426 <Blackhao0426@gmail.com>2026-06-22 13:10:30 -0500
commit6301f7ef680527bc34b34c06bfc0eba567ddbc45 (patch)
tree6202c39f8ed0a15014582577fe67f6d8eb28f0f4 /rrog
parent322a70e9ceaf2cd9d09e9847e291952c3dab9518 (diff)
Add OGB protocol diagnosticsHEADmain
Diffstat (limited to 'rrog')
-rw-r--r--rrog/collect_results.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/rrog/collect_results.py b/rrog/collect_results.py
index 125c0ab..4c1390c 100644
--- a/rrog/collect_results.py
+++ b/rrog/collect_results.py
@@ -84,7 +84,11 @@ def _is_classic_baseline(rep: dict) -> bool:
def _compute_label(rep: dict) -> str:
- label = str(rep["compute"])
+ compute = str(rep["compute"])
+ if _is_classic_baseline(rep):
+ label = "classic"
+ else:
+ label = f"{compute}-T{rep.get('T')}-ns{rep.get('n_sup')}"
ema = float(rep.get("ema", 0.0) or 0.0)
if ema > 0:
label += f"+ema{ema:g}"