mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 00:35:00 +00:00
aider: Make the model labels on the x axis larger.
# Aider chat conversation: USER: make the model labels on the x axis larger ASSISTANT: Here are the changes to make the model labels on the x-axis larger in `benchmark/swe_bench_lite.py` and `benchmark/over_time.py`: benchmark/swe_bench_lite.py ```python <<<<<<< SEARCH plt.xticks(rotation=45, ha='right') ======= plt.xticks(rotation=45, ha='right', fontsize=14) >>>>>>> REPLACE ``` benchmark/over_time.py ```python <<<<<<< SEARCH plt.tight_layout() ======= plt.xticks(fontsize=14) plt.tight_layout() >>>>>>> REPLACE ```
This commit is contained in:
parent
6765b12a7d
commit
a6ae4cab06
2 changed files with 2 additions and 1 deletions
|
@ -41,7 +41,7 @@ def plot_swe_bench_lite(data_file):
|
|||
ax.set_ylabel("Pass rate (%)", fontsize=18)
|
||||
ax.set_title("SWE Bench Lite pass rates", fontsize=20)
|
||||
ax.set_ylim(0, 30)
|
||||
plt.xticks(rotation=45, ha='right')
|
||||
plt.xticks(rotation=45, ha='right', fontsize=14)
|
||||
plt.tight_layout()
|
||||
plt.savefig("swe_bench_lite.png")
|
||||
plt.savefig("swe_bench_lite.svg")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue