From b5cde63b370326a3ea232837cef4aa0afec9135f Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Thu, 8 May 2025 11:00:41 -0700 Subject: [PATCH] initial --- aider/website/_posts/2025-05-08-qwen3.md | 283 +++++++++++++++++++++++ 1 file changed, 283 insertions(+) create mode 100644 aider/website/_posts/2025-05-08-qwen3.md diff --git a/aider/website/_posts/2025-05-08-qwen3.md b/aider/website/_posts/2025-05-08-qwen3.md new file mode 100644 index 000000000..5279a39e1 --- /dev/null +++ b/aider/website/_posts/2025-05-08-qwen3.md @@ -0,0 +1,283 @@ +--- +layout: post +title: Qwen3 Benchmark Results +excerpt: "Benchmark results for Qwen3 models using the Aider polyglot coding benchmark." +date: 2025-05-08 +--- + +You can add some introductory text for your blog post here. + +

Qwen3 polyglot coding leaderboard

+ +
+ +
+ + + +
+ +
+ + + + + + + + + + + + + + + {% assign max_cost = 0 %} + {% for row in site.data.qwen3_leaderboard %} {# <-- MODIFIED DATA SOURCE #} + {% if row.total_cost > max_cost %} + {% assign max_cost = row.total_cost %} + {% endif %} + {% endfor %} + {% if max_cost == 0 %}{% assign max_cost = 1 %}{% endif %} + {% assign edit_sorted = site.data.qwen3_leaderboard | sort: 'pass_rate_2' | reverse %} {# <-- MODIFIED DATA SOURCE #} + {% for row in edit_sorted %} {% comment %} Add loop index for unique IDs {% endcomment %} + {% assign row_index = forloop.index0 %} + + + + + + + + + + + + + {% endfor %} + +
+ + ModelPercent correctCostCommandCorrect edit formatEdit Format
+ + + {{ row.model }} +
+ {{ row.pass_rate_2 }}% +
+ {% if row.total_cost > 0 %} +
+ {% endif %} + {% assign rounded_cost = row.total_cost | times: 1.0 | round: 2 %} + {% if row.total_cost == 0 or rounded_cost == 0.00 %}{% else %}${{ rounded_cost }}{% endif %} +
{{ row.command }}{{ row.percent_cases_well_formed }}%{{ row.edit_format }}
+ + + + + +

+By [Your Name], +last updated + + +