Skip to content

Commit d43a8e7

Browse files
committed
Add abstract, prune requirements
1 parent 838b4e4 commit d43a8e7

3 files changed

Lines changed: 27 additions & 348 deletions

File tree

README.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
1-
### Audio samples
1+
## SpeedySpeech
22

3-
Audio samples can be found [here](https://janvainer.github.io/speedyspeech/)
3+
While recent neural sequence-to-sequence models have greatly improved the quality of speech synthesis,
4+
there has not been a system capable of
5+
fast training, fast inference and
6+
high-quality audio synthesis at the same time.
7+
We propose a student-teacher network
8+
capable of high-quality faster-than-real-time spectrogram synthesis, with low requirements on computational resources and fast training time.
9+
We show that self-attention layers are not necessary for generation of high quality audio.
10+
We utilize simple convolutional blocks with residual connections in both student and teacher networks and use only a single attention layer in the teacher model.
11+
Coupled with a MelGAN vocoder, our model's voice quality was rated significantly higher than Tacotron~2.
12+
Our model can be efficiently trained on a single GPU and can run in real time even on a
13+
CPU.
14+
15+
See our audio samples [here](https://janvainer.github.io/speedyspeech/).
416

517
### Installation instructions
618
The code was tested with `python 3.7.3` and `cuda 10.0.130`.

requirements.txt

Lines changed: 13 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -1,76 +1,13 @@
1-
absl-py==0.7.1
2-
astor==0.8.0
3-
atomicwrites==1.3.0
4-
attrs==19.1.0
5-
audioread==2.1.8
6-
beautifulsoup4==4.8.0
7-
cffi==1.12.3
8-
clldutils==3.1.1
9-
colorlog==4.0.2
10-
csvw==1.6.0
11-
cycler==0.10.0
12-
decorator==4.4.0
13-
fastdtw==0.3.4
14-
future==0.18.0
15-
gast==0.2.2
16-
google-pasta==0.1.7
17-
grpcio==1.23.0
18-
h5py==2.9.0
19-
importlib-metadata==0.20
20-
isodate==0.6.0
21-
joblib==0.13.2
22-
kiwisolver==1.1.0
23-
librosa==0.7.0
24-
llvmlite==0.29.0
25-
Markdown==3.1.1
26-
matplotlib==3.1.1
27-
more-itertools==7.2.0
28-
numba==0.45.1
29-
numpy==1.16.4
30-
packaging==19.1
31-
pandas==1.0.1
32-
Pillow==6.1.0
33-
pkg-resources==0.0.0
34-
playsound==1.2.2
35-
pluggy==0.12.0
36-
protobuf==3.9.1
37-
py==1.8.0
38-
pycparser==2.19
39-
pydeps==1.7.3
40-
pyparsing==2.4.2
41-
pytest==5.1.2
42-
python-dateutil==2.8.0
43-
pytorch-ignite==0.3.0
44-
pytorch-lightning==0.6.0
45-
pytz==2019.3
46-
PyYAML==5.3
47-
regex==2019.8.19
48-
resampy==0.2.2
49-
rfc3986==1.3.2
50-
scikit-learn==0.21.3
51-
scipy==1.3.1
52-
segments==2.1.0
53-
six==1.12.0
54-
sklearn==0.0
55-
SoundFile==0.10.2
56-
soupsieve==1.9.3
57-
stdlib-list==0.5.0
58-
tabulate==0.8.5
59-
tb-nightly==1.14.0a20190603
60-
tensorboard==2.0.0
61-
termcolor==1.1.0
62-
torch==1.2.0
63-
torch-stft==0.1.4
64-
torchaudio==0.3.0
65-
torchcontrib==0.0.2
66-
torchnmf==0.2
67-
torchvision==0.4.0
68-
tqdm==4.42.1
69-
uritemplate==3.0.0
70-
wcwidth==0.1.7
71-
Werkzeug==0.15.5
72-
wrapt==1.11.2
73-
zipp==0.6.0
74-
barbar==0.2.1
75-
gitdb==4.0.2
76-
g2p-en==2.1.0
1+
torch
2+
barbar
3+
librosa
4+
g2p-en
5+
gitdb
6+
numpy
7+
fastdtw
8+
tensorboard
9+
matplotlib
10+
scipy
11+
tqdm
12+
pillow
13+
pyyaml

style.css

Lines changed: 0 additions & 270 deletions
This file was deleted.

0 commit comments

Comments
 (0)