| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| """ |
| Feed-forward network modules used by the MagpieTTS transformer stack. |
| |
| This file exists to break a circular import between ``transformer_2501`` |
| (which needs ``PositionwiseConvFFMoE``) and ``moe_modules`` (which needs |
| ``ConvolutionLayer``). Both can safely import from this leaf module. |
| """ |
| from typing import Callable, Optional |
|
|
| import torch |
| import torch.nn.functional as F |
|
|
| from nemo.utils import logging |
|
|
|
|
| class ConvolutionLayer(torch.nn.Module): |
| def __init__( |
| self, |
| in_channels: int, |
| out_channels: int, |
| kernel_size: int = 1, |
| stride: int = 1, |
| padding: Optional[int] = None, |
| dilation: int = 1, |
| bias: bool = True, |
| is_causal: bool = False, |
| ): |
| """ |
| A convolutional layer that supports causal convolutions with padding. Replaces the standard MLP layer used in |
| the original transformer. |
| |
| Args: |
| in_channels (int): Number of input channels. |
| out_channels (int): Number of output channels. |
| kernel_size (int): Size of the convolving kernel. |
| stride (int): Stride of the convolution. |
| padding (Optional[int]): Padding added to both sides of the input. If None, it's calculated automatically. |
| dilation (int): Spacing between kernel elements. |
| bias (bool): If True, adds a learnable bias to the output. |
| is_causal (bool): If True, uses causal convolution. |
| """ |
| super().__init__() |
|
|
| |
| |
| self.causal_padding = None |
| if is_causal: |
| self.causal_padding = ((kernel_size - 1) * dilation, 0) |
| if padding is not None: |
| logging.warning( |
| f'{self} was initialized with is_causal set to True, and padding set to {padding}. ' |
| f'The provided padding value will be ignored and set to {self.causal_padding}.' |
| ) |
| padding = 0 |
| elif padding is None: |
| if kernel_size % 2 == 0: |
| raise ValueError("`kernel_size` must be odd when `padding` is None.") |
| else: |
| padding = int(dilation * (kernel_size - 1) / 2) |
|
|
| self.is_causal = is_causal |
| self.kernel_size = kernel_size |
| self.dilation = dilation |
|
|
| self.conv = torch.nn.Conv1d( |
| in_channels, |
| out_channels, |
| kernel_size=kernel_size, |
| stride=stride, |
| padding=padding, |
| dilation=dilation, |
| bias=bias, |
| ) |
|
|
| def forward(self, signal, signal_mask=None): |
| |
| |
| if signal_mask is not None: |
| signal = signal * signal_mask.unsqueeze(1) |
| if self.is_causal: |
| signal = F.pad(signal, self.causal_padding) |
|
|
| conv_signal = self.conv(signal) |
| if signal_mask is not None: |
| conv_signal = conv_signal * signal_mask.unsqueeze(1) |
|
|
| return conv_signal |
|
|
|
|
| class PositionwiseConvFF(torch.nn.Module): |
| def __init__( |
| self, |
| d_model: int, |
| d_ffn: int, |
| p_dropout: float, |
| kernel_size: int = 1, |
| bias: bool = False, |
| is_causal: bool = True, |
| non_linearity: Callable = torch.nn.GELU(approximate="tanh"), |
| ): |
| """ |
| Positionwise Convolutional Feed-Forward layer to replace the MLP layer in transformers. |
| |
| Module will take the input with d_model hidden state, project it to d_ffn hidden dimension, perform nonlinear |
| transformation, and project the state back into d_model hidden dimension. Finally, it applied dropout. |
| |
| Args: |
| d_model (int): Input and output dimension of the model. |
| d_ffn (int): Hidden dimension of the feed-forward network (usually 4 * d_model). |
| p_dropout (float): Dropout probability. |
| kernel_size (int): Size of the convolving kernel. |
| bias (bool): If True, adds a learnable bias to the convolution layers. |
| is_causal (bool): If True, uses causal convolution. |
| non_linearity (Callable): Activation function to use (default: GELU). |
| """ |
| super().__init__() |
| |
| self.d_model = d_model |
| self.non_linearity = non_linearity |
|
|
| self.proj = ConvolutionLayer(d_model, d_ffn, bias=bias, kernel_size=kernel_size, is_causal=is_causal) |
| self.o_net = ConvolutionLayer(d_ffn, d_model, bias=bias, kernel_size=kernel_size, is_causal=is_causal) |
| self.dropout = torch.nn.Dropout(p_dropout) |
|
|
| def forward(self, x, x_mask): |
| """ |
| x (B, T, C) |
| x_mask (B, T) |
| """ |
| x = self.non_linearity(self.proj(x.transpose(1, 2), x_mask)) |
| x = self.dropout(self.o_net(x, x_mask).transpose(1, 2)) |
| return x |
|
|