diff --git a/aider/website/_posts/2024-09-26-senior-junior.md b/aider/website/_posts/2024-09-26-senior-junior.md index b984eaa53..662545888 100644 --- a/aider/website/_posts/2024-09-26-senior-junior.md +++ b/aider/website/_posts/2024-09-26-senior-junior.md @@ -16,17 +16,35 @@ Here's a table containing the benchmark data for different model configurations: {% assign sorted_data = site.data.senior | sort: "pass_rate_2" | reverse %} {% assign grouped_data = sorted_data | group_by: "model" %} -| Senior | Junior | Junior Edit Format | Pass Rate (%) | Average Time (sec) | Total Cost ($) | -|--------|--------|---------------------|----------------|---------------------|----------------| -{% for group in grouped_data %} -{% for item in group.items %} -| {{ item.model }} | {{ item.junior_model }} | {{ item.junior_edit_format }} | {{ item.pass_rate_2 }} | {{ item.seconds_per_case }} | {{ item.total_cost }} | -{% endfor %} -{% unless forloop.last %} -|--------|--------|---------------------|----------------|---------------------|----------------| -{% endunless %} -{% endfor %} -|--------|--------|---------------------|----------------|---------------------|----------------| + + + + + + + + + + + + + {% for group in grouped_data %} + {% for item in group.items %} + + + + + + + + + {% endfor %} + {% unless forloop.last %} + + {% endunless %} + {% endfor %} + +
SeniorJuniorJunior Edit FormatPass Rate (%)Average Time (sec)Total Cost ($)
{{ item.model }}{{ item.junior_model }}{{ item.junior_edit_format }}{{ item.pass_rate_2 }}{{ item.seconds_per_case }}{{ item.total_cost }}

This table provides a comparison of different model configurations, showing their performance in terms of pass rate, processing time, and cost. The data is grouped by the Senior model and sorted by the highest Pass Rate within each group (in descending order). Within groups, rows are sorted by decreasing Pass Rate.