-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
562 lines (467 loc) · 25.8 KB
/
index.html
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
<!doctype html>
<html lang="en">
<head>
<meta name="google-site-verification" content="ftFOlJETX-2KNjaPh8W6s8lhigItRuu9fOmjHZZ0nY0" />
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<title>Teacher-Student Training for Robust Tacotron-based TTS</title>
</head>
<style type="text/css">
table {
width: 100%;
table-layout: fixed;
}
audio {
width: 100%;
}
thead>tr>th:first-child {
width: 96px;
}
@media (max-width: 767px) {
.big-screen {
display: none;
}
}
@media (min-width: 767px) {
.small-screen {
display: none;
}
}
</style>
<body>
<header class="header">
<div class="jumbotron bg-secondary text-center">
<div class="container">
<div class="row align-items-center">
<div class="col-md-12">
<h1><a class="text-light">Teacher-Student Training for Robust Tacotron-based TTS</h1><br>
<font size=5><span style="color:#000000"> Authors: Rui Liu<sup>1,4</sup>, Berrak Sisman<sup>4</sup>, Jingdong Li<sup>1</sup>,Feilong Bao<sup>1</sup>,Guanglai Gao<sup>1</sup>,Haizhou Li<sup>2,3,4</sup> </font><font size=4> <br> <sup>1</sup>Inner Mongolia University, China <sup>2</sup>Kriston AI Lab, China <br> <sup>3</sup>University of Bremen, Germany <sup>4</sup>National University of Singapore, Singapore</font> </a>
<p>
<div class="row">
</div>
</p>
</div>
</div>
</div>
</div>
</header>
<main>
<div class="container">
<div class="row" id="result">
<div class="col-md-12">
<img src="./audio/model.png" width="1050" height="400" / >
<div class="big-screen">
<br /><br />
<h6> <b>Tacotron2-FR</b>: Tacotron2-based model with free running (FR) mode</h6>
<h6><b>Tacotron2-SS</b>: Tacotron2-based model with scheduled sampling (SS) mode</h6>
<h6><b>Tacotron2-KD</b>: Tacotron2-based model with proposed teacher-student training method by using knowledge distillation (KD)</h6>
<br />
<br />
<h2>-----------------------> Mandarin Speech Samples <-----------------------</h2>
<br /><br />
<!-- Naturalness Evaluation -->
<table class="table">
<thead>
<!-- Mandarin -->
<tr>
<th colspan=5><h4>1 - Naturalness Evaluation</h4></th>
</tr>
</thead>
<tbody>
<tr>
<th></th>
<th style="text-align:center;"> Tacotron2-FR</th>
<th style="text-align:center;"> Tacotron2-SS</th>
<th style="text-align:center;"> Tacotron2-KD </th>
</tr>
<!-- single sentence -->
<tr>
<th colspan=5 align="center">"城市的灯光真美丽,不是吗?"</th>
</tr>
<tr>
<th scope="row"> </th>
<td>
<audio controls>
<source src="./audio/cn/C/163-gta.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/cn/A/163-ss.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/cn/B/163.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
</tr>
<!-- single sentence -->
<!-- single sentence -->
<tr>
<th colspan=5 align="center">“因某一个细节而功败垂成,是否是最大的悲哀呢。”</th>
</tr>
<tr>
<th scope="row"> </th>
<td>
<audio controls>
<source src="./audio/cn/C/293-gta.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/cn/A/293-ss.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/cn/B/293.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
</tr>
<!-- single sentence -->
</tbody>
</table>
<!-- Robustness Evaluation -->
<table class="table">
<thead>
<!-- Mandarin -->
<tr>
<th colspan=5><h4>2 - Robustness Evaluation</h4></th>
</tr>
</thead>
<tbody>
<tr>
<th></th>
<th style="text-align:center;"> Tacotron2-SS</th>
<th style="text-align:center;"> Tacotron2-KD </th>
</tr>
<!-- single sentence -->
<tr>
<th colspan=5 align="center">“这个暂用名起的也真是有想象力,就像最近很多人在谈新零售,这也一定是个暂用名,因为我们只能用旧名词来命名一个新事物,但是我们心里得清楚,它未来一定是一个全新的东西。”</th>
</tr>
<tr>
<th scope="row"> </th>
<td>
<audio controls>
<source src="./audio/cn/A/002-ss.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/cn/B/002.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
</tr>
<!-- single sentence -->
<!-- single sentence -->
<tr>
<th colspan=5 align="center">“又率部参加了保卫武汉的战斗,两次立下战功,从此便在军界崭露头角。”</th>
</tr>
<tr>
<th scope="row"> </th>
<td>
<audio controls>
<source src="./audio/cn/A/020-ss.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/cn/B/020.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
</tr>
<!-- single sentence -->
</tbody>
</table>
<!-- Prosody Evaluation -->
<table class="table">
<thead>
<!-- Mandarin -->
<tr>
<th colspan=5><h4>3 - Prosody Evaluation</h4></th>
</tr>
</thead>
<tbody>
<tr>
<th></th>
<th style="text-align:center;"> Tacotron2-SS</th>
<th style="text-align:center;"> Tacotron2-KD </th>
</tr>
<!-- single sentence -->
<tr>
<th colspan=5 align="center">"1989年<font color='red'>|</font> 受英国国家科学与工程研究委员会<font color='red'>|</font>访问研究基金资助 <font color='red'>|</font> 到英国剑桥大学 <font color='red'>|</font> 微电子研究中心 <font color='red'>|</font> 做 <font color='red'>|</font>博士后研究"</th>
</tr>
<tr>
<th scope="row"> </th>
<td>
<audio controls>
<source src="./audio/cn/A/459-ss.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/cn/B/459.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
</tr>
<!-- single sentence -->
<!-- single sentence -->
<tr>
<th colspan=5 align="center">"清晨入古寺<font color='red'>|</font>初日照高林"</th>
</tr>
<tr>
<th scope="row"> </th>
<td>
<audio controls>
<source src="./audio/cn/A/425-ss.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/cn/B/425.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
</tr>
<!-- single sentence -->
</tbody>
</table>
<br /><br />
<!-- English Speech Samples-->
<h2>------------------------> English Speech Samples <------------------------</h2>
<br /><br />
<!-- Naturalness Evaluation -->
<table class="table">
<thead>
<!-- Mandarin -->
<tr>
<th colspan=5><h4>1 - Naturalness Evaluation</h4></th>
</tr>
</thead>
<tbody>
<tr>
<th></th>
<th style="text-align:center;"> Tacotron2-FR</th>
<th style="text-align:center;"> Tacotron2-SS</th>
<th style="text-align:center;"> Tacotron2-KD </th>
</tr>
<!-- single sentence -->
<tr>
<th colspan=5 align="center">"all or nothing, now or never."</th>
</tr>
<tr>
<th scope="row"> </th>
<td>
<audio controls>
<source src="./audio/en/C/060-D.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/en/A/060-ss.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/en/B/060-B.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
</tr>
<!-- single sentence -->
<!-- single sentence -->
<tr>
<th colspan=5 align="center">"The island has since changed hands and has its own farm."</th>
</tr>
<tr>
<th scope="row"> </th>
<td>
<audio controls>
<source src="./audio/en/C/029-D.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/en/A/029-ss.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/en/B/029-B.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
</tr>
<!-- single sentence -->
</tbody>
</table>
<!-- Robustness Evaluation -->
<table class="table">
<thead>
<!-- Mandarin -->
<tr>
<th colspan=5><h4>2 - Robustness Evaluation</h4></th>
</tr>
</thead>
<tbody>
<tr>
<th></th>
<th style="text-align:center;"> Tacotron2-SS</th>
<th style="text-align:center;"> Tacotron2-KD </th>
</tr>
<!-- single sentence -->
<tr>
<th colspan=5 align="center">"backslash x eight six backslash Ship backslash zero backslash A d d r e s s B o o k dot C o n t a c t s A d d r e s"</th>
</tr>
<tr>
<th scope="row"> </th>
<td>
<audio controls>
<source src="./audio/en/A/036-ss.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/en/B/036-B.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
</tr>
<!-- single sentence -->
<tr>
<th colspan=5 align="center">"config file must contain A, B, C, D, E, F, and G."</th>
</tr>
<tr>
<th scope="row"> </th>
<td>
<audio controls>
<source src="./audio/en/A/024-ss.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/en/B/024-B.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
</tr>
</tbody>
</table>
<!-- Prosody Evaluation -->
<table class="table">
<thead>
<!-- Mandarin -->
<tr>
<th colspan=5><h4>3 - Prosody Evaluation</h4></th>
</tr>
</thead>
<tbody>
<tr>
<th></th>
<th style="text-align:center;"> Tacotron2-SS</th>
<th style="text-align:center;"> Tacotron2-KD </th>
</tr>
<!-- single sentence -->
<tr>
<th colspan=5 align="center">"A person who truly loves you will never let you go <font color="red"> | </font> no matter how hard <font color="red"> | </font> the situation is.",</th>
</tr>
<tr>
<th scope="row"> </th>
<td>
<audio controls>
<source src="./audio/en/A/073-ss.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/en/B/073-B.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
</tr>
<!-- single sentence -->
<!-- single sentence -->
<tr>
<th colspan=5 align="center">“Give so much time to improving yourself<font color="red"> | </font> that you won't have time to criticize others.”</th>
</tr>
<tr>
<th scope="row"> </th>
<td>
<audio controls>
<source src="./audio/en/A/077-ss.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
<td>
<audio controls>
<source src="./audio/en/B/077-B.wav" type="audio/wav" />
Your browser does not support the audio element.
</audio>
</td>
</tr>
<!-- single sentence -->
</tbody>
</table>
</div>
</div>
</div>
<hr>
<div class="row" id="ref">
<div class="col">
<!--<h2>References</h2>
-->
</div>
</div>
<hr>
<!-- <div class="row" id="contact">
<div class="col">
<h2>Contact</h2>
<div></div>
</div>
</div> -->
</div>
</main>
<footer class="bg-secondary text-light mt-4 pt-3 pb-2 ">
<div class="container">
<p class="text-center">
</p>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"
integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"
integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy"
crossorigin="anonymous"></script>
</body>
</html>