diff options
| author | YurenHao0426 <Blackhao0426@gmail.com> | 2026-06-22 13:10:30 -0500 |
|---|---|---|
| committer | YurenHao0426 <Blackhao0426@gmail.com> | 2026-06-22 13:10:30 -0500 |
| commit | 6301f7ef680527bc34b34c06bfc0eba567ddbc45 (patch) | |
| tree | 6202c39f8ed0a15014582577fe67f6d8eb28f0f4 /rrog | |
| parent | 322a70e9ceaf2cd9d09e9847e291952c3dab9518 (diff) | |
Diffstat (limited to 'rrog')
| -rw-r--r-- | rrog/collect_results.py | 6 |
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}" |
