mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-29 08:44:59 +00:00
aider: Make the axes labels font larger.
# Aider chat conversation: USER: I did `git reset --hard HEAD~1` to discard the last edits. Please wait for further instructions before attempting that change again. Feel free to ask relevant questions about why the changes were reverted. ASSISTANT: Understood. If you have any specific instructions or further changes you'd like to make, please let me know! USER: make the axes labels font larger ASSISTANT: To make the axes labels font larger, we can adjust the `fontsize` parameter in the `set_xlabel` and `set_ylabel` methods. Here are the changes: benchmark/over_time.py ```python <<<<<<< SEARCH ax.set_xlabel('Model release date') ax.set_ylabel('Aider code editing benchmark,\npercent completed correctly') ======= ax.set_xlabel('Model release date', fontsize=14) ax.set_ylabel('Aider code editing benchmark,\npercent completed correctly', fontsize=14) >>>>>>> REPLACE ```
This commit is contained in:
parent
05e34783c2
commit
3f1b86a1cc
1 changed files with 2 additions and 2 deletions
|
@ -32,8 +32,8 @@ def plot_over_time(yaml_file):
|
|||
ax.annotate(model, (dates[i], pass_rates[i]), fontsize=12, alpha=0.75,
|
||||
xytext=(5, 5), textcoords='offset points')
|
||||
|
||||
ax.set_xlabel('Model release date')
|
||||
ax.set_ylabel('Aider code editing benchmark,\npercent completed correctly')
|
||||
ax.set_xlabel('Model release date', fontsize=14)
|
||||
ax.set_ylabel('Aider code editing benchmark,\npercent completed correctly', fontsize=14)
|
||||
ax.set_title('LLM code editing skill by model release date')
|
||||
plt.tight_layout()
|
||||
plt.savefig("tmp_over_time.png")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue