index.html 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width,initial-scale=1" />
  6. <title>FastSpeech 2 Audio Samples</title>
  7. <style>
  8. body {
  9. margin: 0% 15%;
  10. padding: 50px 30px;
  11. background: #fff;
  12. color: #111;
  13. font-size: 17px;
  14. font-family: sans-serif;
  15. font-weight: 400;
  16. line-height: 1.8;
  17. overflow-x: hidden;
  18. -webkit-font-smoothing: antialiased;
  19. }
  20. h1 {
  21. font-size: 1.75em;
  22. }
  23. h2 {
  24. margin-bottom: 0.4em;
  25. }
  26. hr {
  27. height: 0.5px;
  28. border-width: 0;
  29. color: lightgray;
  30. background-color: lightgray
  31. }
  32. table {
  33. width: 100%;
  34. }
  35. audio {
  36. width: 100%;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <h1>FastSpeech 2 Audio Samples</h1>
  42. <p>
  43. <h2>English Single-Speaker TTS</h2>
  44. <div>
  45. <b>Dataset</b>: <a href="https://keithito.com/LJ-Speech-Dataset/">LJSpeech</a>
  46. </div>
  47. <div>
  48. <b>Checkpoint</b>: <a
  49. href="https://drive.google.com/file/d/1r3fYhnblBJ8hDKDSUDtidJ-BN-xAM9pe/view?usp=sharing">link</a>
  50. </div>
  51. <div>
  52. <b>Config</b>: <a href="https://github.com/ming024/FastSpeech2/tree/master/config/LJSpeech">link</a>
  53. </div>
  54. <div>
  55. <b>Vocoder</b>: <a href="https://github.com/jik876/hifi-gan">HiFi-GAN (LJSpeech)</a>
  56. </div>
  57. <hr>
  58. <table>
  59. <tr>
  60. <th style="text-align: center">Extremely Long Sentence</th>
  61. </tr>
  62. <tr>
  63. <td style="text-align: center"><audio controls="controls">
  64. <source src="./demo/LJSpeech/LJSpeech_long_sentence.wav" autoplay />
  65. </audio></td>
  66. </tr>
  67. </table>
  68. <div><b>Text</b>: <em>Advanced text-to-speech models such as FastSpeech can synthesize speech significantly faster
  69. than previous autoregressive models with comparable quality. The training of FastSpeech model relies on an
  70. autoregressive teacher model for duration prediction and knowledge distillation , which can ease the one-to-many
  71. mapping problem in TTS. However, FastSpeech has several disadvantages: 1) the teacher-student distillation
  72. pipeline is complicated, 2) the duration extracted from the teacher model is not accurate enough, and the target
  73. mel-spectrograms distilled from teacher model suffer from information loss due to data simplification, both of
  74. which limit the voice quality. In this paper, we propose FastSpeech 2, which addresses the issues in FastSpeech
  75. and better solves the one-to-many mapping problem in TTS by 1) directly training the model with ground-truth
  76. target instead of the simplified output from teacher, and 2) introducing more variation information of speech as
  77. conditional inputs. Specifically, we extract duration, pitch and energy from speech waveform and directly take
  78. them as conditional inputs during training and use predicted values during inference. We further design FastSpeech
  79. 2s, which is the first attempt to directly generate speech waveform from text in parallel, enjoying the benefit of
  80. full end-to-end training and even faster inference than FastSpeech. Experimental results show that 1) FastSpeech 2
  81. and 2s outperform FastSpeech in voice quality with much simplified training pipeline and reduced training time; 2)
  82. FastSpeech 2 and 2s can match the voice quality of autoregressive models while enjoying much faster inference
  83. speed.
  84. </em></div>
  85. <hr>
  86. <table>
  87. <tr>
  88. <th style="text-align: center">LJ042-0094 (Ground-Truth) </th>
  89. <th style="text-align: center">LJ042-0094 (Synthesized) </th>
  90. </tr>
  91. <tr>
  92. <td style="text-align: center"><audio controls="controls">
  93. <source src="./demo/LJSpeech/LJ042-0094_ground-truth.wav" autoplay />
  94. </audio></td>
  95. <td style="text-align: center"><audio controls="controls">
  96. <source src="./demo/LJSpeech/LJ042-0094_synthesized.wav" autoplay />
  97. </audio></td>
  98. </tr>
  99. </table>
  100. <div><b>Text</b>: <em>the soviet authorities denied oswald permission</em></div>
  101. <hr>
  102. <table>
  103. <tr>
  104. <th style="text-align: center">LJ021-0108 (Ground-Truth) </th>
  105. <th style="text-align: center">LJ021-0108 (Synthesized) </th>
  106. </tr>
  107. <tr>
  108. <td style="text-align: center"><audio controls="controls">
  109. <source src="./demo/LJSpeech/LJ021-0108_ground-truth.wav" autoplay />
  110. </audio></td>
  111. <td style="text-align: center"><audio controls="controls">
  112. <source src="./demo/LJSpeech/LJ021-0108_synthesized.wav" autoplay />
  113. </audio></td>
  114. </tr>
  115. </table>
  116. <div><b>Text</b>: <em>from the standpoint of the good of the industries themselves, as well as the general public
  117. interest,</em></div>
  118. <hr>
  119. <table>
  120. <tr>
  121. <th style="text-align: center">LJ030-0031 (Ground-Truth) </th>
  122. <th style="text-align: center">LJ030-0031 (Synthesized) </th>
  123. </tr>
  124. <tr>
  125. <td style="text-align: center"><audio controls="controls">
  126. <source src="./demo/LJSpeech/LJ030-0031_ground-truth.wav" autoplay />
  127. </audio></td>
  128. <td style="text-align: center"><audio controls="controls">
  129. <source src="./demo/LJSpeech/LJ030-0031_synthesized.wav" autoplay />
  130. </audio></td>
  131. </tr>
  132. </table>
  133. <div><b>Text</b>: <em>secret service agents formed a cordon to keep the press and photographers from impeding their
  134. passage and scanned the
  135. crowd for threatening movements.</em></div>
  136. <hr>
  137. <table>
  138. <tr>
  139. <th style="text-align: center">LJ001-0012 (Ground-Truth) </th>
  140. <th style="text-align: center">LJ001-0012 (Synthesized) </th>
  141. </tr>
  142. <tr>
  143. <td style="text-align: center"><audio controls="controls">
  144. <source src="./demo/LJSpeech/LJ001-0012_ground-truth.wav" autoplay />
  145. </audio></td>
  146. <td style="text-align: center"><audio controls="controls">
  147. <source src="./demo/LJSpeech/LJ001-0012_synthesized.wav" autoplay />
  148. </audio></td>
  149. </tr>
  150. </table>
  151. <div><b>Text</b>: <em>especially as no more time is occupied, or cost incurred, in casting, setting, or printing
  152. beautiful letters</em></div>
  153. <hr>
  154. <table>
  155. <tr>
  156. <th style="text-align: center">LJ011-0202 (Ground-Truth) </th>
  157. <th style="text-align: center">LJ011-0202 (Synthesized) </th>
  158. </tr>
  159. <tr>
  160. <td style="text-align: center"><audio controls="controls">
  161. <source src="./demo/LJSpeech/LJ011-0202_ground-truth.wav" autoplay />
  162. </audio></td>
  163. <td style="text-align: center"><audio controls="controls">
  164. <source src="./demo/LJSpeech/LJ011-0202_synthesized.wav" autoplay />
  165. </audio></td>
  166. </tr>
  167. </table>
  168. <div><b>Text</b>: <em>the uncle claimed her. the husband resisted.</em></div>
  169. <hr>
  170. <table>
  171. <tr>
  172. <th style="text-align: center">LJ006-0114 (Ground-Truth) </th>
  173. <th style="text-align: center">LJ006-0114 (Synthesized) </th>
  174. </tr>
  175. <tr>
  176. <td style="text-align: center"><audio controls="controls">
  177. <source src="./demo/LJSpeech/LJ006-0114_ground-truth.wav" autoplay />
  178. </audio></td>
  179. <td style="text-align: center"><audio controls="controls">
  180. <source src="./demo/LJSpeech/LJ006-0114_synthesized.wav" autoplay />
  181. </audio></td>
  182. </tr>
  183. </table>
  184. <div><b>Text</b>: <em>they bought their offices from one another, and were thus considered to have a vested interest
  185. in them.</em></div>
  186. <hr>
  187. <table>
  188. <tr>
  189. <th style="text-align: center">LJ009-0038 (Ground-Truth) </th>
  190. <th style="text-align: center">LJ009-0038 (Synthesized) </th>
  191. </tr>
  192. <tr>
  193. <td style="text-align: center"><audio controls="controls">
  194. <source src="./demo/LJSpeech/LJ009-0038_ground-truth.wav" autoplay />
  195. </audio></td>
  196. <td style="text-align: center"><audio controls="controls">
  197. <source src="./demo/LJSpeech/LJ009-0038_synthesized.wav" autoplay />
  198. </audio></td>
  199. </tr>
  200. </table>
  201. <div><b>Text</b>: <em>in the center of the chapel was the condemned pew, a large dock-like erection painted
  202. black.</em></div>
  203. <hr>
  204. <table>
  205. <tr>
  206. <th style="text-align: center">LJ006-0161 (Ground-Truth) </th>
  207. <th style="text-align: center">LJ006-0161 (Synthesized) </th>
  208. </tr>
  209. <tr>
  210. <td style="text-align: center"><audio controls="controls">
  211. <source src="./demo/LJSpeech/LJ006-0161_ground-truth.wav" autoplay />
  212. </audio></td>
  213. <td style="text-align: center"><audio controls="controls">
  214. <source src="./demo/LJSpeech/LJ006-0161_synthesized.wav" autoplay />
  215. </audio></td>
  216. </tr>
  217. </table>
  218. <div><b>Text</b>: <em>again, a turnkey deposed that his chief did not enter the wards more than once a fortnight.</em>
  219. </div>
  220. <hr>
  221. <table>
  222. <tr>
  223. <th style="text-align: center">LJ027-0127 (Ground-Truth) </th>
  224. <th style="text-align: center">LJ027-0127 (Synthesized) </th>
  225. </tr>
  226. <tr>
  227. <td style="text-align: center"><audio controls="controls">
  228. <source src="./demo/LJSpeech/LJ027-0127_ground-truth.wav" autoplay />
  229. </audio></td>
  230. <td style="text-align: center"><audio controls="controls">
  231. <source src="./demo/LJSpeech/LJ027-0127_synthesized.wav" autoplay />
  232. </audio></td>
  233. </tr>
  234. </table>
  235. <div><b>Text</b>: <em>while neglecting to maintain his unity of ideal in the case of nearly all the numerous species
  236. of snakes, he should have
  237. added a tiny rudiment in the case of the python</em></div>
  238. <hr>
  239. <table>
  240. <tr>
  241. <th style="text-align: center">LJ050-0158 (Ground-Truth) </th>
  242. <th style="text-align: center">LJ050-0158 (Synthesized) </th>
  243. </tr>
  244. <tr>
  245. <td style="text-align: center"><audio controls="controls">
  246. <source src="./demo/LJSpeech/LJ050-0158_ground-truth.wav" autoplay />
  247. </audio></td>
  248. <td style="text-align: center"><audio controls="controls">
  249. <source src="./demo/LJSpeech/LJ050-0158_synthesized.wav" autoplay />
  250. </audio></td>
  251. </tr>
  252. </table>
  253. <div><b>Text</b>: <em>the department hopes to design a practical system which will fully meet the needs of the
  254. protective research section of
  255. the secret service.</em></div>
  256. </p>
  257. <hr>
  258. <p>
  259. <h2>Mandarin Multi-Speaker TTS</h2>
  260. <div>
  261. <b>Dataset</b>: <a href="http://www.aishelltech.com/aishell_3">AISHELL-3</a>
  262. </div>
  263. <div>
  264. <b>Checkpoint</b>: <a
  265. href="https://drive.google.com/file/d/1uYWd5JlaK-fochQ2JFgIP_wOEkoLPLqs/view?usp=sharing">link</a>
  266. </div>
  267. <div>
  268. <b>Config</b>: <a href="https://github.com/ming024/FastSpeech2/tree/master/config/AISHELL3">link</a>
  269. </div>
  270. <div>
  271. <b>Vocoder</b>: <a href="https://github.com/jik876/hifi-gan">HiFi-GAN (universal)</a>
  272. </div>
  273. <hr>
  274. <table>
  275. <tr>
  276. <th style="text-align: center">SSB08630110 (Ground-Truth) </th>
  277. <th style="text-align: center">SSB08630110 (Synthesized) </th>
  278. </tr>
  279. <tr>
  280. <td style="text-align: center"><audio controls="controls">
  281. <source src="./demo/AISHELL3/SSB08630110_ground-truth.wav" autoplay />
  282. </audio></td>
  283. <td style="text-align: center"><audio controls="controls">
  284. <source src="./demo/AISHELL3/SSB08630110_synthesized.wav" autoplay />
  285. </audio></td>
  286. </tr>
  287. </table>
  288. <div><b>Speaker</b>: <em>SSB0863</em></div>
  289. <div><b>Text</b>: <em>放首歌来听,丁当的歌 (fang4 shou3 ge1 lai2 ting1 sp ding1 dang1 de5 ge1)</em></div>
  290. <hr>
  291. <table>
  292. <tr>
  293. <th style="text-align: center">SSB07940279 (Ground-Truth) </th>
  294. <th style="text-align: center">SSB07940279 (Synthesized) </th>
  295. </tr>
  296. <tr>
  297. <td style="text-align: center"><audio controls="controls">
  298. <source src="./demo/AISHELL3/SSB07940279_ground-truth.wav" autoplay />
  299. </audio></td>
  300. <td style="text-align: center"><audio controls="controls">
  301. <source src="./demo/AISHELL3/SSB07940279_synthesized.wav" autoplay />
  302. </audio></td>
  303. </tr>
  304. </table>
  305. <div><b>Speaker</b>: <em>SSB0794</em></div>
  306. <div><b>Text</b>: <em>中国,今日有望创下历史单,日,出行人次最高 (zhong1 guo2 sp jin1 ri4 you3 wang4 chuang4 xia4 li4 shi3 dan1 sp ri4 sp
  307. chu1 xing2 ren2 ci4 zui4 gao1)</em></div>
  308. <hr>
  309. <table>
  310. <tr>
  311. <th style="text-align: center">SSB00800003 (Ground-Truth) </th>
  312. <th style="text-align: center">SSB00800003 (Synthesized) </th>
  313. </tr>
  314. <tr>
  315. <td style="text-align: center"><audio controls="controls">
  316. <source src="./demo/AISHELL3/SSB00800003_ground-truth.wav" autoplay />
  317. </audio></td>
  318. <td style="text-align: center"><audio controls="controls">
  319. <source src="./demo/AISHELL3/SSB00800003_synthesized.wav" autoplay />
  320. </audio></td>
  321. </tr>
  322. </table>
  323. <div><b>Speaker</b>: <em>SSSB0080</em></div>
  324. <div><b>Text</b>: <em>中新网七月十四日电 (zhong1 xin1 wang3 qi1 yue4 shi2 si4 ri4 dian4)</em></div>
  325. <hr>
  326. <table>
  327. <tr>
  328. <th style="text-align: center">SSB15930399 (Ground-Truth) </th>
  329. <th style="text-align: center">SSB15930399 (Synthesized) </th>
  330. </tr>
  331. <tr>
  332. <td style="text-align: center"><audio controls="controls">
  333. <source src="./demo/AISHELL3/SSB15930399_ground-truth.wav" autoplay />
  334. </audio></td>
  335. <td style="text-align: center"><audio controls="controls">
  336. <source src="./demo/AISHELL3/SSB15930399_synthesized.wav" autoplay />
  337. </audio></td>
  338. </tr>
  339. </table>
  340. <div><b>Speaker</b>: <em>SSB1593</em></div>
  341. <div><b>Text</b>: <em>也就是说汤米踩过点 (ye3 jiu4 shi4 shuo1 tang1 mi3 cai3 guo4 dian3)</em></div>
  342. <hr>
  343. <table>
  344. <tr>
  345. <th style="text-align: center">SSB16070080 (Ground-Truth) </th>
  346. <th style="text-align: center">SSB16070080 (Synthesized) </th>
  347. </tr>
  348. <tr>
  349. <td style="text-align: center"><audio controls="controls">
  350. <source src="./demo/AISHELL3/SSB16070080_ground-truth.wav" autoplay />
  351. </audio></td>
  352. <td style="text-align: center"><audio controls="controls">
  353. <source src="./demo/AISHELL3/SSB16070080_synthesized.wav" autoplay />
  354. </audio></td>
  355. </tr>
  356. </table>
  357. <div><b>Speaker</b>: <em>SSB1607</em></div>
  358. <div><b>Text</b>: <em>但阵营之间差距拉大 (dan4 zhen4 ying2 zhi1 jian1 cha1 ju4 la1 da4)</em></div>
  359. <hr>
  360. <table>
  361. <tr>
  362. <th style="text-align: center">SSB10200388 (Ground-Truth) </th>
  363. <th style="text-align: center">SSB10200388 (Synthesized) </th>
  364. </tr>
  365. <tr>
  366. <td style="text-align: center"><audio controls="controls">
  367. <source src="./demo/AISHELL3/SSB10200388_ground-truth.wav" autoplay />
  368. </audio></td>
  369. <td style="text-align: center"><audio controls="controls">
  370. <source src="./demo/AISHELL3/SSB10200388_synthesized.wav" autoplay />
  371. </audio></td>
  372. </tr>
  373. </table>
  374. <div><b>Speaker</b>: <em>SSSB1020</em></div>
  375. <div><b>Text</b>: <em>我抱着一大堆纸箱回了家 (wo3 bao4 zhe5 yi2 da4 dui1 zhi3 xiang1 hui2 le5 jia1)</em></div>
  376. <hr>
  377. <table>
  378. <tr>
  379. <th style="text-align: center">SSB05900363 (Ground-Truth) </th>
  380. <th style="text-align: center">SSB05900363 (Synthesized) </th>
  381. </tr>
  382. <tr>
  383. <td style="text-align: center"><audio controls="controls">
  384. <source src="./demo/AISHELL3/SSB05900363_ground-truth.wav" autoplay />
  385. </audio></td>
  386. <td style="text-align: center"><audio controls="controls">
  387. <source src="./demo/AISHELL3/SSB05900363_synthesized.wav" autoplay />
  388. </audio></td>
  389. </tr>
  390. </table>
  391. <div><b>Speaker</b>: <em>SSB0590</em></div>
  392. <div><b>Text</b>: <em>我们不能分头行动 (wo3 men2 bu4 neng2 fen1 tou2 xing2 dong4)</em></div>
  393. <hr>
  394. <table>
  395. <tr>
  396. <th style="text-align: center">SSB04700028 (Ground-Truth) </th>
  397. <th style="text-align: center">SSB04700028 (Synthesized) </th>
  398. </tr>
  399. <tr>
  400. <td style="text-align: center"><audio controls="controls">
  401. <source src="./demo/AISHELL3/SSB04700028_ground-truth.wav" autoplay />
  402. </audio></td>
  403. <td style="text-align: center"><audio controls="controls">
  404. <source src="./demo/AISHELL3/SSB04700028_synthesized.wav" autoplay />
  405. </audio></td>
  406. </tr>
  407. </table>
  408. <div><b>Speaker</b>: <em>SSB0470</em></div>
  409. <div><b>Text</b>: <em>毕节市的景点有什么 (bi4 jie2 shi4 de5 jing2 dian2 you3 shen2 me5)</em></div>
  410. <hr>
  411. <table>
  412. <tr>
  413. <th style="text-align: center">SSB06290079 (Ground-Truth) </th>
  414. <th style="text-align: center">SSB06290079 (Synthesized) </th>
  415. </tr>
  416. <tr>
  417. <td style="text-align: center"><audio controls="controls">
  418. <source src="./demo/AISHELL3/SSB06290079_ground-truth.wav" autoplay />
  419. </audio></td>
  420. <td style="text-align: center"><audio controls="controls">
  421. <source src="./demo/AISHELL3/SSB06290079_synthesized.wav" autoplay />
  422. </audio></td>
  423. </tr>
  424. </table>
  425. <div><b>Speaker</b>: <em>SSB0629</em></div>
  426. <div><b>Text</b>: <em>你以为 (ni2 yi3 wei2)</em></div>
  427. <hr>
  428. <table>
  429. <tr>
  430. <th style="text-align: center">SSB08220199 (Ground-Truth) </th>
  431. <th style="text-align: center">SSB08220199 (Synthesized) </th>
  432. </tr>
  433. <tr>
  434. <td style="text-align: center"><audio controls="controls">
  435. <source src="./demo/AISHELL3/SSB08220199_ground-truth.wav" autoplay />
  436. </audio></td>
  437. <td style="text-align: center"><audio controls="controls">
  438. <source src="./demo/AISHELL3/SSB08220199_synthesized.wav" autoplay />
  439. </audio></td>
  440. </tr>
  441. </table>
  442. <div><b>Speaker</b>: <em>SSB0822</em></div>
  443. <div><b>Text</b>: <em>该职位员工可以,居住在西雅,图或,洛,杉矶 (gai1 zhi2 wei4 yuan2 gong1 ke2 yi3 sp ju1 zhu4 zai4 xi1 ya3 sp tu2 huo4
  444. sp luo4 sp shan3 ji1)</em></div>
  445. </p>
  446. <hr>
  447. <p>
  448. <h2>English Multi-Speaker TTS</h2>
  449. <div>
  450. <b>Dataset</b>: <a href="https://research.google/tools/datasets/libri-tts/">LibriTTS</a>
  451. </div>
  452. <div>
  453. <b>Checkpoint</b>: <a
  454. href="https://drive.google.com/file/d/1M6BxJtTxYW56dG1Myz9MqZmG_OXJLUqy/view?usp=sharing">link</a>
  455. </div>
  456. <div>
  457. <b>Config</b>: <a href="https://github.com/ming024/FastSpeech2/tree/master/config/LibriTTS">link</a>
  458. </div>
  459. <div>
  460. <b>Vocoder</b>: <a href="https://github.com/jik876/hifi-gan">HiFi-GAN (universal)</a>
  461. </div>
  462. <hr>
  463. <table>
  464. <tr>
  465. <th style="text-align: center">207_131203_000011_000000 (Ground-Truth) </th>
  466. <th style="text-align: center">207_131203_000011_000000 (Synthesized) </th>
  467. </tr>
  468. <tr>
  469. <td style="text-align: center"><audio controls="controls">
  470. <source src="./demo/LibriTTS/207_131203_000011_000000_ground-truth.wav" autoplay />
  471. </audio></td>
  472. <td style="text-align: center"><audio controls="controls">
  473. <source src="./demo/LibriTTS/207_131203_000011_000000_synthesized.wav" autoplay />
  474. </audio></td>
  475. </tr>
  476. </table>
  477. <div><b>Speaker</b>: <em>207</em></div>
  478. <div><b>Text</b>: <em>his mother, however, was a little shy of the company for him, and besides she could not always
  479. spare him.</em></div>
  480. <hr>
  481. <table>
  482. <tr>
  483. <th style="text-align: center">2299_6524_000057_000000 (Ground-Truth) </th>
  484. <th style="text-align: center">2299_6524_000057_000000 (Synthesized) </th>
  485. </tr>
  486. <tr>
  487. <td style="text-align: center"><audio controls="controls">
  488. <source src="./demo/LibriTTS/2299_6524_000057_000000_ground-truth.wav" autoplay />
  489. </audio></td>
  490. <td style="text-align: center"><audio controls="controls">
  491. <source src="./demo/LibriTTS/2299_6524_000057_000000_synthesized.wav" autoplay />
  492. </audio></td>
  493. </tr>
  494. </table>
  495. <div><b>Speaker</b>: <em>2299</em></div>
  496. <div><b>Text</b>: <em>on the arrival at the hut to my chagrin we found it filled with snow.</em></div>
  497. <hr>
  498. <table>
  499. <tr>
  500. <th style="text-align: center">2388_153731_000003_000000 (Ground-Truth) </th>
  501. <th style="text-align: center">2388_153731_000003_000000 (Synthesized) </th>
  502. </tr>
  503. <tr>
  504. <td style="text-align: center"><audio controls="controls">
  505. <source src="./demo/LibriTTS/2388_153731_000003_000000_ground-truth.wav" autoplay />
  506. </audio></td>
  507. <td style="text-align: center"><audio controls="controls">
  508. <source src="./demo/LibriTTS/2388_153731_000003_000000_synthesized.wav" autoplay />
  509. </audio></td>
  510. </tr>
  511. </table>
  512. <div><b>Speaker</b>: <em>2388</em></div>
  513. <div><b>Text</b>: <em>the story of the first scientific observation of the corona and the prominences is thrillingly
  514. interesting, and in fact dramatic.</em></div>
  515. <hr>
  516. <table>
  517. <tr>
  518. <th style="text-align: center">3615_14677_000014_000000 (Ground-Truth) </th>
  519. <th style="text-align: center">3615_14677_000014_000000 (Synthesized) </th>
  520. </tr>
  521. <tr>
  522. <td style="text-align: center"><audio controls="controls">
  523. <source src="./demo/LibriTTS/3615_14677_000014_000000_ground-truth.wav" autoplay />
  524. </audio></td>
  525. <td style="text-align: center"><audio controls="controls">
  526. <source src="./demo/LibriTTS/3615_14677_000014_000000_synthesized.wav" autoplay />
  527. </audio></td>
  528. </tr>
  529. </table>
  530. <div><b>Speaker</b>: <em>3615</em></div>
  531. <div><b>Text</b>: <em>beat three eggs with a pinch of salt; add one pint of milk and two thirds of a cup of
  532. flour.</em></div>
  533. <hr>
  534. <table>
  535. <tr>
  536. <th style="text-align: center">4744_31668_000003_000001 (Ground-Truth) </th>
  537. <th style="text-align: center">4744_31668_000003_000001 (Synthesized) </th>
  538. </tr>
  539. <tr>
  540. <td style="text-align: center"><audio controls="controls">
  541. <source src="./demo/LibriTTS/4744_31668_000003_000001_ground-truth.wav" autoplay />
  542. </audio></td>
  543. <td style="text-align: center"><audio controls="controls">
  544. <source src="./demo/LibriTTS/4744_31668_000003_000001_synthesized.wav" autoplay />
  545. </audio></td>
  546. </tr>
  547. </table>
  548. <div><b>Speaker</b>: <em>4744</em></div>
  549. <div><b>Text</b>: <em>far from morbid naturally, she did her best to deny the thought, and so simple and unartificial
  550. was her type of mind that for weeks together she would wholly lose it.</em></div>
  551. <hr>
  552. <table>
  553. <tr>
  554. <th style="text-align: center">480_127525_000006_000000 (Ground-Truth) </th>
  555. <th style="text-align: center">480_127525_000006_000000 (Synthesized) </th>
  556. </tr>
  557. <tr>
  558. <td style="text-align: center"><audio controls="controls">
  559. <source src="./demo/LibriTTS/480_127525_000006_000000_ground-truth.wav" autoplay />
  560. </audio></td>
  561. <td style="text-align: center"><audio controls="controls">
  562. <source src="./demo/LibriTTS/480_127525_000006_000000_synthesized.wav" autoplay />
  563. </audio></td>
  564. </tr>
  565. </table>
  566. <div><b>Speaker</b>: <em>480</em></div>
  567. <div><b>Text</b>: <em>i tried and found by experiment that the tide kept sweeping us westward until i had laid her
  568. head due east, or just about right angles to the way we ought to go.</em></div>
  569. <hr>
  570. <table>
  571. <tr>
  572. <th style="text-align: center">5126_27504_000011_000003 (Ground-Truth) </th>
  573. <th style="text-align: center">5126_27504_000011_000003 (Synthesized) </th>
  574. </tr>
  575. <tr>
  576. <td style="text-align: center"><audio controls="controls">
  577. <source src="./demo/LibriTTS/5126_27504_000011_000003_ground-truth.wav" autoplay />
  578. </audio></td>
  579. <td style="text-align: center"><audio controls="controls">
  580. <source src="./demo/LibriTTS/5126_27504_000011_000003_synthesized.wav" autoplay />
  581. </audio></td>
  582. </tr>
  583. </table>
  584. <div><b>Speaker</b>: <em>5126</em></div>
  585. <div><b>Text</b>: <em>it looked as if our luck was dead out, and we began to think our chance of getting across the
  586. border to queensland, and clear out of the colony that way, looked worse every day.</em></div>
  587. <hr>
  588. <table>
  589. <tr>
  590. <th style="text-align: center">6098_57837_000008_000000 (Ground-Truth) </th>
  591. <th style="text-align: center">6098_57837_000008_000000 (Synthesized) </th>
  592. </tr>
  593. <tr>
  594. <td style="text-align: center"><audio controls="controls">
  595. <source src="./demo/LibriTTS/6098_57837_000008_000000_ground-truth.wav" autoplay />
  596. </audio></td>
  597. <td style="text-align: center"><audio controls="controls">
  598. <source src="./demo/LibriTTS/6098_57837_000008_000000_synthesized.wav" autoplay />
  599. </audio></td>
  600. </tr>
  601. </table>
  602. <div><b>Speaker</b>: <em>6098</em></div>
  603. <div><b>Text</b>: <em>word was sent of their predicament to the nearest fort, and lieutenant pershing was sent with a
  604. small detachment to their rescue.</em></div>
  605. <hr>
  606. <table>
  607. <tr>
  608. <th style="text-align: center">6544_231862_000065_000001 (Ground-Truth) </th>
  609. <th style="text-align: center">6544_231862_000065_000001 (Synthesized) </th>
  610. </tr>
  611. <tr>
  612. <td style="text-align: center"><audio controls="controls">
  613. <source src="./demo/LibriTTS/6544_231862_000065_000001_ground-truth.wav" autoplay />
  614. </audio></td>
  615. <td style="text-align: center"><audio controls="controls">
  616. <source src="./demo/LibriTTS/6544_231862_000065_000001_synthesized.wav" autoplay />
  617. </audio></td>
  618. </tr>
  619. </table>
  620. <div><b>Speaker</b>: <em>6544</em></div>
  621. <div><b>Text</b>: <em>denzil did look, and uttered a second cry more startling than the first.</em></div>
  622. <hr>
  623. <table>
  624. <tr>
  625. <th style="text-align: center">968_122545_000053_000000 (Ground-Truth) </th>
  626. <th style="text-align: center">968_122545_000053_000000 (Synthesized) </th>
  627. </tr>
  628. <tr>
  629. <td style="text-align: center"><audio controls="controls">
  630. <source src="./demo/LibriTTS/968_122545_000053_000000_ground-truth.wav" autoplay />
  631. </audio></td>
  632. <td style="text-align: center"><audio controls="controls">
  633. <source src="./demo/LibriTTS/968_122545_000053_000000_synthesized.wav" autoplay />
  634. </audio></td>
  635. </tr>
  636. </table>
  637. <div><b>Speaker</b>: <em>968</em></div>
  638. <div><b>Text</b>: <em>the bee fought the window angrily, up and down, up and down, for several minutes; then found the
  639. open glass and whirled
  640. out into the sunshine, joyfully.</em></div>
  641. </p>
  642. </body>
  643. </html>