This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
43 lines (36 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Universal Speech Translator</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="jquery-3.5.js"></script>
</head>
<body>
<div class="container">
<h1 id="text1">Universal Speech Translator Demo</h1>
<div id="intro">
<br>
</div>
</div>
<div class="content-container">
<ul>
<li>Direct Speech-to-Speech Translation With Discrete Units: [<a href="direct_s2st_units/index.html"
target="_blank">demo</a>, <a href="https://arxiv.org/abs/2107.05604" target="_blank">paper</a>, <a
href="https://github.com/pytorch/fairseq/tree/main/examples/speech_to_speech/docs/direct_s2st_discrete_units.md"
target="_blank">code</a>]</li>
<li>Textless Speech-to-Speech Translation on Real Data: [<a href="textless_s2st_real_data/index.html"
target="_blank">demo</a>, <a href="https://arxiv.org/abs/2112.08352" target="_blank">paper</a>, <a
href="https://github.com/pytorch/fairseq/tree/main/examples/speech_to_speech/docs/textless_s2st_real_data.md"
target="_blank">code</a>]</li>
<li>Enhanced Direct Speech-to-Speech Translation Using Self-supervised Pre-training and Data
Augmentation: [<a href="enhanced_direct_s2st_units/index.html" target="_blank">demo</a>, <a
href="https://arxiv.org/abs/2204.02967" target="_blank">paper</a>, <a
href="https://github.com/pytorch/fairseq/blob/main/examples/speech_to_speech/docs/enhanced_direct_s2st_discrete_units.md"
target="_blank">code</a>]
</li>
</ul>
</div>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
</body>
</html>