/ concept-collection / benchcompress
Sign in
concept-collection / benchcompress
benchcompress / web-ui / src / pages / Datasets.tsx
51 lines · 1.5 KBCodeBlameHistory
85d3449pagesJeremy Magland 1function Datasets() {
2 return (
3 <div>
4 <h1
5 style={{
6 fontSize: "2rem",
7 fontWeight: "bold",
8 color: "#333",
9 marginBottom: "1rem",
10 }}
11 >
12 Benchmark Datasets
13 </h1>
14 <div className="dataset-types">
15 <section style={{ marginBottom: "2rem" }}>
16 <h2 style={{ fontSize: "1.5rem", color: "#444", marginBottom: "1rem" }}>
17 Bernoulli Datasets
18 </h2>
19 <p style={{ color: "#666", marginBottom: "1rem" }}>
20 [Dataset description will be loaded from results.json]
21 </p>
22 <div style={{ color: "#666", marginLeft: "1rem" }}>
23 <div>• bernoulli-0.1</div>
24 <div>• bernoulli-0.2</div>
25 <div>• bernoulli-0.3</div>
26 <div>• bernoulli-0.4</div>
27 <div>• bernoulli-0.5</div>
28 </div>
29 </section>
31 <section style={{ marginBottom: "2rem" }}>
32 <h2 style={{ fontSize: "1.5rem", color: "#444", marginBottom: "1rem" }}>
33 Gaussian Datasets
34 </h2>
35 <p style={{ color: "#666", marginBottom: "1rem" }}>
36 [Dataset description will be loaded from results.json]
37 </p>
38 <div style={{ color: "#666", marginLeft: "1rem" }}>
39 <div>• gaussian-1</div>
40 <div>• gaussian-2</div>
41 <div>• gaussian-3</div>
42 <div>• gaussian-5</div>
43 <div>• gaussian-8</div>
44 </div>
45 </section>
46 </div>
47 </div>
48 );
51export default Datasets;
moveopenescclose