This commit is contained in:
Paul Gauthier 2023-07-02 10:23:06 -07:00
parent 86ced88f8e
commit 2915acb9a6
2 changed files with 4 additions and 5 deletions

View file

@ -114,9 +114,9 @@ def show_stats(dirnames):
from matplotlib import rc from matplotlib import rc
rc("font", **{"family": "sans-serif", "sans-serif": ["Helvetica"], "size": 16}) rc("font", **{"family": "sans-serif", "sans-serif": ["Helvetica"], "size": 13})
fig, ax = plt.subplots(figsize=(9, 6)) fig, ax = plt.subplots(figsize=(7.5, 5))
ax.grid(axis="y", zorder=0, lw=0.2) ax.grid(axis="y", zorder=0, lw=0.2)
zorder = 1 zorder = 1
@ -154,7 +154,7 @@ def show_stats(dirnames):
**edge, **edge,
) )
if zorder == 2: if zorder == 2:
ax.bar_label(rects, padding=4, labels=[f"{v:.0f}%" for v in df[fmt]], size=12) ax.bar_label(rects, padding=4, labels=[f"{v:.0f}%" for v in df[fmt]], size=10)
if len(repeats): if len(repeats):
ax.errorbar( ax.errorbar(

View file

@ -1,8 +1,7 @@
# GPT code editing benchmarks
[![benchmark results](../assets/benchmarks.svg)](https://aider.chat/assets/benchmarks.svg) [![benchmark results](../assets/benchmarks.svg)](https://aider.chat/assets/benchmarks.svg)
# GPT code editing benchmarks
Aider is an open source command line chat tool that lets you work with GPT to edit Aider is an open source command line chat tool that lets you work with GPT to edit
code in your local git repo. code in your local git repo.
To do this, aider needs to be able to reliably recognize when GPT wants to edit local files, To do this, aider needs to be able to reliably recognize when GPT wants to edit local files,