1export interface BenchmarkResult {
2 dataset: string;
3 algorithm: string;
4 algorithm_version: string;
5 dataset_version: string;
6 system_version: string;
7 compression_ratio: number;
8 encode_time: number;
9 decode_time: number;
10 encode_mb_per_sec: number;
11 decode_mb_per_sec: number;
12 original_size: number;
13 compressed_size: number;
14 array_shape: number[];
15 array_dtype: string;
16 timestamp: number;
17}
19export interface Algorithm {
20 name: string;
21 description: string;
22 version: string;
23 tags: string[];
24}
26export interface Dataset {
27 name: string;
28 description: string;
29 version: string;
30 tags: string[];
31}
33export interface BenchmarkData {
34 results: BenchmarkResult[];
35 algorithms: Algorithm[];
36 datasets: Dataset[];
37}