Spaces:
Running
Running
File size: 289 Bytes
88bf46c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
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;
}
|