Wataru commited on
Commit
4686ffb
·
1 Parent(s): 1fba6cf

fix minor issues

Browse files
Files changed (2) hide show
  1. full_result.html +42 -14
  2. index.html +1 -7
full_result.html CHANGED
@@ -43,22 +43,22 @@ table.metrics-table thead th {background:#f0f0f0; font-weight:600;}
43
  <tr>
44
  <th></th>
45
  <th>noisy</th>
46
- <th>miipher</th>
47
  <th>sidon</th>
48
  <th>noisy</th>
49
- <th>miipher</th>
50
  <th>sidon</th>
51
  <th>noisy</th>
52
- <th>miipher</th>
53
  <th>sidon</th>
54
  <th>noisy</th>
55
- <th>miipher</th>
56
  <th>sidon</th>
57
  <th>noisy</th>
58
- <th>miipher</th>
59
  <th>sidon</th>
60
  <th>noisy</th>
61
- <th>miipher</th>
62
  <th>sidon</th>
63
  </tr>
64
  <tr>
@@ -2208,7 +2208,6 @@ table.metrics-table thead th {background:#f0f0f0; font-weight:600;}
2208
  </tbody>
2209
  </table>
2210
  </div>
2211
- <p class="is-size-7 has-text-grey">Note: Values loaded directly from the evaluation export.</p>
2212
  </div>
2213
  <script>
2214
  // Merge CI columns into corresponding mean columns as "mean ± CI"
@@ -2274,6 +2273,42 @@ table.metrics-table thead th {background:#f0f0f0; font-weight:600;}
2274
  mergePair('DNSMOS', 'DNSMOS_95%_CI');
2275
  mergePair('NISQA', 'NISQA_95%_CI');
2276
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2277
  // Add a small note after transformation
2278
  const note = document.createElement('p');
2279
  note.className = 'is-size-7 has-text-grey';
@@ -2286,13 +2321,6 @@ table.metrics-table thead th {background:#f0f0f0; font-weight:600;}
2286
  </section>
2287
 
2288
  <footer class="footer">
2289
- <div class="container">
2290
- <div class="content has-text-centered">
2291
- <a class="icon-link" href="index.html">
2292
- <i class="fas fa-home"></i>
2293
- </a>
2294
- </div>
2295
- </div>
2296
  </footer>
2297
  </body>
2298
 
 
43
  <tr>
44
  <th></th>
45
  <th>noisy</th>
46
+ <th>Miipher-2</th>
47
  <th>sidon</th>
48
  <th>noisy</th>
49
+ <th>Miipher-2</th>
50
  <th>sidon</th>
51
  <th>noisy</th>
52
+ <th>Miipher-2</th>
53
  <th>sidon</th>
54
  <th>noisy</th>
55
+ <th>Miipher-2</th>
56
  <th>sidon</th>
57
  <th>noisy</th>
58
+ <th>Miipher-2</th>
59
  <th>sidon</th>
60
  <th>noisy</th>
61
+ <th>Miipher-2</th>
62
  <th>sidon</th>
63
  </tr>
64
  <tr>
 
2208
  </tbody>
2209
  </table>
2210
  </div>
 
2211
  </div>
2212
  <script>
2213
  // Merge CI columns into corresponding mean columns as "mean ± CI"
 
2273
  mergePair('DNSMOS', 'DNSMOS_95%_CI');
2274
  mergePair('NISQA', 'NISQA_95%_CI');
2275
 
2276
+ // After merging CI columns, bold the best (max) per row
2277
+ function boldBest(groupName) {
2278
+ const g = findGroup(groupName);
2279
+ if (!g) return;
2280
+ const bodyRows = table.tBodies[0].rows;
2281
+ for (let r = 0; r < bodyRows.length; r++) {
2282
+ const row = bodyRows[r];
2283
+ if (!row || !row.cells) continue;
2284
+ let bestIdx = -1;
2285
+ let bestVal = -Infinity;
2286
+ for (let j = 0; j < g.span; j++) {
2287
+ const cell = row.cells[g.start + j];
2288
+ if (!cell) continue;
2289
+ const txt = (cell.textContent || '').trim();
2290
+ const val = parseFloat(txt);
2291
+ if (!Number.isNaN(val) && val > bestVal) {
2292
+ bestVal = val;
2293
+ bestIdx = j;
2294
+ }
2295
+ }
2296
+ for (let j = 0; j < g.span; j++) {
2297
+ const cell = row.cells[g.start + j];
2298
+ if (!cell) continue;
2299
+ // Clear any existing bold styling inside the cell
2300
+ cell.style.fontWeight = '';
2301
+ }
2302
+ if (bestIdx >= 0) {
2303
+ const bestCell = row.cells[g.start + bestIdx];
2304
+ if (bestCell) bestCell.style.fontWeight = '700';
2305
+ }
2306
+ }
2307
+ }
2308
+
2309
+ boldBest('DNSMOS');
2310
+ boldBest('NISQA');
2311
+
2312
  // Add a small note after transformation
2313
  const note = document.createElement('p');
2314
  note.className = 'is-size-7 has-text-grey';
 
2321
  </section>
2322
 
2323
  <footer class="footer">
 
 
 
 
 
 
 
2324
  </footer>
2325
  </body>
2326
 
index.html CHANGED
@@ -98,7 +98,6 @@
98
  <h2 class="title is-3">Abstract</h2>
99
  <div class="content has-text-justified">
100
  <p>
101
- <<<<<<< HEAD
102
  Large-scale text-to-speech (TTS) systems are limited by the scarcity of clean,
103
  multilingual recordings. We introduce <b>Sidon</b>, a fast, open-source
104
  speech restoration model that converts noisy in-the-wild speech into
@@ -112,10 +111,6 @@
112
  recognition corpus improves the quality of synthetic
113
  speech in a zero-shot setting. Code and model are released to
114
  facilitate reproducible dataset cleansing for the research community.
115
- =======
116
- Large-scale text-to-speech (TTS) systems are limited by the scarcity of clean, multilingual recordings. We
117
- introduce <b>Sidon</b>, a fast, open-source speech restoration model that converts noisy in-the-wild
118
- speech into studio-quality speech and scales to dozens of languages.
119
  </p>
120
  </div>
121
  </div>
@@ -128,10 +123,9 @@
128
 
129
  <section class="section">
130
  <div class="container is-max-desktop">
131
- <<<<<<< HEAD
132
  <h2 class="title is-3 has-text-centered">Full Multilingual Results (FLEURS)</h2>
133
  <div class="content has-text-centered is-size-6">
134
- <p>The full multilingual evaluation table is large. It is hidden by default to keep the page lightweight.</p>
135
  </div>
136
  <details id="fleurs-details" class="box">
137
  <summary class="is-size-5">Show results table</summary>
 
98
  <h2 class="title is-3">Abstract</h2>
99
  <div class="content has-text-justified">
100
  <p>
 
101
  Large-scale text-to-speech (TTS) systems are limited by the scarcity of clean,
102
  multilingual recordings. We introduce <b>Sidon</b>, a fast, open-source
103
  speech restoration model that converts noisy in-the-wild speech into
 
111
  recognition corpus improves the quality of synthetic
112
  speech in a zero-shot setting. Code and model are released to
113
  facilitate reproducible dataset cleansing for the research community.
 
 
 
 
114
  </p>
115
  </div>
116
  </div>
 
123
 
124
  <section class="section">
125
  <div class="container is-max-desktop">
 
126
  <h2 class="title is-3 has-text-centered">Full Multilingual Results (FLEURS)</h2>
127
  <div class="content has-text-centered is-size-6">
128
+ <p>The full multilingual evaluation table is large. It is hidden by default.</p>
129
  </div>
130
  <details id="fleurs-details" class="box">
131
  <summary class="is-size-5">Show results table</summary>