mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-02 18:54:59 +00:00
style: replace markdown table with HTML <table>
This commit is contained in:
parent
2698d80c63
commit
e93744c990
1 changed files with 29 additions and 11 deletions
|
@ -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 %}
|
||||
|--------|--------|---------------------|----------------|---------------------|----------------|
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Senior</th>
|
||||
<th>Junior</th>
|
||||
<th>Junior Edit Format</th>
|
||||
<th>Pass Rate (%)</th>
|
||||
<th>Average Time (sec)</th>
|
||||
<th>Total Cost ($)</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for group in grouped_data %}
|
||||
{% for item in group.items %}
|
||||
<tr>
|
||||
<td>{{ item.model }}</td>
|
||||
<td>{{ item.junior_model }}</td>
|
||||
<td>{{ item.junior_edit_format }}</td>
|
||||
<td>{{ item.pass_rate_2 }}</td>
|
||||
<td>{{ item.seconds_per_case }}</td>
|
||||
<td>{{ item.total_cost }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% unless forloop.last %}
|
||||
<tr><td colspan="6"><hr></td></tr>
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
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.
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue