-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (115 loc) · 2.66 KB
/
Copy pathindex.html
File metadata and controls
117 lines (115 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>AudioBench Results</title>
<style>
:root {
--fg: #1f2328;
--muted: #59636e;
--bg: #ffffff;
--card: #f6f8fa;
--border: #d1d9e0;
--accent: #0969da;
}
@media (prefers-color-scheme: dark) {
:root {
--fg: #e6edf3;
--muted: #9198a1;
--bg: #0d1117;
--card: #151b23;
--border: #3d444d;
--accent: #4493f8;
}
}
* { box-sizing: border-box; }
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", Helvetica, Arial, sans-serif;
color: var(--fg);
background: var(--bg);
line-height: 1.5;
}
main {
max-width: 860px;
margin: 0 auto;
padding: 2.5rem 1.25rem 4rem;
}
h1 {
font-size: 2rem;
margin: 0 0 .25rem;
}
.subtitle {
color: var(--muted);
margin: 0 0 2rem;
}
h2 {
font-size: 1.15rem;
margin: 2rem 0 1rem;
padding-bottom: .4rem;
border-bottom: 1px solid var(--border);
}
ul.reports {
list-style: none;
padding: 0;
margin: 0;
display: grid;
gap: .75rem;
}
.reports a {
display: block;
padding: 1rem 1.25rem;
background: var(--card);
border: 1px solid var(--border);
border-radius: 8px;
text-decoration: none;
color: var(--fg);
transition: border-color .15s, transform .15s;
}
.reports a:hover {
border-color: var(--accent);
}
.reports .title {
font-weight: 600;
color: var(--accent);
}
.reports .meta {
color: var(--muted);
font-size: .9rem;
margin-top: .25rem;
font-variant-numeric: tabular-nums;
}
footer {
margin-top: 3rem;
color: var(--muted);
font-size: .85rem;
}
footer a { color: var(--accent); }
</style>
</head>
<body>
<main>
<h1>AudioBench Results</h1>
<p class="subtitle">Evaluation reports for speech / audio model experiments.</p>
<h2>Reports</h2>
<ul class="reports">
<li>
<a href="html/report_2026-04-17_Canary-Luciole1B_dataset-v2_first-expes.html">
<div class="title">Canary — Luciole 1B — dataset v2 — first experiments</div>
<div class="meta">2026-04-17</div>
</a>
</li>
<li>
<a href="html/report_2025-12-31_Canary-Qwen_dataset-v1_quick-training.html">
<div class="title">Canary — Qwen — dataset v1 — quick training</div>
<div class="meta">2025-12-31</div>
</a>
</li>
</ul>
<footer>
Source: <a href="https://github.com/OpenLLM-France/AudioBenchResults">github.com/OpenLLM-France/AudioBenchResults</a>
</footer>
</main>
</body>
</html>