forked from tilde-nlp/glow-tts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.py
355 lines (310 loc) · 12 KB
/
models.py
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
import math
import torch
from torch import nn
from torch.nn import functional as F
import modules
import commons
import attentions
import monotonic_align
class DurationPredictor(nn.Module):
def __init__(self, in_channels, filter_channels, kernel_size, p_dropout):
super().__init__()
self.in_channels = in_channels
self.filter_channels = filter_channels
self.kernel_size = kernel_size
self.p_dropout = p_dropout
self.drop = nn.Dropout(p_dropout)
self.conv_1 = nn.Conv1d(in_channels, filter_channels, kernel_size, padding=kernel_size // 2)
self.norm_1 = attentions.LayerNorm(filter_channels)
self.conv_2 = nn.Conv1d(filter_channels, filter_channels, kernel_size, padding=kernel_size // 2)
self.norm_2 = attentions.LayerNorm(filter_channels)
self.proj = nn.Conv1d(filter_channels, 1, 1)
def forward(self, x, x_mask):
x = self.conv_1(x * x_mask)
x = torch.relu(x)
x = self.norm_1(x)
x = self.drop(x)
x = self.conv_2(x * x_mask)
x = torch.relu(x)
x = self.norm_2(x)
x = self.drop(x)
x = self.proj(x * x_mask)
return x * x_mask
class TextEncoder(nn.Module):
def __init__(self,
speaker_dim,
n_vocab,
out_channels,
hidden_channels,
filter_channels,
filter_channels_dp,
n_heads,
n_layers,
kernel_size,
p_dropout,
window_size=None,
block_length=None,
mean_only=False,
prenet=False,
gin_channels=0):
super().__init__()
self.speaker_dim = speaker_dim
self.n_vocab = n_vocab
self.out_channels = out_channels
self.hidden_channels = hidden_channels + speaker_dim
self.filter_channels = filter_channels
self.filter_channels_dp = filter_channels_dp
self.n_heads = n_heads
self.n_layers = n_layers
self.kernel_size = kernel_size
self.p_dropout = p_dropout
self.window_size = window_size
self.block_length = block_length
self.mean_only = mean_only
self.prenet = prenet
self.gin_channels = gin_channels
# append speaker embedding dimension to hidden size
hidden_channels = hidden_channels + speaker_dim
self.emb = nn.Embedding(n_vocab, hidden_channels - self.speaker_dim)
nn.init.normal_(self.emb.weight, 0.0, (hidden_channels - self.speaker_dim) ** -0.5)
print("Hidden channels set to local: ", hidden_channels)
if prenet:
self.pre = modules.ConvReluNorm(hidden_channels, hidden_channels,
hidden_channels, kernel_size=5,
n_layers=3, p_dropout=0.5)
self.encoder = attentions.Encoder(
hidden_channels,
filter_channels,
n_heads,
n_layers,
kernel_size,
p_dropout,
window_size=window_size,
block_length=block_length,
)
self.proj_m = nn.Conv1d(hidden_channels, out_channels, 1)
if not mean_only:
self.proj_s = nn.Conv1d(hidden_channels, out_channels, 1)
self.proj_w = DurationPredictor(hidden_channels + gin_channels, filter_channels_dp, kernel_size, p_dropout)
def forward(self, x, x_lengths, speaker_embedding, g=None):
x = self.emb(x) * math.sqrt(self.hidden_channels) # [b, t, h]
x = torch.transpose(x, 1, -1) # [b, h, t]
x_mask = torch.unsqueeze(commons.sequence_mask(x_lengths, x.size(2)), 1).to(x.dtype)
# Append speaker embeddings
speaker_embedding = speaker_embedding.unsqueeze(2)
speaker_embedding = speaker_embedding.repeat(1, 1, x.shape[2])
x = torch.cat((x, speaker_embedding), dim=1)
if self.prenet:
x = self.pre(x, x_mask)
x = self.encoder(x, x_mask)
if g is not None:
g_exp = g.expand(-1, -1, x.size(-1))
x_dp = torch.cat([torch.detach(x), g_exp], 1)
else:
x_dp = torch.detach(x)
x_m = self.proj_m(x) * x_mask
if not self.mean_only:
x_logs = self.proj_s(x) * x_mask
else:
x_logs = torch.zeros_like(x_m)
logw = self.proj_w(x_dp, x_mask)
return x_m, x_logs, logw, x_mask
class FlowSpecDecoder(nn.Module):
def __init__(self,
in_channels,
hidden_channels,
kernel_size,
dilation_rate,
n_blocks,
n_layers,
p_dropout=0.,
n_split=4,
n_sqz=2,
sigmoid_scale=False,
gin_channels=0):
super().__init__()
self.in_channels = in_channels
self.hidden_channels = hidden_channels
self.kernel_size = kernel_size
self.dilation_rate = dilation_rate
self.n_blocks = n_blocks
self.n_layers = n_layers
self.p_dropout = p_dropout
self.n_split = n_split
self.n_sqz = n_sqz
self.sigmoid_scale = sigmoid_scale
self.gin_channels = gin_channels
self.flows = nn.ModuleList()
for b in range(n_blocks):
self.flows.append(modules.ActNorm(channels=in_channels * n_sqz))
self.flows.append(modules.InvConvNear(channels=in_channels * n_sqz, n_split=n_split))
self.flows.append(
attentions.CouplingBlock(
in_channels * n_sqz,
hidden_channels,
kernel_size=kernel_size,
dilation_rate=dilation_rate,
n_layers=n_layers,
gin_channels=gin_channels,
p_dropout=p_dropout,
sigmoid_scale=sigmoid_scale))
def forward(self, x, x_mask, g=None, reverse=False):
if not reverse:
flows = self.flows
logdet_tot = 0
else:
flows = reversed(self.flows)
logdet_tot = None
if self.n_sqz > 1:
x, x_mask = commons.squeeze(x, x_mask, self.n_sqz)
for f in flows:
if not reverse:
x, logdet = f(x, x_mask, g=g, reverse=reverse)
logdet_tot += logdet
else:
x, logdet = f(x, x_mask, g=g, reverse=reverse)
if self.n_sqz > 1:
x, x_mask = commons.unsqueeze(x, x_mask, self.n_sqz)
return x, logdet_tot
def store_inverse(self):
for f in self.flows:
f.store_inverse()
class FlowGenerator(nn.Module):
def __init__(self,
speaker_dim,
n_vocab,
hidden_channels,
filter_channels,
filter_channels_dp,
out_channels,
kernel_size=3,
n_heads=2,
n_layers_enc=6,
p_dropout=0.,
n_blocks_dec=12,
kernel_size_dec=5,
dilation_rate=5,
n_block_layers=4,
p_dropout_dec=0.,
n_speakers=0,
gin_channels=0,
n_split=4,
n_sqz=1,
sigmoid_scale=False,
window_size=None,
block_length=None,
mean_only=False,
hidden_channels_enc=None,
hidden_channels_dec=None,
prenet=False,
**kwargs):
super().__init__()
self.speaker_dim = speaker_dim
self.n_vocab = n_vocab
self.hidden_channels = hidden_channels
self.filter_channels = filter_channels
self.filter_channels_dp = filter_channels_dp
self.out_channels = out_channels
self.kernel_size = kernel_size
self.n_heads = n_heads
self.n_layers_enc = n_layers_enc
self.p_dropout = p_dropout
self.n_blocks_dec = n_blocks_dec
self.kernel_size_dec = kernel_size_dec
self.dilation_rate = dilation_rate
self.n_block_layers = n_block_layers
self.p_dropout_dec = p_dropout_dec
self.n_speakers = n_speakers
self.gin_channels = gin_channels
self.n_split = n_split
self.n_sqz = n_sqz
self.sigmoid_scale = sigmoid_scale
self.window_size = window_size
self.block_length = block_length
self.mean_only = mean_only
self.hidden_channels_enc = hidden_channels_enc
self.hidden_channels_dec = hidden_channels_dec
self.prenet = prenet
self.encoder = TextEncoder(
speaker_dim,
n_vocab,
out_channels,
hidden_channels_enc or hidden_channels,
filter_channels,
filter_channels_dp,
n_heads,
n_layers_enc,
kernel_size,
p_dropout,
window_size=window_size,
block_length=block_length,
mean_only=mean_only,
prenet=prenet,
gin_channels=gin_channels)
self.decoder = FlowSpecDecoder(
out_channels,
hidden_channels_dec or hidden_channels,
kernel_size_dec,
dilation_rate,
n_blocks_dec,
n_block_layers,
p_dropout=p_dropout_dec,
n_split=n_split,
n_sqz=n_sqz,
sigmoid_scale=sigmoid_scale,
gin_channels=gin_channels)
if n_speakers > 1:
self.emb_g = nn.Embedding(n_speakers, gin_channels)
nn.init.uniform_(self.emb_g.weight, -0.1, 0.1)
def forward(self, x, x_lengths, speaker_embedding, y=None, y_lengths=None, g=None, gen=False, noise_scale=1.,
length_scale=1.):
if g is not None:
g = F.normalize(self.emb_g(g)).unsqueeze(-1) # [b, h]
x_m, x_logs, logw, x_mask = self.encoder(x, x_lengths, speaker_embedding, g=g)
if gen:
w = torch.exp(logw) * x_mask * length_scale
w_ceil = torch.ceil(w)
y_lengths = torch.clamp_min(torch.sum(w_ceil, [1, 2]), 1).long()
y_max_length = None
else:
y_max_length = y.size(2)
y, y_lengths, y_max_length = self.preprocess(y, y_lengths, y_max_length)
y_mask = torch.unsqueeze(commons.sequence_mask(y_lengths, y_max_length), 1).to(x_mask.dtype)
attn_mask = torch.unsqueeze(x_mask, -1) * torch.unsqueeze(y_mask, 2)
if gen:
attn = commons.generate_path(w_ceil.squeeze(1), attn_mask.squeeze(1)).unsqueeze(1)
y_m = torch.matmul(attn.squeeze(1).transpose(1, 2), x_m.transpose(1, 2)).transpose(1,
2) # [b, t', t], [b, t, d] -> [b, d, t']
y_logs = torch.matmul(attn.squeeze(1).transpose(1, 2), x_logs.transpose(1, 2)).transpose(1,
2) # [b, t', t], [b, t, d] -> [b, d, t']
logw_ = torch.log(1e-8 + torch.sum(attn, -1)) * x_mask
z = (y_m + torch.exp(y_logs) * torch.randn_like(y_m) * noise_scale) * y_mask
y, logdet = self.decoder(z, y_mask, g=g, reverse=True)
return (y, y_m, y_logs, logdet), attn, logw, logw_, x_m, x_logs
else:
z, logdet = self.decoder(y, y_mask, g=g, reverse=False)
with torch.no_grad():
x_s_sq_r = torch.exp(-2 * x_logs)
logp1 = torch.sum(-0.5 * math.log(2 * math.pi) - x_logs, [1]).unsqueeze(-1) # [b, t, 1]
logp2 = torch.matmul(x_s_sq_r.transpose(1, 2), -0.5 * (z ** 2)) # [b, t, d] x [b, d, t'] = [b, t, t']
logp3 = torch.matmul((x_m * x_s_sq_r).transpose(1, 2), z) # [b, t, d] x [b, d, t'] = [b, t, t']
logp4 = torch.sum(-0.5 * (x_m ** 2) * x_s_sq_r, [1]).unsqueeze(-1) # [b, t, 1]
logp = logp1 + logp2 + logp3 + logp4 # [b, t, t']
# Only used during training, which is done on linux
# imports cython function which will not work on windows
import tts_dev.glow_model.monotonic_align as monotonic_align
attn = monotonic_align.maximum_path(logp, attn_mask.squeeze(1)).unsqueeze(1).detach()
y_m = torch.matmul(attn.squeeze(1).transpose(1, 2), x_m.transpose(1, 2)).transpose(1,
2) # [b, t', t], [b, t, d] -> [b, d, t']
y_logs = torch.matmul(attn.squeeze(1).transpose(1, 2), x_logs.transpose(1, 2)).transpose(1,
2) # [b, t', t], [b, t, d] -> [b, d, t']
logw_ = torch.log(1e-8 + torch.sum(attn, -1)) * x_mask
return (z, y_m, y_logs, logdet), attn, logw, logw_, x_m, x_logs
def preprocess(self, y, y_lengths, y_max_length):
if y_max_length is not None:
y_max_length = (y_max_length // self.n_sqz) * self.n_sqz
y = y[:, :, :y_max_length]
y_lengths = (y_lengths // self.n_sqz) * self.n_sqz
return y, y_lengths, y_max_length
def store_inverse(self):
self.decoder.store_inverse()