ba4be087d5
Create PR to main with cherry-pick from release / cherry-pick (push) Failing after 0s
CICD NeMo / pre-flight (push) Failing after 0s
CICD NeMo / configure (push) Has been skipped
Build, validate, and release Neural Modules / pre-flight (push) Failing after 1s
CICD NeMo / code-linting (push) Has been skipped
Build, validate, and release Neural Modules / release (push) Has been skipped
Build, validate, and release Neural Modules / release-summary (push) Has been cancelled
CICD NeMo / cicd-test-container-build (push) Has been cancelled
CICD NeMo / cicd-import-tests (push) Has been cancelled
CICD NeMo / L0_Setup_Test_Data_And_Models (push) Has been cancelled
CICD NeMo / cicd-main-unit-tests (push) Has been cancelled
CICD NeMo / cicd-main-speech (push) Has been cancelled
CICD NeMo / Nemo_CICD_Test (push) Has been cancelled
CICD NeMo / Coverage (e2e) (push) Has been cancelled
CICD NeMo / Coverage (unit-test) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
CICD NeMo / cicd-wait-in-queue (push) Has been cancelled
357 lines
12 KiB
Python
357 lines
12 KiB
Python
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
from typing import Optional
|
|
|
|
import torch
|
|
import torch.nn as nn
|
|
import torch.nn.functional as F
|
|
|
|
from nemo.collections.tts.modules.submodules import ConditionalInput, ConditionalLayerNorm, LinearNorm
|
|
from nemo.collections.tts.parts.utils.helpers import get_mask_from_lengths
|
|
from nemo.core.classes import NeuralModule, adapter_mixins, typecheck
|
|
from nemo.core.neural_types.elements import EncodedRepresentation, LengthsType, MaskType, TokenIndex
|
|
from nemo.core.neural_types.neural_type import NeuralType
|
|
|
|
|
|
def mask_from_lens(lens, max_len: Optional[int] = None):
|
|
if max_len is None:
|
|
max_len = lens.max()
|
|
ids = torch.arange(0, max_len, device=lens.device, dtype=lens.dtype)
|
|
mask = torch.lt(ids, lens.unsqueeze(1))
|
|
return mask
|
|
|
|
|
|
class PositionalEmbedding(nn.Module):
|
|
def __init__(self, demb):
|
|
super(PositionalEmbedding, self).__init__()
|
|
self.demb = demb
|
|
inv_freq = 1 / (10000 ** (torch.arange(0.0, demb, 2.0) / demb))
|
|
self.register_buffer('inv_freq', inv_freq)
|
|
|
|
def forward(self, pos_seq, bsz=None):
|
|
# sinusoid_inp = torch.ger(pos_seq, self.inv_freq)
|
|
sinusoid_inp = torch.matmul(torch.unsqueeze(pos_seq, -1), torch.unsqueeze(self.inv_freq, 0))
|
|
|
|
pos_emb = torch.cat([sinusoid_inp.sin(), sinusoid_inp.cos()], dim=1)
|
|
if bsz is not None:
|
|
return pos_emb[None, :, :].repeat(bsz, 1, 1)
|
|
else:
|
|
return pos_emb[None, :, :]
|
|
|
|
|
|
class PositionwiseConvFF(nn.Module):
|
|
def __init__(self, d_model, d_inner, kernel_size, dropout, pre_lnorm=False, condition_types=[]):
|
|
super(PositionwiseConvFF, self).__init__()
|
|
|
|
self.d_model = d_model
|
|
self.d_inner = d_inner
|
|
self.dropout = dropout
|
|
|
|
if type(kernel_size) is not tuple:
|
|
kernel_size = (kernel_size, kernel_size)
|
|
|
|
self.CoreNet = nn.Sequential(
|
|
nn.Conv1d(d_model, d_inner, kernel_size[0], 1, (kernel_size[0] // 2)),
|
|
nn.ReLU(),
|
|
# nn.Dropout(dropout), # worse convergence
|
|
nn.Conv1d(d_inner, d_model, kernel_size[1], 1, (kernel_size[1] // 2)),
|
|
nn.Dropout(dropout),
|
|
)
|
|
self.layer_norm = ConditionalLayerNorm(d_model, condition_dim=d_model, condition_types=condition_types)
|
|
self.pre_lnorm = pre_lnorm
|
|
|
|
def forward(self, inp, conditioning=None):
|
|
return self._forward(inp, conditioning)
|
|
|
|
def _forward(self, inp, conditioning=None):
|
|
if self.pre_lnorm:
|
|
# layer normalization + positionwise feed-forward
|
|
core_out = inp.transpose(1, 2)
|
|
core_out = self.CoreNet(self.layer_norm(core_out, conditioning).to(inp.dtype))
|
|
core_out = core_out.transpose(1, 2)
|
|
|
|
# residual connection
|
|
output = core_out + inp
|
|
else:
|
|
# positionwise feed-forward
|
|
core_out = inp.transpose(1, 2)
|
|
core_out = self.CoreNet(core_out)
|
|
core_out = core_out.transpose(1, 2)
|
|
|
|
# residual connection + layer normalization
|
|
output = self.layer_norm(inp + core_out, conditioning).to(inp.dtype)
|
|
|
|
return output
|
|
|
|
|
|
class MultiHeadAttn(nn.Module):
|
|
def __init__(self, n_head, d_model, d_head, dropout, dropatt=0.1, pre_lnorm=False, condition_types=[]):
|
|
super(MultiHeadAttn, self).__init__()
|
|
|
|
self.n_head = n_head
|
|
self.d_model = d_model
|
|
self.d_head = d_head
|
|
self.scale = 1 / (d_head**0.5)
|
|
self.pre_lnorm = pre_lnorm
|
|
|
|
self.qkv_net = nn.Linear(d_model, 3 * n_head * d_head)
|
|
self.drop = nn.Dropout(dropout)
|
|
self.dropatt = nn.Dropout(dropatt)
|
|
self.o_net = nn.Linear(n_head * d_head, d_model, bias=False)
|
|
self.layer_norm = ConditionalLayerNorm(d_model, condition_dim=d_model, condition_types=condition_types)
|
|
|
|
def forward(self, inp, attn_mask=None, conditioning=None):
|
|
return self._forward(inp, attn_mask, conditioning)
|
|
|
|
def _forward(self, inp, attn_mask=None, conditioning=None):
|
|
residual = inp
|
|
|
|
if self.pre_lnorm:
|
|
# layer normalization
|
|
inp = self.layer_norm(inp, conditioning)
|
|
|
|
n_head, d_head = self.n_head, self.d_head
|
|
|
|
head_q, head_k, head_v = torch.chunk(self.qkv_net(inp), 3, dim=2)
|
|
|
|
s0 = inp.size(0)
|
|
s1 = inp.size(1)
|
|
s2 = s0 * n_head
|
|
|
|
head_q = head_q.view(s0, s1, n_head, d_head)
|
|
head_k = head_k.view(s0, s1, n_head, d_head)
|
|
head_v = head_v.view(s0, s1, n_head, d_head)
|
|
|
|
q = head_q.permute(2, 0, 1, 3).reshape(s2, s1, d_head)
|
|
k = head_k.permute(2, 0, 1, 3).reshape(s2, s1, d_head)
|
|
v = head_v.permute(2, 0, 1, 3).reshape(s2, s1, d_head)
|
|
|
|
attn_score = torch.bmm(q, k.transpose(1, 2))
|
|
attn_score.mul_(self.scale)
|
|
|
|
if attn_mask is not None:
|
|
attn_mask = attn_mask.unsqueeze(1).to(attn_score.dtype)
|
|
attn_mask = attn_mask.repeat(n_head, attn_mask.size(2), 1)
|
|
attn_score.masked_fill_(attn_mask.to(torch.bool), -float('inf'))
|
|
|
|
attn_prob = F.softmax(attn_score, dim=2)
|
|
attn_prob = self.dropatt(attn_prob)
|
|
attn_vec = torch.bmm(attn_prob, v)
|
|
|
|
attn_vec = attn_vec.view(n_head, s0, s1, d_head)
|
|
attn_vec = attn_vec.permute(1, 2, 0, 3).contiguous().view(s0, s1, n_head * d_head)
|
|
|
|
# linear projection
|
|
attn_out = self.o_net(attn_vec)
|
|
attn_out = self.drop(attn_out)
|
|
|
|
if self.pre_lnorm:
|
|
# residual connection
|
|
output = residual + attn_out
|
|
else:
|
|
# residual connection + layer normalization
|
|
output = self.layer_norm(residual + attn_out, conditioning)
|
|
|
|
return output
|
|
|
|
|
|
class TransformerLayer(nn.Module, adapter_mixins.AdapterModuleMixin):
|
|
def __init__(self, n_head, d_model, d_head, d_inner, kernel_size, dropout, condition_types=[], **kwargs):
|
|
super(TransformerLayer, self).__init__()
|
|
|
|
self.dec_attn = MultiHeadAttn(n_head, d_model, d_head, dropout, condition_types=condition_types, **kwargs)
|
|
self.pos_ff = PositionwiseConvFF(
|
|
d_model, d_inner, kernel_size, dropout, pre_lnorm=kwargs.get('pre_lnorm'), condition_types=condition_types
|
|
)
|
|
|
|
def forward(self, dec_inp, mask=None, conditioning=None):
|
|
output = self.dec_attn(dec_inp, attn_mask=~mask.squeeze(2), conditioning=conditioning)
|
|
output *= mask
|
|
output = self.pos_ff(output, conditioning)
|
|
output *= mask
|
|
|
|
if self.is_adapter_available():
|
|
output = self.forward_enabled_adapters(output)
|
|
output *= mask
|
|
|
|
return output
|
|
|
|
|
|
class FFTransformerDecoder(NeuralModule):
|
|
def __init__(
|
|
self,
|
|
n_layer,
|
|
n_head,
|
|
d_model,
|
|
d_head,
|
|
d_inner,
|
|
kernel_size,
|
|
dropout,
|
|
dropatt,
|
|
dropemb=0.0,
|
|
pre_lnorm=False,
|
|
condition_types=[],
|
|
):
|
|
super(FFTransformerDecoder, self).__init__()
|
|
self.d_model = d_model
|
|
self.n_head = n_head
|
|
self.d_head = d_head
|
|
|
|
self.pos_emb = PositionalEmbedding(self.d_model)
|
|
self.drop = nn.Dropout(dropemb)
|
|
self.layers = nn.ModuleList()
|
|
self.cond_input = ConditionalInput(d_model, d_model, condition_types)
|
|
|
|
for _ in range(n_layer):
|
|
self.layers.append(
|
|
TransformerLayer(
|
|
n_head,
|
|
d_model,
|
|
d_head,
|
|
d_inner,
|
|
kernel_size,
|
|
dropout,
|
|
dropatt=dropatt,
|
|
pre_lnorm=pre_lnorm,
|
|
condition_types=condition_types,
|
|
)
|
|
)
|
|
|
|
@property
|
|
def input_types(self):
|
|
return {
|
|
"input": NeuralType(('B', 'T', 'D'), EncodedRepresentation()),
|
|
"seq_lens": NeuralType(('B'), LengthsType()),
|
|
"conditioning": NeuralType(('B', 'T', 'D'), EncodedRepresentation(), optional=True),
|
|
}
|
|
|
|
@property
|
|
def output_types(self):
|
|
return {
|
|
"out": NeuralType(('B', 'T', 'D'), EncodedRepresentation()),
|
|
"mask": NeuralType(('B', 'T', 'D'), MaskType()),
|
|
}
|
|
|
|
@typecheck()
|
|
def forward(self, input, seq_lens, conditioning=None):
|
|
return self._forward(input, mask_from_lens(seq_lens).unsqueeze(2), conditioning)
|
|
|
|
def _forward(self, inp, mask, conditioning):
|
|
pos_seq = torch.arange(inp.size(1), device=inp.device).to(inp.dtype)
|
|
pos_emb = self.pos_emb(pos_seq) * mask
|
|
inp = inp + pos_emb
|
|
inp = self.cond_input(inp, conditioning)
|
|
out = self.drop(inp)
|
|
|
|
for layer in self.layers:
|
|
out = layer(out, mask=mask, conditioning=conditioning)
|
|
|
|
# out = self.drop(out)
|
|
return out, mask
|
|
|
|
|
|
class FFTransformerEncoder(FFTransformerDecoder):
|
|
def __init__(
|
|
self,
|
|
n_layer,
|
|
n_head,
|
|
d_model,
|
|
d_head,
|
|
d_inner,
|
|
kernel_size,
|
|
dropout,
|
|
dropatt,
|
|
dropemb=0.0,
|
|
pre_lnorm=False,
|
|
n_embed=None,
|
|
d_embed=None,
|
|
padding_idx=0,
|
|
condition_types=[],
|
|
):
|
|
super(FFTransformerEncoder, self).__init__(
|
|
n_layer,
|
|
n_head,
|
|
d_model,
|
|
d_head,
|
|
d_inner,
|
|
kernel_size,
|
|
dropout,
|
|
dropatt,
|
|
dropemb,
|
|
pre_lnorm,
|
|
condition_types,
|
|
)
|
|
|
|
self.padding_idx = padding_idx
|
|
self.word_emb = nn.Embedding(n_embed, d_embed or d_model, padding_idx=self.padding_idx)
|
|
|
|
@property
|
|
def input_types(self):
|
|
return {
|
|
"input": NeuralType(('B', 'T'), TokenIndex()),
|
|
"conditioning": NeuralType(('B', 'T', 'D'), EncodedRepresentation(), optional=True),
|
|
}
|
|
|
|
def forward(self, input, conditioning=0):
|
|
|
|
return self._forward(self.word_emb(input), (input != self.padding_idx).unsqueeze(2), conditioning) # (B, L, 1)
|
|
|
|
|
|
class FFTransformer(nn.Module):
|
|
def __init__(
|
|
self,
|
|
in_dim,
|
|
out_dim=1,
|
|
n_layers=6,
|
|
n_head=1,
|
|
d_head=64,
|
|
d_inner=1024,
|
|
kernel_size=3,
|
|
dropout=0.1,
|
|
dropatt=0.1,
|
|
dropemb=0.0,
|
|
):
|
|
super(FFTransformer, self).__init__()
|
|
self.in_dim = in_dim
|
|
self.out_dim = out_dim
|
|
self.n_head = n_head
|
|
self.d_head = d_head
|
|
|
|
self.pos_emb = PositionalEmbedding(self.in_dim)
|
|
self.drop = nn.Dropout(dropemb)
|
|
self.layers = nn.ModuleList()
|
|
|
|
for _ in range(n_layers):
|
|
self.layers.append(
|
|
TransformerLayer(n_head, in_dim, d_head, d_inner, kernel_size, dropout, dropatt=dropatt)
|
|
)
|
|
|
|
self.dense = LinearNorm(in_dim, out_dim)
|
|
|
|
def forward(self, dec_inp, in_lens):
|
|
# B, C, T --> B, T, C
|
|
inp = dec_inp.transpose(1, 2)
|
|
mask = get_mask_from_lengths(in_lens)[..., None]
|
|
|
|
pos_seq = torch.arange(inp.size(1), device=inp.device).to(inp.dtype)
|
|
pos_emb = self.pos_emb(pos_seq) * mask
|
|
|
|
out = self.drop(inp + pos_emb)
|
|
|
|
for layer in self.layers:
|
|
out = layer(out, mask=mask)
|
|
|
|
out = self.dense(out).transpose(1, 2)
|
|
return out
|