CompUGE-Bench / src /app /state_management /models /submission-entry.model.ts
Ahmad Shallouf
added new modifications
27e40c0
raw
history blame contribute delete
259 Bytes
export interface SubmissionEntry {
task: string;
dataset: string;
model: string;
link: string;
team: string;
email: string;
predictions: string;
status: string;
time: string;
is_public: boolean;
blob_url: string;
}