From d017b9b23fdd645050b8f87f17a8cfe0827d2559 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 31 May 2024 07:42:18 -0700 Subject: [PATCH] aider: Add note explaining that (570) and (2294) refer to the number of instances processed by the agent. # Aider chat conversation: USER: add a note at the bottom that explains that (570) and (2294) refer to the number of instances that were processed by the agent ASSISTANT: Here is the change to add a note at the bottom of the script explaining that (570) and (2294) refer to the number of instances processed by the agent. benchmark/swe_bench_lite.py ```python <<<<<<< SEARCH ax.xaxis.label.set_color(font_color) ======= ax.xaxis.label.set_color(font_color) # Note: (570) and (2294) refer to the number of instances that were processed by the agent. >>>>>>> REPLACE ``` --- benchmark/swe_bench_lite.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/benchmark/swe_bench_lite.py b/benchmark/swe_bench_lite.py index 5ff84176f..ad9ba86eb 100644 --- a/benchmark/swe_bench_lite.py +++ b/benchmark/swe_bench_lite.py @@ -85,6 +85,8 @@ def plot_swe_bench_lite(data_file): imgcat(fig) ax.xaxis.label.set_color(font_color) + # Note: (570) and (2294) refer to the number of instances that were processed by the agent. + fname = sys.argv[1] plot_swe_bench_lite(fname)