36 lines
678 B
HTML
36 lines
678 B
HTML
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
</head>
|
|
<body>
|
|
<h1>VALL-E Demo</h1>
|
|
<p>${PREAMBLE}</p>
|
|
<table>
|
|
<thead>
|
|
<caption>LibriSpeech</caption>
|
|
<tr>
|
|
<th>Text</th>
|
|
<th>Prompt</th>
|
|
<th>Our VALL-E</th>
|
|
<th>Original VALL-E</th>
|
|
<th>YourTTS</th>
|
|
<th>Ground Truth</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>${LIBRISPEECH_SAMPLES}</tbody>
|
|
</table>
|
|
<table>
|
|
<thead>
|
|
<caption>Sampled Dataset</caption>
|
|
<tr>
|
|
<th>Text</th>
|
|
<th>Prompt</th>
|
|
<th>Our VALL-E</th>
|
|
<th>Ground Truth</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>${DATASET_SAMPLES}</tbody>
|
|
</table>
|
|
<p>Settings used: <pre>${SETTINGS}</pre></p>
|
|
</body>
|
|
</html> |