CompUGE-Bench / src /app /state_management /models /leaderboard-entry.model.ts
Ahmad Shallouf
added new modifications
27e40c0
raw
history blame contribute delete
272 Bytes
export interface LeaderboardEntry {
task: string;
dataset: string;
model: string;
accuracy: number;
precision: number;
recall: number;
f1_score: number;
predictions: string;
team: string;
is_public: boolean;
blob_url: string;
}