Rename Greedy Bot to Human Devised Rule, remove other bot baselines from plots

Updated both plot_comparison.py and plot_prestige_radar.py to show only
the greedy bot baseline renamed as "Human Devised Rule". Regenerated
both plots.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
adit jain 2026-02-27 14:02:44 -08:00
parent 89065f3487
commit 763ed3d750
4 changed files with 15 additions and 13 deletions

View file

@ -39,7 +39,7 @@ MODELS = {
},
"greedy": {
"slug": "greedy_bot",
"label": "Greedy Bot",
"label": "Human Devised Rule",
"color": NAVY,
},
}
@ -140,7 +140,7 @@ def make_plot(runs):
("Sonnet 4.6", BLUE, "-", 4.0, 0.95),
("Gemini 3 Flash", ORANGE, "-", 4.0, 0.95),
("GPT-5.2", "#22C55E", "-", 4.0, 0.95),
("Greedy Bot", NAVY, "--", 3.5, 0.75),
("Human Devised Rule", NAVY, "--", 3.5, 0.75),
]
legend_handles = []
for lbl, clr, ls, lw, alpha in legend_items: