CompUGE-Bench / src /app /state_management /models /leaderboard-entry.model.ts
Ahmad Shallouf
added control pael
88bf46c
raw
history blame
183 Bytes
export interface LeaderboardEntry {
task: string;
dataset: string;
model: string;
accuracy: number;
precision: number;
recall: number;
f1_score: number;
}