This commit is contained in:
Paul Gauthier 2024-05-23 09:49:47 -07:00
parent ee7dcd5071
commit 484f625b2c
3 changed files with 31 additions and 31 deletions

View file

@ -34,7 +34,7 @@ def plot_swe_bench_lite(data_file):
colors = ["#b3e6a8" 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.5
alpha = 0.9 if "Aider" in model else 0.3
bar = ax.bar(model, pass_rate, color=color, alpha=alpha, zorder=3)
bars.append(bar[0])