488 lines
15 KiB
Python
488 lines
15 KiB
Python
import math
|
|
from typing import List, Optional
|
|
|
|
import numpy as np
|
|
import torch
|
|
from torch import nn
|
|
import torch.nn.functional as F
|
|
from torch.nn.utils import weight_norm
|
|
from pydantic import BaseModel
|
|
|
|
|
|
def WNConv1d(*args, **kwargs):
|
|
return weight_norm(nn.Conv1d(*args, **kwargs))
|
|
|
|
|
|
def WNConvTranspose1d(*args, **kwargs):
|
|
return weight_norm(nn.ConvTranspose1d(*args, **kwargs))
|
|
|
|
|
|
class CausalConv1d(nn.Conv1d):
|
|
def __init__(self, *args, padding: int = 0, output_padding: int = 0, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.__padding = padding
|
|
self.__output_padding = output_padding
|
|
|
|
def forward(self, x):
|
|
x_pad = F.pad(x, (self.__padding * 2 - self.__output_padding, 0))
|
|
return super().forward(x_pad)
|
|
|
|
|
|
class CausalTransposeConv1d(nn.ConvTranspose1d):
|
|
def __init__(self, *args, padding: int = 0, output_padding: int = 0, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
self.__padding = padding
|
|
self.__output_padding = output_padding
|
|
|
|
def forward(self, x):
|
|
return super().forward(x)[..., : -(self.__padding * 2 - self.__output_padding)]
|
|
|
|
|
|
def WNCausalConv1d(*args, **kwargs):
|
|
return weight_norm(CausalConv1d(*args, **kwargs))
|
|
|
|
|
|
def WNCausalTransposeConv1d(*args, **kwargs):
|
|
return weight_norm(CausalTransposeConv1d(*args, **kwargs))
|
|
|
|
|
|
# Scripting this brings model speed up 1.4x
|
|
@torch.jit.script
|
|
def snake(x, alpha):
|
|
shape = x.shape
|
|
x = x.reshape(shape[0], shape[1], -1)
|
|
x = x + (alpha + 1e-9).reciprocal() * torch.sin(alpha * x).pow(2)
|
|
x = x.reshape(shape)
|
|
return x
|
|
|
|
|
|
class Snake1d(nn.Module):
|
|
def __init__(self, channels):
|
|
super().__init__()
|
|
self.alpha = nn.Parameter(torch.ones(1, channels, 1))
|
|
|
|
def forward(self, x):
|
|
return snake(x, self.alpha)
|
|
|
|
|
|
def init_weights(m):
|
|
if isinstance(m, nn.Conv1d):
|
|
nn.init.trunc_normal_(m.weight, std=0.02)
|
|
if m.bias is not None:
|
|
nn.init.constant_(m.bias, 0)
|
|
|
|
|
|
class CausalResidualUnit(nn.Module):
|
|
def __init__(self, dim: int = 16, dilation: int = 1, kernel: int = 7, groups: int = 1):
|
|
super().__init__()
|
|
pad = ((7 - 1) * dilation) // 2
|
|
self.block = nn.Sequential(
|
|
Snake1d(dim),
|
|
WNCausalConv1d(
|
|
dim,
|
|
dim,
|
|
kernel_size=kernel,
|
|
dilation=dilation,
|
|
padding=pad,
|
|
groups=groups,
|
|
),
|
|
Snake1d(dim),
|
|
WNCausalConv1d(dim, dim, kernel_size=1),
|
|
)
|
|
|
|
def forward(self, x):
|
|
y = self.block(x)
|
|
pad = (x.shape[-1] - y.shape[-1]) // 2
|
|
assert pad == 0
|
|
if pad > 0:
|
|
x = x[..., pad:-pad]
|
|
return x + y
|
|
|
|
|
|
class CausalEncoderBlock(nn.Module):
|
|
def __init__(self, output_dim: int = 16, input_dim=None, stride: int = 1, groups=1):
|
|
super().__init__()
|
|
input_dim = input_dim or output_dim // 2
|
|
self.block = nn.Sequential(
|
|
CausalResidualUnit(input_dim, dilation=1, groups=groups),
|
|
CausalResidualUnit(input_dim, dilation=3, groups=groups),
|
|
CausalResidualUnit(input_dim, dilation=9, groups=groups),
|
|
Snake1d(input_dim),
|
|
WNCausalConv1d(
|
|
input_dim,
|
|
output_dim,
|
|
kernel_size=2 * stride,
|
|
stride=stride,
|
|
padding=math.ceil(stride / 2),
|
|
output_padding=stride % 2,
|
|
),
|
|
)
|
|
|
|
def forward(self, x):
|
|
return self.block(x)
|
|
|
|
|
|
class CausalEncoder(nn.Module):
|
|
def __init__(
|
|
self,
|
|
d_model: int = 64,
|
|
latent_dim: int = 32,
|
|
strides: list = [2, 4, 8, 8],
|
|
depthwise: bool = False,
|
|
):
|
|
super().__init__()
|
|
# Create first convolution
|
|
self.block = [WNCausalConv1d(1, d_model, kernel_size=7, padding=3)]
|
|
|
|
# Create EncoderBlocks that double channels as they downsample by `stride`
|
|
for stride in strides:
|
|
d_model *= 2
|
|
groups = d_model // 2 if depthwise else 1
|
|
self.block += [CausalEncoderBlock(output_dim=d_model, stride=stride, groups=groups)]
|
|
|
|
groups = d_model if depthwise else 1
|
|
|
|
# Create two convolution, for mu and logvar
|
|
self.fc_mu = WNCausalConv1d(d_model, latent_dim, kernel_size=3, padding=1)
|
|
self.fc_logvar = WNCausalConv1d(d_model, latent_dim, kernel_size=3, padding=1)
|
|
|
|
# Wrap black into nn.Sequential
|
|
self.block = nn.Sequential(*self.block)
|
|
self.enc_dim = d_model
|
|
|
|
def forward(self, x):
|
|
hidden_state = self.block(x)
|
|
return {
|
|
"hidden_state": hidden_state,
|
|
"mu": self.fc_mu(hidden_state),
|
|
"logvar": self.fc_logvar(hidden_state),
|
|
}
|
|
|
|
|
|
class NoiseBlock(nn.Module):
|
|
def __init__(self, dim):
|
|
super().__init__()
|
|
self.linear = WNCausalConv1d(dim, dim, kernel_size=1, bias=False)
|
|
|
|
def forward(self, x):
|
|
B, C, T = x.shape
|
|
noise = torch.randn((B, 1, T), device=x.device, dtype=x.dtype)
|
|
h = self.linear(x)
|
|
n = noise * h
|
|
x = x + n
|
|
return x
|
|
|
|
|
|
class CausalDecoderBlock(nn.Module):
|
|
def __init__(
|
|
self,
|
|
input_dim: int = 16,
|
|
output_dim: int = 8,
|
|
stride: int = 1,
|
|
groups=1,
|
|
use_noise_block: bool = False,
|
|
):
|
|
super().__init__()
|
|
layers = [
|
|
Snake1d(input_dim),
|
|
WNCausalTransposeConv1d(
|
|
input_dim,
|
|
output_dim,
|
|
kernel_size=2 * stride,
|
|
stride=stride,
|
|
padding=math.ceil(stride / 2),
|
|
output_padding=stride % 2,
|
|
),
|
|
]
|
|
if use_noise_block:
|
|
layers.append(NoiseBlock(output_dim))
|
|
layers.extend(
|
|
[
|
|
CausalResidualUnit(output_dim, dilation=1, groups=groups),
|
|
CausalResidualUnit(output_dim, dilation=3, groups=groups),
|
|
CausalResidualUnit(output_dim, dilation=9, groups=groups),
|
|
]
|
|
)
|
|
self.block = nn.Sequential(*layers)
|
|
self.input_channels = input_dim
|
|
|
|
def forward(self, x):
|
|
return self.block(x)
|
|
|
|
|
|
class TransposeLastTwoDim(torch.nn.Module):
|
|
def forward(self, x):
|
|
return torch.transpose(x, -1, -2)
|
|
|
|
|
|
class SampleRateConditionLayer(nn.Module):
|
|
def __init__(
|
|
self,
|
|
input_dim: int,
|
|
sr_bin_buckets: int = None,
|
|
cond_type: str = "scale_bias",
|
|
cond_dim: int = 128,
|
|
out_layer: bool = False,
|
|
):
|
|
super().__init__()
|
|
|
|
self.cond_type, out_layer_in_dim = cond_type, input_dim
|
|
|
|
if cond_type == "scale_bias":
|
|
self.scale_embed = nn.Embedding(sr_bin_buckets, input_dim)
|
|
self.bias_embed = nn.Embedding(sr_bin_buckets, input_dim)
|
|
nn.init.ones_(self.scale_embed.weight)
|
|
nn.init.zeros_(self.bias_embed.weight)
|
|
elif cond_type == "scale_bias_init":
|
|
self.scale_embed = nn.Embedding(sr_bin_buckets, input_dim)
|
|
self.bias_embed = nn.Embedding(sr_bin_buckets, input_dim)
|
|
nn.init.normal_(self.scale_embed.weight, mean=1)
|
|
nn.init.normal_(self.bias_embed.weight)
|
|
elif cond_type == "add":
|
|
self.cond_embed = nn.Embedding(sr_bin_buckets, input_dim)
|
|
nn.init.normal_(self.cond_embed.weight)
|
|
elif cond_type == "concat":
|
|
self.cond_embed = nn.Embedding(sr_bin_buckets, cond_dim)
|
|
assert out_layer, "out_layer must be True for concat cond_type"
|
|
out_layer_in_dim = input_dim + cond_dim
|
|
else:
|
|
raise ValueError(f"Invalid cond_type: {cond_type}")
|
|
|
|
if out_layer:
|
|
self.out_layer = nn.Sequential(
|
|
Snake1d(out_layer_in_dim),
|
|
WNCausalConv1d(out_layer_in_dim, input_dim, kernel_size=1),
|
|
)
|
|
else:
|
|
self.out_layer = nn.Identity()
|
|
|
|
def forward(self, x, sr_cond):
|
|
if self.cond_type == "scale_bias" or self.cond_type == "scale_bias_init":
|
|
x = x * self.scale_embed(sr_cond).unsqueeze(-1) + self.bias_embed(sr_cond).unsqueeze(-1)
|
|
elif self.cond_type == "add":
|
|
x = x + self.cond_embed(sr_cond).unsqueeze(-1)
|
|
elif self.cond_type == "concat":
|
|
x = torch.cat([x, self.cond_embed(sr_cond).unsqueeze(-1).repeat(1, 1, x.shape[-1])], dim=1)
|
|
|
|
return self.out_layer(x)
|
|
|
|
|
|
class CausalDecoder(nn.Module):
|
|
def __init__(
|
|
self,
|
|
input_channel,
|
|
channels,
|
|
rates,
|
|
depthwise: bool = False,
|
|
d_out: int = 1,
|
|
use_noise_block: bool = False,
|
|
sr_bin_boundaries: List[int] = None,
|
|
cond_type: str = "scale_bias",
|
|
cond_dim: int = 128,
|
|
cond_out_layer: bool = False,
|
|
):
|
|
super().__init__()
|
|
|
|
# Add first conv layer
|
|
if depthwise:
|
|
layers = [
|
|
WNCausalConv1d(input_channel, input_channel, kernel_size=7, padding=3, groups=input_channel),
|
|
WNCausalConv1d(input_channel, channels, kernel_size=1),
|
|
]
|
|
else:
|
|
layers = [WNCausalConv1d(input_channel, channels, kernel_size=7, padding=3)]
|
|
|
|
# Add upsampling + MRF blocks
|
|
for i, stride in enumerate(rates):
|
|
input_dim = channels // 2**i
|
|
output_dim = channels // 2 ** (i + 1)
|
|
groups = output_dim if depthwise else 1
|
|
layers += [
|
|
CausalDecoderBlock(
|
|
input_dim,
|
|
output_dim,
|
|
stride,
|
|
groups=groups,
|
|
use_noise_block=use_noise_block,
|
|
)
|
|
]
|
|
|
|
# Add final conv layer
|
|
layers += [
|
|
Snake1d(output_dim),
|
|
WNCausalConv1d(output_dim, d_out, kernel_size=7, padding=3),
|
|
nn.Tanh(),
|
|
]
|
|
|
|
if sr_bin_boundaries is None:
|
|
self.model = nn.Sequential(*layers)
|
|
self.sr_bin_boundaries = None
|
|
else:
|
|
self.model = nn.ModuleList(layers)
|
|
|
|
self.register_buffer("sr_bin_boundaries", torch.tensor(sr_bin_boundaries, dtype=torch.int32))
|
|
self.sr_bin_buckets = len(sr_bin_boundaries) + 1
|
|
|
|
cond_layers = []
|
|
for layer in self.model:
|
|
if layer.__class__.__name__ == "CausalDecoderBlock":
|
|
cond_layers.append(
|
|
SampleRateConditionLayer(
|
|
input_dim=layer.input_channels,
|
|
sr_bin_buckets=self.sr_bin_buckets,
|
|
cond_type=cond_type,
|
|
cond_dim=cond_dim,
|
|
out_layer=cond_out_layer,
|
|
)
|
|
)
|
|
else:
|
|
cond_layers.append(None)
|
|
self.sr_cond_model = nn.ModuleList(cond_layers)
|
|
|
|
def get_sr_idx(self, sr):
|
|
return torch.bucketize(sr, self.sr_bin_boundaries)
|
|
|
|
def forward(self, x, sr_cond=None):
|
|
if self.sr_bin_boundaries is not None:
|
|
# assert sr_cond is not None
|
|
sr_cond = self.get_sr_idx(sr_cond)
|
|
|
|
for layer, sr_cond_layer in zip(self.model, self.sr_cond_model):
|
|
if sr_cond_layer is not None:
|
|
x = sr_cond_layer(x, sr_cond)
|
|
x = layer(x)
|
|
return x
|
|
else:
|
|
return self.model(x)
|
|
|
|
|
|
class AudioVAEConfig(BaseModel):
|
|
encoder_dim: int = 128
|
|
encoder_rates: List[int] = [2, 5, 8, 8]
|
|
latent_dim: int = 64
|
|
decoder_dim: int = 2048
|
|
decoder_rates: List[int] = [8, 6, 5, 2, 2, 2]
|
|
depthwise: bool = True
|
|
sample_rate: int = 16000
|
|
out_sample_rate: int = 48000
|
|
use_noise_block: bool = False
|
|
sr_bin_boundaries: Optional[List[int]] = [20000, 30000, 40000]
|
|
cond_type: str = "scale_bias"
|
|
cond_dim: int = 128
|
|
cond_out_layer: bool = False
|
|
|
|
|
|
class AudioVAE(nn.Module):
|
|
"""
|
|
Args:
|
|
"""
|
|
|
|
def __init__(
|
|
self,
|
|
config: AudioVAEConfig = None,
|
|
):
|
|
# 如果没有传入config,使用默认配置
|
|
if config is None:
|
|
config = AudioVAEConfig()
|
|
|
|
super().__init__()
|
|
|
|
encoder_dim = config.encoder_dim
|
|
encoder_rates = config.encoder_rates
|
|
latent_dim = config.latent_dim
|
|
decoder_dim = config.decoder_dim
|
|
decoder_rates = config.decoder_rates
|
|
depthwise = config.depthwise
|
|
sample_rate = config.sample_rate
|
|
out_sample_rate = config.out_sample_rate
|
|
use_noise_block = config.use_noise_block
|
|
sr_bin_boundaries = config.sr_bin_boundaries
|
|
cond_type = config.cond_type
|
|
cond_dim = config.cond_dim
|
|
cond_out_layer = config.cond_out_layer
|
|
|
|
self.encoder_dim = encoder_dim
|
|
self.encoder_rates = encoder_rates
|
|
self.decoder_dim = decoder_dim
|
|
self.decoder_rates = decoder_rates
|
|
self.depthwise = depthwise
|
|
|
|
self.use_noise_block = use_noise_block
|
|
|
|
if latent_dim is None:
|
|
latent_dim = encoder_dim * (2 ** len(encoder_rates))
|
|
|
|
self.latent_dim = latent_dim
|
|
self.hop_length = np.prod(encoder_rates)
|
|
self.encoder = CausalEncoder(
|
|
encoder_dim,
|
|
latent_dim,
|
|
encoder_rates,
|
|
depthwise=depthwise,
|
|
)
|
|
|
|
self.decoder = CausalDecoder(
|
|
latent_dim,
|
|
decoder_dim,
|
|
decoder_rates,
|
|
depthwise=depthwise,
|
|
use_noise_block=use_noise_block,
|
|
sr_bin_boundaries=sr_bin_boundaries,
|
|
cond_type=cond_type,
|
|
cond_dim=cond_dim,
|
|
cond_out_layer=cond_out_layer,
|
|
)
|
|
self.sample_rate = sample_rate
|
|
self.out_sample_rate = out_sample_rate
|
|
self.sr_bin_boundaries = sr_bin_boundaries
|
|
self.chunk_size = math.prod(encoder_rates)
|
|
self.decode_chunk_size = math.prod(decoder_rates)
|
|
|
|
def preprocess(self, audio_data, sample_rate):
|
|
if sample_rate is None:
|
|
sample_rate = self.sample_rate
|
|
assert sample_rate == self.sample_rate
|
|
pad_to = self.hop_length
|
|
length = audio_data.shape[-1]
|
|
right_pad = math.ceil(length / pad_to) * pad_to - length
|
|
audio_data = nn.functional.pad(audio_data, (0, right_pad))
|
|
|
|
return audio_data
|
|
|
|
def decode(self, z: torch.Tensor, sr_cond: torch.Tensor = None):
|
|
"""Decode given latent codes and return audio data
|
|
|
|
Parameters
|
|
----------
|
|
z : Tensor[B x D x T]
|
|
Quantized continuous representation of input
|
|
length : int, optional
|
|
Number of samples in output audio, by default None
|
|
|
|
Returns
|
|
-------
|
|
dict
|
|
A dictionary with the following keys:
|
|
"audio" : Tensor[B x 1 x length]
|
|
Decoded audio data.
|
|
"""
|
|
if self.sr_bin_boundaries is not None:
|
|
# use default output sample rate
|
|
if sr_cond is None:
|
|
sr_cond = torch.tensor([self.out_sample_rate], device=z.device, dtype=torch.int32)
|
|
return self.decoder(z, sr_cond)
|
|
|
|
def encode(self, audio_data: torch.Tensor, sample_rate: int):
|
|
"""
|
|
Args:
|
|
audio_data: Tensor[B x 1 x T]
|
|
sample_rate: int
|
|
Returns:
|
|
z: Tensor[B x D x T]
|
|
"""
|
|
if audio_data.ndim == 2:
|
|
audio_data = audio_data.unsqueeze(1)
|
|
|
|
audio_data = self.preprocess(audio_data, sample_rate)
|
|
return self.encoder(audio_data)["mu"]
|