File size: 272 Bytes
1bc149f
 
 
 
 
 
 
 
27e40c0
 
 
 
1bc149f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
}