mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-31 01:35:00 +00:00
Updated colors and alpha values for Aider models in SWE benchmark plot.
This commit is contained in:
parent
484f625b2c
commit
cf1140ba71
1 changed files with 2 additions and 2 deletions
|
@ -31,10 +31,10 @@ def plot_swe_bench_lite(data_file):
|
|||
spine.set_edgecolor("#DDDDDD")
|
||||
spine.set_linewidth(0.5)
|
||||
|
||||
colors = ["#b3e6a8" if "Aider" in model else "#b3d1e6" for model in models]
|
||||
colors = ["#17965A" if "Aider" in model else "#b3d1e6" for model in models]
|
||||
bars = []
|
||||
for model, pass_rate, color in zip(models, pass_rates, colors):
|
||||
alpha = 0.9 if "Aider" in model else 0.3
|
||||
alpha = 0.6 if "Aider" in model else 0.3
|
||||
bar = ax.bar(model, pass_rate, color=color, alpha=alpha, zorder=3)
|
||||
bars.append(bar[0])
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue