CompUGE-Bench / src /app /state_management /models /control-panel-entry.model.ts
Ahmad Shallouf
added control pael
88bf46c
raw
history blame contribute delete
289 Bytes
export interface ControlPanelEntry {
id: number;
task: string;
dataset: string;
model: string;
link: string;
team: string;
email: string;
status: string;
time: string;
is_public: boolean;
accuracy: number;
precision: number;
recall: number;
f1_score: number;
}