File size: 32,004 Bytes
7375975 |
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 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 |
import math
import torch
from torch import nn
from functools import partial
from torch.nn import functional as F
from torch import nn, einsum, Tensor
from einops.layers.torch import Rearrange, Reduce
from einops import rearrange, reduce, repeat
import sys
sys.path.append('')
from fish_speech.models.flow_decoder.transformer.layers import Embedding
from fish_speech.models.flow_decoder.transformer.attend import Attend
def slice_segments(x, ids_str, segment_size,mask):
ret = torch.zeros_like(x[:, :, :segment_size])
new_mask = mask.clone().to(mask.device)
for i in range(x.size(0)):
idx_str = ids_str[i]
idx_end = idx_str + segment_size
ret[i] = x[i, :, idx_str:idx_end]
new_mask[i,idx_str:idx_end]=0
return ret,new_mask
def rand_slice_segments(x, x_lengths=None,mask=None, min_ratio=0.1, max_ratio=0.9):
b, d, t = x.size()
if x_lengths is None:
x_lengths = t
x_lengths = x_lengths.min()
# Ensure min_ratio and max_ratio are between 0 and 1
min_ratio = max(0, min(min_ratio, 1))
max_ratio = max(0, min(max_ratio, 1))
# Calculate min and max segment sizes
min_segment_size = int(min_ratio * x_lengths)
max_segment_size = int(max_ratio * x_lengths)
# Randomly choose a segment size within the range
segment_size = torch.randint(min_segment_size, max_segment_size + 1, (1,)).item()
ids_str_max = x_lengths - segment_size + 1
ids_str = (torch.rand([b]).to(device=x.device) * ids_str_max).to(dtype=torch.long)
ids_str = torch.max(torch.zeros(ids_str.size()).to(ids_str.device), ids_str).to(
dtype=torch.long
)
ret,new_mask = slice_segments(x, ids_str, segment_size,mask)
return ret, ids_str, segment_size, new_mask
def rand_prefix_segments(x, x_lengths=None,mask=None, min_ratio=0.3, max_ratio=0.5):
b, d, t = x.size()
if x_lengths is None:
x_lengths = t
x_lengths = x_lengths.min()
# Ensure min_ratio and max_ratio are between 0 and 1
min_ratio = max(0, min(min_ratio, 1))
max_ratio = max(0, min(max_ratio, 1))
# Calculate min and max segment sizes
min_segment_size = int(min_ratio * x_lengths)
max_segment_size = int(max_ratio * x_lengths)
# Randomly choose a segment size within the range
segment_size = torch.randint(min_segment_size, max_segment_size + 1, (1,)).item()
ids_str_max = x_lengths - segment_size + 1
ids_str = (torch.zeros([b]).to(device=x.device)).to(dtype=torch.long)
ret,new_mask = slice_segments(x, ids_str, segment_size,mask)
return ret, ids_str, segment_size, new_mask
class LayerNorm(nn.Module):
def __init__(self, channels, eps=1e-4):
super().__init__()
self.channels = channels
self.eps = eps
self.gamma = nn.Parameter(torch.ones(channels))
self.beta = nn.Parameter(torch.zeros(channels))
def forward(self, x):
n_dims = len(x.shape)
mean = torch.mean(x, 1, keepdim=True)
variance = torch.mean((x - mean) ** 2, 1, keepdim=True)
x = (x - mean) * torch.rsqrt(variance + self.eps)
shape = [1, -1] + [1] * (n_dims - 2)
x = x * self.gamma.view(*shape) + self.beta.view(*shape)
return x
def sequence_mask(length, max_length=None):
if max_length is None:
max_length = length.max()
x = torch.arange(max_length, dtype=length.dtype, device=length.device)
return x.unsqueeze(0) < length.unsqueeze(1)
# constants
mlist = nn.ModuleList
def Sequential(*mods):
return nn.Sequential(*filter(exists, mods))
# helpers functions
def exists(x):
return x is not None
def default(val, d):
if exists(val):
return val
return d() if callable(d) else d
def divisible_by(num, den):
return (num % den) == 0
def identity(t, *args, **kwargs):
return t
def has_int_squareroot(num):
return (math.sqrt(num) ** 2) == num
# tensor helpers
def pad_or_curtail_to_length(t, length):
if t.shape[-1] == length:
return t
if t.shape[-1] > length:
return t[..., :length]
return F.pad(t, (0, length - t.shape[-1]))
def prob_mask_like(shape, prob, device):
if prob == 1:
return torch.ones(shape, device = device, dtype = torch.bool)
elif prob == 0:
return torch.zeros(shape, device = device, dtype = torch.bool)
else:
return torch.zeros(shape, device = device).float().uniform_(0, 1) < prob
def generate_mask_from_repeats(repeats):
repeats = repeats.int()
device = repeats.device
lengths = repeats.sum(dim = -1)
max_length = lengths.amax().item()
cumsum = repeats.cumsum(dim = -1)
cumsum_exclusive = F.pad(cumsum, (1, -1), value = 0.)
seq = torch.arange(max_length, device = device)
seq = repeat(seq, '... j -> ... i j', i = repeats.shape[-1])
cumsum = rearrange(cumsum, '... i -> ... i 1')
cumsum_exclusive = rearrange(cumsum_exclusive, '... i -> ... i 1')
lengths = rearrange(lengths, 'b -> b 1 1')
mask = (seq < cumsum) & (seq >= cumsum_exclusive) & (seq < lengths)
return mask
# sinusoidal positional embeds
class LearnedSinusoidalPosEmb(nn.Module):
def __init__(self, dim):
super().__init__()
assert divisible_by(dim, 2)
half_dim = dim // 2
self.weights = nn.Parameter(torch.randn(half_dim))
def forward(self, x):
x = rearrange(x, 'b -> b 1')
freqs = x * rearrange(self.weights, 'd -> 1 d') * 2 * math.pi
fouriered = torch.cat((freqs.sin(), freqs.cos()), dim = -1)
fouriered = torch.cat((x, fouriered), dim = -1)
return fouriered
class ConvReluNorm(nn.Module):
def __init__(self, in_channels, hidden_channels, out_channels, kernel_size, n_layers, p_dropout):
super().__init__()
self.in_channels = in_channels
self.hidden_channels = hidden_channels
self.out_channels = out_channels
self.kernel_size = kernel_size
self.n_layers = n_layers
self.p_dropout = p_dropout
assert n_layers > 1, "Number of layers should be larger than 0."
self.conv_layers = nn.ModuleList()
self.norm_layers = nn.ModuleList()
self.conv_layers.append(nn.Conv1d(in_channels, hidden_channels, kernel_size, padding=kernel_size // 2))
self.norm_layers.append(LayerNorm(hidden_channels))
self.relu_drop = nn.Sequential(
nn.ReLU(),
nn.Dropout(p_dropout))
for _ in range(n_layers - 1):
self.conv_layers.append(nn.Conv1d(hidden_channels, hidden_channels, kernel_size, padding=kernel_size // 2))
self.norm_layers.append(LayerNorm(hidden_channels))
self.proj = nn.Conv1d(hidden_channels, out_channels, 1)
self.proj.weight.data.zero_()
self.proj.bias.data.zero_()
def forward(self, x, x_mask):
x_org = x
for i in range(self.n_layers):
x = self.conv_layers[i](x * x_mask)
x = self.norm_layers[i](x)
x = self.relu_drop(x)
x = x_org + self.proj(x)
return x * x_mask
class CausalConv1d(nn.Conv1d):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
kernel_size, = self.kernel_size
dilation, = self.dilation
stride, = self.stride
assert stride == 1
self.causal_padding = dilation * (kernel_size - 1)
def forward(self, x):
causal_padded_x = F.pad(x, (self.causal_padding, 0), value = 0.)
return super().forward(causal_padded_x)
class GEGLU(nn.Module):
def forward(self, x):
x, gate = x.chunk(2, dim = -1)
return F.gelu(gate) * x
class Block(nn.Module):
def __init__(
self,
dim,
dim_out,
kernel = 3,
groups = 8,
dropout = 0.
):
super().__init__()
self.proj = nn.Conv1d(dim, dim_out, kernel, padding = kernel // 2)
self.norm = nn.GroupNorm(groups, dim_out)
self.act = nn.SiLU()
self.dropout = nn.Dropout(dropout)
def forward(self, x):
x = self.proj(x)
x = self.norm(x)
x = self.act(x)
x = self.dropout(x)
return x
class CausalConv1d(nn.Conv1d):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
kernel_size, = self.kernel_size
dilation, = self.dilation
stride, = self.stride
assert stride == 1
self.causal_padding = dilation * (kernel_size - 1)
def forward(self, x):
causal_padded_x = F.pad(x, (self.causal_padding, 0), value = 0.)
return super().forward(causal_padded_x)
class WavenetResBlock(nn.Module):
def __init__(
self,
dim,
*,
dilation,
kernel_size = 3,
skip_conv = False,
dim_cond_mult = None
):
super().__init__()
self.cond = exists(dim_cond_mult)
self.to_time_cond = None
if self.cond:
self.to_time_cond = nn.Linear(dim * dim_cond_mult, dim * 2)
self.conv = CausalConv1d(dim, dim, kernel_size, dilation = dilation)
self.res_conv = CausalConv1d(dim, dim, 1)
self.skip_conv = CausalConv1d(dim, dim, 1) if skip_conv else None
def forward(self, x, t = None):
if self.cond:
assert exists(t)
t = self.to_time_cond(t)
t = rearrange(t, 'b c -> b c 1')
t_gamma, t_beta = t.chunk(2, dim = -2)
res = self.res_conv(x)
x = self.conv(x)
if self.cond:
x = x * t_gamma + t_beta
x = x.tanh() * x.sigmoid()
x = x + res
skip = None
if exists(self.skip_conv):
skip = self.skip_conv(x)
return x, skip
class WavenetStack(nn.Module):
def __init__(
self,
dim,
*,
layers,
kernel_size = 3,
has_skip = False,
dim_cond_mult = None
):
super().__init__()
dilations = 2 ** torch.arange(layers)
self.has_skip = has_skip
self.blocks = mlist([])
for dilation in dilations.tolist():
block = WavenetResBlock(
dim = dim,
kernel_size = kernel_size,
dilation = dilation,
skip_conv = has_skip,
dim_cond_mult = dim_cond_mult
)
self.blocks.append(block)
def forward(self, x, t):
residuals = []
skips = []
if isinstance(x, Tensor):
x = (x,) * len(self.blocks)
for block_input, block in zip(x, self.blocks):
residual, skip = block(block_input, t)
residuals.append(residual)
skips.append(skip)
if self.has_skip:
return torch.stack(skips)
return residuals
class Wavenet(nn.Module):
def __init__(
self,
dim,
*,
stacks,
layers,
init_conv_kernel = 3,
dim_cond_mult = None
):
super().__init__()
self.init_conv = CausalConv1d(dim, dim, init_conv_kernel)
self.stacks = mlist([])
for ind in range(stacks):
is_last = ind == (stacks - 1)
stack = WavenetStack(
dim,
layers = layers,
dim_cond_mult = dim_cond_mult,
has_skip = is_last
)
self.stacks.append(stack)
self.final_conv = CausalConv1d(dim, dim, 1)
def forward(self, x, t = None):
x = self.init_conv(x)
for stack in self.stacks:
x = stack(x, t)
return self.final_conv(x.sum(dim = 0))
class ResnetBlock(nn.Module):
def __init__(
self,
dim,
dim_out,
kernel,
*,
dropout = 0.,
groups = 8,
num_convs = 2
):
super().__init__()
blocks = []
for ind in range(num_convs):
is_first = ind == 0
dim_in = dim if is_first else dim_out
block = Block(
dim_in,
dim_out,
kernel,
groups = groups,
dropout = dropout
)
blocks.append(block)
self.blocks = nn.Sequential(*blocks)
self.res_conv = nn.Conv1d(dim, dim_out, 1) if dim != dim_out else nn.Identity()
def forward(self, x):
x = rearrange(x, 'b n c -> b c n')
h = self.blocks(x)
out = h + self.res_conv(x)
return rearrange(out, 'b c n -> b n c')
def FeedForward(dim, mult = 4, causal_conv = False):
dim_inner = int(dim * mult * 2 / 3)
conv = None
if causal_conv:
conv = nn.Sequential(
Rearrange('b n d -> b d n'),
CausalConv1d(dim_inner, dim_inner, 3),
Rearrange('b d n -> b n d'),
)
return Sequential(
nn.Linear(dim, dim_inner * 2),
GEGLU(),
conv,
nn.Linear(dim_inner, dim)
)
class Attention(nn.Module):
def __init__(
self,
dim,
*,
dim_context = None,
causal = False,
dim_head = 64,
heads = 8,
dropout = 0.,
use_flash = False,
cross_attn_include_queries = False
):
super().__init__()
self.scale = dim_head ** -0.5
self.heads = heads
self.cross_attn_include_queries = cross_attn_include_queries
dim_inner = dim_head * heads
dim_context = default(dim_context, dim)
self.attend = Attend(causal = causal, dropout = dropout, use_flash = use_flash)
self.to_q = nn.Linear(dim, dim_inner, bias = False)
self.to_kv = nn.Linear(dim_context, dim_inner * 2, bias = False)
self.to_out = nn.Linear(dim_inner, dim, bias = False)
def forward(self, x, context = None, mask = None):
h, has_context = self.heads, exists(context)
context = default(context, x)
if has_context and self.cross_attn_include_queries:
context = torch.cat((x, context), dim = -2)
q, k, v = (self.to_q(x), *self.to_kv(context).chunk(2, dim = -1))
q, k, v = map(lambda t: rearrange(t, 'b n (h d) -> b h n d', h = h), (q, k, v))
out = self.attend(q, k, v, mask = mask)
out = rearrange(out, 'b h n d -> b n (h d)')
return self.to_out(out)
class RMSNorm(nn.Module):
def __init__(self, dim, scale = True, dim_cond = None):
super().__init__()
self.cond = exists(dim_cond)
self.to_gamma_beta = nn.Linear(dim_cond, dim * 2) if self.cond else None
self.scale = dim ** 0.5
self.gamma = nn.Parameter(torch.ones(dim)) if scale else None
def forward(self, x, cond = None):
gamma = default(self.gamma, 1)
out = F.normalize(x, dim = -1) * self.scale * gamma
if not self.cond:
return out
assert exists(cond)
gamma, beta = self.to_gamma_beta(cond).chunk(2, dim = -1)
gamma, beta = map(lambda t: rearrange(t, 'b d -> b 1 d'), (gamma, beta))
return out * gamma + beta
# transformer encoder
class Transformer(nn.Module):
def __init__(
self,
dim,
*,
depth,
causal = False,
dim_head = 64,
heads = 8,
use_flash = False,
dropout = 0.,
ff_mult = 4,
final_norm = False
):
super().__init__()
self.layers = nn.ModuleList([])
for _ in range(depth):
self.layers.append(nn.ModuleList([
RMSNorm_Rep(dim),
Attention(
dim,
causal = causal,
dim_head = dim_head,
heads = heads,
dropout = dropout,
use_flash = use_flash
),
RMSNorm_Rep(dim),
FeedForward(
dim,
mult = ff_mult
)
]))
self.norm = RMSNorm_Rep(dim) if final_norm else nn.Identity()
def forward(self, x, mask = None):
for attn_norm, attn, ff_norm, ff in self.layers:
x = attn(attn_norm(x), mask = mask) + x
x = ff(ff_norm(x)) + x
return self.norm(x)
class ConditionableTransformer(nn.Module):
def __init__(
self,
dim,
*,
depth,
dim_head = 64,
heads = 8,
ff_mult = 4,
ff_causal_conv = False,
dim_cond_mult = None,
cross_attn = False,
use_flash = False
):
super().__init__()
self.dim = dim
self.layers = mlist([])
cond = exists(dim_cond_mult)
maybe_adaptive_norm_kwargs = dict(scale = not cond, dim_cond = dim * dim_cond_mult) if cond else dict()
rmsnorm = partial(RMSNorm, **maybe_adaptive_norm_kwargs)
for _ in range(depth):
self.layers.append(mlist([
rmsnorm(dim),
Attention(dim = dim, dim_head = dim_head, heads = heads, use_flash = use_flash),
rmsnorm(dim) if cross_attn else None,
Attention(dim = dim, dim_head = dim_head, heads = heads, use_flash = use_flash) if cross_attn else None,
rmsnorm(dim),
FeedForward(dim = dim, mult = ff_mult, causal_conv = ff_causal_conv)
]))
self.to_pred = nn.Sequential(
RMSNorm(dim),
nn.Linear(dim, dim, bias = False)
)
def forward(
self,
x,
times = None,
context = None
):
t = times
for attn_norm, attn, cross_attn_norm, cross_attn, ff_norm, ff in self.layers:
res = x
x = attn_norm(x, cond = t)
x = attn(x) + res
if exists(cross_attn):
assert exists(context)
res = x
x = cross_attn_norm(x, cond = t)
x = cross_attn(x, context = context) + res
res = x
x = ff_norm(x, cond = t)
x = ff(x) + res
return self.to_pred(x)
class CondRelTransformerEncoder(nn.Module):
def __init__(self,
n_vocab,
in_channels,
out_channels,
hidden_channels,
filter_channels,
n_heads,
n_layers,
kernel_size,
p_dropout=0.0,
window_size=4,
block_length=None,
prenet=True,
pre_ln=True,
):
super().__init__()
self.n_vocab = n_vocab
self.in_channels = in_channels
self.out_channels = out_channels
self.hidden_channels = hidden_channels
self.filter_channels = filter_channels
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.prenet = prenet
if n_vocab > 0:
self.emb = Embedding(n_vocab+1, in_channels, padding_idx=n_vocab)
self.proj = nn.Conv1d(in_channels, hidden_channels,kernel_size=1)
self.pre = ConvReluNorm(hidden_channels, hidden_channels, hidden_channels,
kernel_size=5, n_layers=2, p_dropout=0)
self.encoder = ConditionableTransformer(
dim = hidden_channels,
depth = n_layers,
dim_head = 64,
heads = 8,
ff_mult = 4,
ff_causal_conv = True,
dim_cond_mult = None,
use_flash = False,
cross_attn = True
)
def forward(self, x, context, x_mask=None):
if self.n_vocab > 0:
x = self.emb(x) * math.sqrt(self.in_channels) # [b, t, h]
x = torch.transpose(x, 1, -1) # [b, h, t]
# x_mask = torch.unsqueeze(sequence_mask(x_lengths, x.size(2)), 1).to(x.dtype)
x = self.proj(x) * x_mask
x = self.pre(x, x_mask)
x = x.transpose(1,2) # [B,T,C]
x_mask = x_mask.transpose(1,2)
x = self.encoder(x, context=context) * x_mask
return x
class TextConditionalRelTransformerEncoder(nn.Module):
def __init__(self,
n_vocab,
in_channels,
out_channels,
hidden_channels,
filter_channels,
n_heads,
n_layers,
kernel_size,
p_dropout=0.0,
window_size=4,
block_length=None,
prenet=True,
pre_ln=True,
):
super().__init__()
self.n_vocab = n_vocab
self.in_channels = in_channels
self.out_channels = out_channels
self.hidden_channels = hidden_channels
self.filter_channels = filter_channels
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.prenet = prenet
if n_vocab > 0:
self.emb = Embedding(n_vocab, hidden_channels, padding_idx=0)
self.pre = ConvReluNorm(hidden_channels, hidden_channels, hidden_channels,
kernel_size=5, n_layers=3, p_dropout=0)
self.encoder = ConditionableTransformer(
dim = hidden_channels,
depth = n_layers,
dim_head = 64,
heads = 8,
ff_mult = 4,
ff_causal_conv = True,
dim_cond_mult = None,
use_flash = False,
cross_attn = True
)
def forward(self, x,context, x_mask=None):
if self.n_vocab > 0:
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(sequence_mask(x_lengths, x.size(2)), 1).to(x.dtype)
x = self.pre(x, x_mask)
x = x.transpose(1,2) # [B,T,C]
x_mask = x_mask.transpose(1,2)
x = self.encoder(x, context=context) * x_mask
return x
class DurationPitchPredictor(nn.Module):
def __init__(
self,
dim = 512,
depth = 10,
out_dim = 1,
kernel_size = 3,
dim_context = None,
heads = 8,
dim_head = 64,
dropout = 0.2,
use_resnet_block = True,
num_convs_per_resnet_block = 2,
num_convolutions_per_block = 3,
use_flash_attn = False,
):
super().__init__()
self.layers = nn.ModuleList([])
conv_klass = ConvBlock if not use_resnet_block else partial(ResnetBlock, num_convs = num_convs_per_resnet_block)
for _ in range(depth):
layer = nn.ModuleList([
nn.Sequential(*[
conv_klass(dim, dim, kernel_size) for _ in range(num_convolutions_per_block)
]),
RMSNorm(dim),
Attention(
dim,
dim_context = dim_context,
heads = heads,
dim_head = dim_head,
dropout = dropout,
use_flash = use_flash_attn,
cross_attn_include_queries = True
)
])
self.layers.append(layer)
if out_dim == 1:
self.to_pred = nn.Sequential(
nn.Linear(dim, out_dim),
Rearrange('... 1 -> ...'),
nn.ReLU()
)
else:
self.to_pred = nn.Sequential(
nn.Linear(dim, out_dim),
nn.ReLU()
)
def forward(
self,
x,
encoded_prompts,
x_mask=None,
prompt_mask = None
):
for conv, norm, attn in self.layers:
x = conv(x) * x_mask
x = attn(norm(x), encoded_prompts, mask = prompt_mask) + x
x = self.to_pred(x) * x_mask.squeeze(-1)
x = torch.round(x.float()).long()
return x
class NSDiffNet(nn.Module):
def __init__(
self,
dim,
*,
depth=6,
dim_head = 64,
heads = 8,
ff_mult = 4,
wavenet_layers = 8,
wavenet_stacks = 4,
dim_cond_mult = 4,
use_flash_attn = False,
dim_prompt = None,
num_latents_m = 32, # number of latents to be perceiver resampled ('q-k-v' with 'm' queries in the paper)
cond_drop_prob = 0.,
condition_on_prompt= False
):
super().__init__()
self.dim = dim
self.input_projection = nn.Conv1d(80, dim, 1)
# time condition
dim_time = dim * dim_cond_mult
self.to_time_cond = Sequential(
LearnedSinusoidalPosEmb(dim),
nn.Linear(dim + 1, dim_time),
nn.SiLU()
)
# prompt condition
self.cond_drop_prob = cond_drop_prob # for classifier free guidance
self.condition_on_prompt = condition_on_prompt
self.to_prompt_cond = None
if self.condition_on_prompt:
self.null_prompt_cond = nn.Parameter(torch.randn(dim_time))
self.null_prompt_tokens = nn.Parameter(torch.randn(num_latents_m, dim))
self.prompt_tokens_proj = nn.Linear(dim_prompt, dim, bias=False)
nn.init.normal_(self.null_prompt_cond, std = 0.02)
nn.init.normal_(self.null_prompt_tokens, std = 0.02)
self.to_prompt_cond = Sequential(
Reduce('b n d -> b d', 'mean'),
nn.Linear(dim_prompt, dim_time),
nn.SiLU()
)
# aligned conditioning from aligner + duration module
self.null_cond = None
self.cond_to_model_dim = None
if self.condition_on_prompt:
self.cond_to_model_dim = nn.Conv1d(dim_prompt, dim, 1)
self.null_cond = nn.Parameter(torch.zeros(dim, 1))
# conditioning includes time and optionally prompt
# t如果不和prompt concat的话,就不需要乘2
dim_cond_mult = dim_cond_mult * (2 if condition_on_prompt else 1)
# wavenet
self.wavenet = Wavenet(
dim = dim,
stacks = wavenet_stacks,
layers = wavenet_layers,
dim_cond_mult = dim_cond_mult
)
# transformer
self.transformer = ConditionableTransformer(
dim = dim,
depth = depth,
dim_head = dim_head,
heads = heads,
ff_mult = ff_mult,
ff_causal_conv = True,
dim_cond_mult = dim_cond_mult,
use_flash = use_flash_attn,
cross_attn = condition_on_prompt
)
self.output_projection = nn.Conv1d(dim, 80, 1)
@property
def device(self):
return next(self.parameters()).device
def forward(
self,
x,
times,
prompt = None,
prompt_mask = None,
cond = None,
cond_drop_prob = None
):
x = x[:, 0]
b = x.shape[0]
cond_drop_prob = default(cond_drop_prob, self.cond_drop_prob)
x = self.input_projection(x).transpose(1,2)
# prepare prompt condition
# prob should remove going forward
t = self.to_time_cond(times)
c = None
if exists(self.to_prompt_cond):
assert exists(prompt)
prompt_cond_drop_mask = prob_mask_like((b,), cond_drop_prob, self.device)
prompt_cond = self.to_prompt_cond(prompt)
prompt_cond = torch.where(
rearrange(prompt_cond_drop_mask, 'b -> b 1'),
self.null_prompt_cond,
prompt_cond,
)
t = torch.cat((t, prompt_cond), dim = -1)
prompt_tokens = self.prompt_tokens_proj(prompt)
c = torch.where(
rearrange(prompt_cond_drop_mask, 'b -> b 1 1'),
self.null_prompt_tokens,
prompt_tokens
)
# rearrange to channel first
x = rearrange(x, 'b n d -> b d n')
# sum aligned condition to input sequence
if exists(self.cond_to_model_dim):
assert exists(cond)
cond = self.cond_to_model_dim(cond)
cond_drop_mask = prob_mask_like((b,), cond_drop_prob, self.device)
cond = torch.where(
rearrange(cond_drop_mask, 'b -> b 1 1'),
self.null_cond,
cond
)
# for now, conform the condition to the length of the latent features
cond = pad_or_curtail_to_length(cond, x.shape[-1])
x = x + cond
# main wavenet body
# x = self.wavenet(x, t)
# x = rearrange(x, 'b d n -> b n d')
# x = self.transformer(x, t, context = c)
# x = self.output_projection(x.transpose(1,2)) # [B,80,T]
# return x[:, None, :, :]
x = self.transformer(x.transpose(1,2), t, context = c)
x = self.wavenet(x.transpose(1,2), t)
x = self.output_projection(x) # [B,80,T]
return x[:, None, :, :]
class AttentiveStatsPool(nn.Module):
def __init__(self, in_dim, attention_channels=128, global_context_att=False):
super().__init__()
self.global_context_att = global_context_att
# Use Conv1d with stride == 1 rather than Linear, then we don't need to transpose inputs.
if global_context_att:
self.linear1 = nn.Conv1d(in_dim * 3, attention_channels, kernel_size=1) # equals W and b in the paper
else:
self.linear1 = nn.Conv1d(in_dim, attention_channels, kernel_size=1) # equals W and b in the paper
self.linear2 = nn.Conv1d(attention_channels, in_dim, kernel_size=1) # equals V and k in the paper
def forward(self, x):
if self.global_context_att:
context_mean = torch.mean(x, dim=-1, keepdim=True).expand_as(x)
context_std = torch.sqrt(torch.var(x, dim=-1, keepdim=True) + 1e-10).expand_as(x)
x_in = torch.cat((x, context_mean, context_std), dim=1)
else:
x_in = x
# DON'T use ReLU here! In experiments, I find ReLU hard to converge.
alpha = torch.tanh(self.linear1(x_in))
# alpha = F.relu(self.linear1(x_in))
alpha = torch.softmax(self.linear2(alpha), dim=2)
mean = torch.sum(alpha * x, dim=2)
residuals = torch.sum(alpha * (x ** 2), dim=2) - mean ** 2
std = torch.sqrt(residuals.clamp(min=1e-9))
return torch.cat([mean, std], dim=1)
# net = CondRelTransformerEncoder(100,
# 16,
# 192,
# 192,
# 768,
# 8,
# 4,
# 5,
# p_dropout=0.0,
# prenet=True,
# pre_ln=True)
# input = torch.arange(0, 16*124).reshape(16, 124) % 101
# context = torch.randn((16,32,192))
# x_mask = (input<100).float()[:, :,None]
# x_mask = x_mask.transpose(1,2)
# print(input.shape,x_mask.shape)
# output = net(input,context,x_mask)
# print(output.shape)
# net = DurationPitchPredictor(dim=192,depth=5,out_dim=1)
# input = torch.randn((16,124,192))
# context = torch.randn((16,32,192))
# output = net(input,context)
# print(output.shape). ## (16,124)
# net = NSDiffNet(
# dim = 256,
# depth = 6,
# dim_prompt = 192,
# cond_drop_prob = 0.25,
# num_latents_m = 32, ### style_token的数量
# condition_on_prompt = True)
# x = torch.rand((16,1,80,126))
# t = torch.randint(0, 10, (16,)).long()
# print(t.shape)
# prompt = torch.rand((16,32,192)) # [B,N,C]
# cond = torch.rand((16,192,126)) # [B,C,T]
# y = net(x=x,times=t,prompt=prompt,cond=cond)
# print(y.shape) |