From a180c2ae93c6d3d74d5694910eef9c0d789a207c Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 25 Jul 2024 10:17:16 +0200 Subject: [PATCH] Removed "percent using correct edit format" data from both graphs. --- aider/website/docs/leaderboards/index.md | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/aider/website/docs/leaderboards/index.md b/aider/website/docs/leaderboards/index.md index b52e69269..8277fe49b 100644 --- a/aider/website/docs/leaderboards/index.md +++ b/aider/website/docs/leaderboards/index.md @@ -64,13 +64,6 @@ from Exercism. This benchmark measures the LLM's coding ability, but also whethe backgroundColor: 'rgba(54, 162, 235, 0.2)', borderColor: 'rgba(54, 162, 235, 1)', borderWidth: 1 - }, - { - label: 'Percent using correct edit format', - data: [], - backgroundColor: 'rgba(255, 99, 132, 0.2)', - borderColor: 'rgba(255, 99, 132, 1)', - borderWidth: 1 }] }; @@ -89,13 +82,11 @@ from Exercism. This benchmark measures the LLM's coding ability, but also whethe leaderboardData.labels = []; leaderboardData.datasets[0].data = []; - leaderboardData.datasets[1].data = []; allData.forEach(function(row, index) { if (showAll || document.getElementById('edit-row-' + index).classList.contains('selected')) { leaderboardData.labels.push(row.model); leaderboardData.datasets[0].data.push(row.pass_rate_2); - leaderboardData.datasets[1].data.push(row.percent_cases_well_formed); } }); @@ -184,13 +175,6 @@ Therefore, results are available for fewer models. backgroundColor: 'rgba(54, 162, 235, 0.2)', borderColor: 'rgba(54, 162, 235, 1)', borderWidth: 1 - }, - { - label: 'Percent using correct edit format', - data: [], - backgroundColor: 'rgba(255, 99, 132, 0.2)', - borderColor: 'rgba(255, 99, 132, 1)', - borderWidth: 1 }] }; @@ -209,13 +193,11 @@ Therefore, results are available for fewer models. leaderboardData.labels = []; leaderboardData.datasets[0].data = []; - leaderboardData.datasets[1].data = []; allData.forEach(function(row, index) { if (showAll || document.getElementById('refac-row-' + index).classList.contains('selected')) { leaderboardData.labels.push(row.model); leaderboardData.datasets[0].data.push(row.pass_rate_1); - leaderboardData.datasets[1].data.push(row.percent_cases_well_formed); } });