-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathflow.py
More file actions
213 lines (188 loc) · 7.65 KB
/
flow.py
File metadata and controls
213 lines (188 loc) · 7.65 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
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
# Copyright (c) 2024 Alibaba Inc (authors: Xiang Lyu, Zhihao Du)
#
# 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.
import torch
import torch.nn as nn
from torch.nn import functional as F
from cosyvoice2.utils.mask import make_pad_mask
from cosyvoice2.flow.flow_matching import CausalConditionalCFM
from cosyvoice2.transformer.upsample_encoder_v2 import UpsampleConformerEncoderV2
class CausalMaskedDiffWithXvec(torch.nn.Module):
def __init__(self,
input_size: int = 512,
output_size: int = 80,
spk_embed_dim: int = 192,
output_type: str = "mel",
vocab_size: int = 5121,
encoder: UpsampleConformerEncoderV2 = None,
decoder: CausalConditionalCFM = None,
input_embedding: torch.nn.Module = None,
):
super().__init__()
self.input_size = input_size
self.output_size = output_size
self.vocab_size = vocab_size
self.output_type = output_type
self.pre_lookahead_len = int(encoder.pre_lookahead_layer.pre_lookahead_len)
self.up_rate = int(encoder.up_layer.stride)
if input_embedding is None:
self.input_embedding = nn.Embedding(vocab_size, input_size)
else:
self.input_embedding = input_embedding
self.spk_embed_affine_layer = torch.nn.Linear(spk_embed_dim, output_size)
self.encoder = encoder
self.encoder_proj = torch.nn.Linear(self.encoder.output_size(), output_size)
self.decoder = decoder
# xvec projection with CUDA Graph optimization
# 初始化 CUDA Graph 相关变量
self.enable_cuda_graph = False
self.static_embedding = None
self.static_output = None
self.graph = None
self.embedding_shape = None
def scatter_cuda_graph(self, enable_cuda_graph: bool):
self.enable_cuda_graph = enable_cuda_graph
if self.enable_cuda_graph:
# self.encoder.scatter_cuda_graph(enable_cuda_graph)
self.decoder.scatter_cuda_graph(enable_cuda_graph)
@torch.inference_mode()
def inference(self,
token,
token_len,
prompt_feat,
prompt_feat_len,
embedding,
n_timesteps: int = 10,
):
# xvec projection
embedding = F.normalize(embedding, dim=1)
embedding = self.spk_embed_affine_layer(embedding)
mask = (~make_pad_mask(token_len)).unsqueeze(-1).to(embedding)
token = self.input_embedding(torch.clamp(token, min=0)) * mask
# token encode
h, h_lengths = self.encoder.forward(token, token_len)
h = self.encoder_proj(h)
conds = torch.zeros_like(h)
for i, j in enumerate(prompt_feat_len):
conds[i, :j] = prompt_feat[i, :j]
conds = conds.transpose(1, 2).contiguous()
h_lengths = h_lengths.sum(dim=-1).squeeze(dim=1)
mask = (~make_pad_mask(h_lengths, max_len=h.shape[1])).to(h)
feat = self.decoder.forward(
mu=h.transpose(1, 2).contiguous(),
mask=mask.unsqueeze(1),
spks=embedding,
cond=conds,
n_timesteps=n_timesteps,
)
return feat.float(), h_lengths
@torch.inference_mode()
def setup_cache(self,
token: torch.Tensor,
mel: torch.Tensor,
spk: torch.Tensor,
n_timesteps: int = 10,
):
"""
Args:
token: shape (b, t), with look ahead tokens
mel: shape (b, t, c), groundtruth mel
spk: shape (b, 192), speaker embedding
Returns:
cache: dict {
'conformer': {'cnn_cache': xxx, 'att_cache': xxx},
'estimator': {'cnn_cache': xxx, 'att_cache': xxx}
}
"""
# check if look ahead token included
assert (token.shape[1] - self.pre_lookahead_len) * self.up_rate == mel.shape[1], (token.shape, mel.shape)
# xvec projection
spk = F.normalize(spk, dim=1)
spk = self.spk_embed_affine_layer(spk)
token = self.input_embedding(token)
# NOTE encoder.forward_chunk will strip the look ahead part
h, conformer_cnn_cache, conformer_att_cache = self.encoder.forward_chunk(
xs = token,
last_chunk = False,
cnn_cache = None,
att_cache = None,
)
h = self.encoder_proj(h)
feat, estimator_cnn_cache, estimator_att_cache = self.decoder.forward_chunk(
mu = h.transpose(1, 2).contiguous(),
spks = spk,
cond = mel.transpose(1, 2).contiguous().to(h.dtype),
n_timesteps = n_timesteps,
temperature = 1.0,
cnn_cache = None,
att_cache = None,
)
cache = {
'conformer_cnn_cache': conformer_cnn_cache,
'conformer_att_cache': conformer_att_cache,
'estimator_cnn_cache': estimator_cnn_cache,
'estimator_att_cache': estimator_att_cache,
}
return cache
@torch.inference_mode()
def inference_chunk(self,
token: torch.Tensor,
spk: torch.Tensor,
cache: dict,
last_chunk: bool = False,
n_timesteps: int = 10,
):
"""
Args:
token: shape (b, t), with look ahead tokens
spk: shape (b, 192), speaker embedding
cache: dict {
'conformer_cnn_cache': xxx,
...
}
"""
# unpack cache
conformer_cnn_cache = cache['conformer_cnn_cache']
conformer_att_cache = cache['conformer_att_cache']
estimator_cnn_cache = cache['estimator_cnn_cache']
estimator_att_cache = cache['estimator_att_cache']
# xvec projection
spk = F.normalize(spk, dim=1)
spk = self.spk_embed_affine_layer(spk)
token = self.input_embedding(token)
# if not the last chunk, h is shorter than xs for a length of lookahead_length * stride (6)
h, conformer_cnn_cache, conformer_att_cache = self.encoder.forward_chunk(
xs = token,
last_chunk = last_chunk,
cnn_cache = conformer_cnn_cache,
att_cache = conformer_att_cache,
)
h = self.encoder_proj(h)
cond = torch.zeros_like(h)
# forward estimator
feat, estimator_cnn_cache, estimator_att_cache = self.decoder.forward_chunk(
mu = h.transpose(1, 2).contiguous(),
spks = spk,
cond = cond.transpose(1, 2).contiguous(),
n_timesteps = n_timesteps,
temperature = 1.0,
cnn_cache = estimator_cnn_cache,
att_cache = estimator_att_cache,
)
new_cache = {
'conformer_cnn_cache': conformer_cnn_cache,
'conformer_att_cache': conformer_att_cache,
'estimator_cnn_cache': estimator_cnn_cache,
'estimator_att_cache': estimator_att_cache,
}
return feat, new_cache