test: refactor accuracy benchmark generation

This commit is contained in:
Johann Schopplich
2025-10-27 14:07:20 +01:00
parent 1a5e6199ac
commit 05b3d43023
11 changed files with 1708 additions and 1721 deletions

View File

@@ -122,16 +122,16 @@ const analyticsDataset: Dataset = {
}
/**
* GitHub dataset: Popular repositories
* Real-world dataset: Top 100 starred GitHub repositories
*
* @remarks
* Tests TOON's tabular format with real-world data
* Tests TOON's tabular format
*/
const githubDataset: Dataset = {
name: 'github',
description: 'Popular GitHub repositories',
description: 'Top 100 GitHub repositories',
data: {
repositories: githubRepos.slice(0, 200),
repositories: githubRepos,
},
}