forked from hubertsiuzdak/voice-conversion
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdecoder.py
More file actions
172 lines (145 loc) · 7.43 KB
/
decoder.py
File metadata and controls
172 lines (145 loc) · 7.43 KB
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
# *****************************************************************************
# Copyright (c) 2018, NVIDIA CORPORATION.
# Copyright (c) 2019, Hubert Siuzdak
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# * Neither the name of the NVIDIA CORPORATION nor the
# names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL NVIDIA CORPORATION BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
# *****************************************************************************
import torch
import math
from conv import Conv
class Decoder(torch.nn.Module):
def __init__(self, n_speakers, n_in_channels, n_layers, max_dilation,
n_residual_channels, n_skip_channels, n_out_channels,
n_cond_channels, upsamp_window, upsamp_stride):
super(Decoder, self).__init__()
self.upsample = torch.nn.ConvTranspose1d(n_cond_channels,
n_cond_channels,
upsamp_window,
upsamp_stride)
self.n_layers = n_layers
self.max_dilation = max_dilation
self.n_residual_channels = n_residual_channels
self.n_out_channels = n_out_channels
self.cond_layers = Conv(n_cond_channels, 2 * n_residual_channels * n_layers,
w_init_gain='tanh')
self.dilate_layers = torch.nn.ModuleList()
self.res_layers = torch.nn.ModuleList()
self.skip_layers = torch.nn.ModuleList()
self.embed = torch.nn.Embedding(n_in_channels,
n_residual_channels)
self.conv_out = Conv(n_skip_channels, n_out_channels,
bias=False, w_init_gain='relu')
self.conv_end = Conv(n_out_channels, n_out_channels,
bias=False, w_init_gain='linear')
loop_factor = math.floor(math.log2(max_dilation)) + 1
for i in range(n_layers):
dilation = 2 ** (i % loop_factor)
# Kernel size is 2 in nv-wavenet
in_layer = Conv(n_residual_channels, 2 * n_residual_channels,
kernel_size=2, dilation=dilation,
w_init_gain='tanh', is_causal=True)
self.dilate_layers.append(in_layer)
# last one is not necessary
if i < n_layers - 1:
res_layer = Conv(n_residual_channels, n_residual_channels,
w_init_gain='linear')
self.res_layers.append(res_layer)
skip_layer = Conv(n_residual_channels, n_skip_channels,
w_init_gain='relu')
self.skip_layers.append(skip_layer)
def get_cond_input(self, data):
cond_input = self.upsample(data)
cond_input = self.cond_layers(cond_input)
cond_input = cond_input.view(cond_input.size(0), self.n_layers, -1, cond_input.size(2))
return cond_input.permute(2, 0, 1, 3)
def forward(self, encoded, forward_input):
cond_input = self.upsample(encoded)
assert (cond_input.size(2) >= forward_input.size(1))
if cond_input.size(2) > forward_input.size(1):
cond_input = cond_input[:, :, :forward_input.size(1)]
forward_input = self.embed(forward_input.long())
forward_input = forward_input.transpose(1, 2)
cond_acts = self.cond_layers(cond_input)
cond_acts = cond_acts.view(cond_acts.size(0), self.n_layers, -1, cond_acts.size(2))
for i in range(self.n_layers):
in_act = self.dilate_layers[i](forward_input)
in_act = in_act + cond_acts[:, i, :, :]
t_act = torch.nn.functional.tanh(in_act[:, :self.n_residual_channels, :])
s_act = torch.nn.functional.sigmoid(in_act[:, self.n_residual_channels:, :])
acts = t_act * s_act
if i < len(self.res_layers):
res_acts = self.res_layers[i](acts)
forward_input = res_acts + forward_input
if i == 0:
output = self.skip_layers[i](acts)
else:
output = self.skip_layers[i](acts) + output
output = torch.nn.functional.relu(output, True)
output = self.conv_out(output)
output = torch.nn.functional.relu(output, True)
output = self.conv_end(output)
# Remove last probabilities because they've seen all the data
last = output[:, :, -1]
last = last.unsqueeze(2)
output = output[:, :, :-1]
# Replace probability for first value with 0's because we don't know
first = last * 0.0
output = torch.cat((first, output), dim=2)
return output
def export_weights(self):
"""
Returns a dictionary with tensors ready for nv_wavenet wrapper
"""
model = {}
# We're not using a convolution to start to this does nothing
model["embedding_prev"] = torch.cuda.FloatTensor(self.n_out_channels,
self.n_residual_channels).fill_(0.0)
model["embedding_curr"] = self.embed.weight.data
model["conv_out_weight"] = self.conv_out.conv.weight.data
model["conv_end_weight"] = self.conv_end.conv.weight.data
dilate_weights = []
dilate_biases = []
for layer in self.dilate_layers:
dilate_weights.append(layer.conv.weight.data)
dilate_biases.append(layer.conv.bias.data)
model["dilate_weights"] = dilate_weights
model["dilate_biases"] = dilate_biases
model["max_dilation"] = self.max_dilation
res_weights = []
res_biases = []
for layer in self.res_layers:
res_weights.append(layer.conv.weight.data)
res_biases.append(layer.conv.bias.data)
model["res_weights"] = res_weights
model["res_biases"] = res_biases
skip_weights = []
skip_biases = []
for layer in self.skip_layers:
skip_weights.append(layer.conv.weight.data)
skip_biases.append(layer.conv.bias.data)
model["skip_weights"] = skip_weights
model["skip_biases"] = skip_biases
model["use_embed_tanh"] = False
return model