From 5edac5f1a8eeb953733116d0f37c73a6a467b063 Mon Sep 17 00:00:00 2001 From: Mddct Date: Thu, 28 Sep 2023 12:07:37 +0800 Subject: [PATCH] [ssl/wav2vec2] part of wav2vec2 training --- wenet/ssl/bestrq/bestqr_model.py | 3 +- wenet/ssl/wav2vec2/quantizer.py | 108 ++++++++++ wenet/ssl/wav2vec2/wav2vec2_model.py | 303 +++++++++++++++++++++++++++ 3 files changed, 413 insertions(+), 1 deletion(-) create mode 100644 wenet/ssl/wav2vec2/quantizer.py create mode 100644 wenet/ssl/wav2vec2/wav2vec2_model.py diff --git a/wenet/ssl/bestrq/bestqr_model.py b/wenet/ssl/bestrq/bestqr_model.py index 2cb7920c37..eeb69dc004 100644 --- a/wenet/ssl/bestrq/bestqr_model.py +++ b/wenet/ssl/bestrq/bestqr_model.py @@ -121,7 +121,8 @@ def __init__( torch.nn.init.xavier_uniform_(self.projection) # codebooks - # [num_codebooks, embedding_dim, num_embeddings] + # [num_embeddings, num_codebooks, num_embeddings] means + # [C, G, D] see quantize_vector self.embeddings = torch.nn.parameter.Parameter( torch.empty(num_embeddings, self.num_codebooks, embedding_dim), requires_grad=False, diff --git a/wenet/ssl/wav2vec2/quantizer.py b/wenet/ssl/wav2vec2/quantizer.py new file mode 100644 index 0000000000..252b4c0f49 --- /dev/null +++ b/wenet/ssl/wav2vec2/quantizer.py @@ -0,0 +1,108 @@ +import torch + + +def gumbel(shape: torch.Size, dtype: torch.dtype): + """Sample Gumbel random values with given shape and float dtype. + + The values are distributed according to the probability density function: + + .. math:: + f(x) = e^{-(x + e^{-x})} + + Args: + shape (torch.Size): pdf shape + dtype (torch.dtype): pdf value dtype + + Returns: + A random array with the specified shape and dtype. + """ + # see https://www.cnblogs.com/initial-h/p/9468974.html for more details + return -torch.log( + -torch.log(torch.empty(shape).uniform_(torch.finfo(dtype).tiny, 1.))) + + +class Wav2vecGumbelVectorQuantizer(torch.nn.Module): + + def __init__(self, + features_dim: int = 256, + num_codebooks: int = 2, + num_embeddings: int = 8192, + embedding_dim: int = 16, + hard: bool = False) -> None: + + super().__init__() + + self.num_groups = num_codebooks + self.num_codevectors_per_group = num_embeddings + # codebooks + # means [C, G, D] see quantize_vector in bestrq_model.py + assert embedding_dim % num_codebooks == 0.0 + self.embeddings = torch.nn.parameter.Parameter( + torch.empty(1, num_codebooks * num_embeddings, + embedding_dim // num_codebooks), + requires_grad=True, + ) + torch.nn.init.uniform_(self.embeddings) + + self.weight_proj = torch.nn.Linear(features_dim, + num_codebooks * num_embeddings) + # use gumbel softmax or argmax(non-differentiable) + self.hard = hard + + @staticmethod + def _compute_perplexity(probs, mask=None): + if mask is not None: + + mask_extended = torch.broadcast_to(mask.flatten()[:, None, None], + probs.shape) + probs = torch.where(mask_extended.to(torch.bool), probs, + torch.zeros_like(probs)) + marginal_probs = probs.sum(dim=0) / mask.sum() + else: + marginal_probs = probs.mean(dim=0) + + perplexity = torch.exp(-torch.sum( + marginal_probs * torch.log(marginal_probs + 1e-7), dim=-1)).sum() + return perplexity + + def forward(self, + input: torch.Tensor, + input_mask: torch.Tensor, + temperature: float = 1.): + + b, t, _ = input.size() + + hidden = self.weight_proj(input) + hidden = hidden.reshape(b * t * self.num_groups, -1) + if not self.hard: + # sample code vector probs via gumbel in differentiateable way + gumbels = gumbel(hidden.size(), hidden.dtype) + codevector_probs = torch.nn.functional.softmax( + (hidden + gumbels) / temperature, dim=-1) + + # compute perplexity + codevector_soft_dist = torch.nn.functional.softmax( + hidden.reshape(b * t, self.num_groups, -1), + dim=-1, + ) # [B*T, num_codebooks, num_embeddings] + perplexity = self._compute_perplexity(codevector_soft_dist, + input_mask) + else: + # take argmax in non-differentiable way + # comptute hard codevector distribution (one hot) + codevector_idx = hidden.argmax(axis=-1) + codevector_probs = torch.nn.functional.one_hot( + codevector_idx, hidden.shape[-1]) * 1.0 + codevector_probs = codevector_probs.reshape( + b * t, self.num_groups, -1) + perplexity = self._compute_perplexity(codevector_probs, input_mask) + + codevector_probs = codevector_probs.reshape(b * t, -1) + # use probs to retrieve codevectors + codevectors_per_group = codevector_probs.unsqueeze( + -1) * self.embeddings + codevectors = codevectors_per_group.reshape( + b * t, self.num_groups, self.num_codevectors_per_group, -1) + + codevectors = codevectors.sum(-2).reshape(b, t, -1) + return codevectors, perplexity diff --git a/wenet/ssl/wav2vec2/wav2vec2_model.py b/wenet/ssl/wav2vec2/wav2vec2_model.py new file mode 100644 index 0000000000..9088f0ecac --- /dev/null +++ b/wenet/ssl/wav2vec2/wav2vec2_model.py @@ -0,0 +1,303 @@ +import math +from typing import Optional, Tuple, Union +import torch + +import torch.nn.functional as F +from wenet.ssl.bestrq.mask import compute_mask_indices_v2 +from wenet.ssl.wav2vec2.quantizer import Wav2vecGumbelVectorQuantizer +from wenet.transformer.attention import RelPositionMultiHeadedAttention + +from wenet.transformer.encoder import ConformerEncoder, TransformerEncoder +from wenet.transformer.encoder_layer import ConformerEncoderLayer +from wenet.utils.mask import make_non_pad_mask + + +def _sample_negative_indices(features_shape: torch.Size, + num_negatives: int, + mask: Optional[torch.Tensor] = None): + """ + Sample `num_negatives` vectors from feature vectors. + """ + batch_size, sequence_length, _ = features_shape + assert sequence_length > 1 + # get `num_negatives` random vector indices from the same utterance + sampled_negative_indices = [] + for batch_idx in range(batch_size): + high = mask[batch_idx].sum( + ) - 1 if mask is not None else sequence_length - 1 + sampled_indices_slice = torch.randint(0, + high, + size=(num_negatives * + sequence_length, )) + sampled_negative_indices.append(sampled_indices_slice) + + sampled_negative_indices = torch.stack(sampled_negative_indices, dim=0).to( + torch.int32) # [B, num_negatives * sequence_length] + + # generate indices of the positive vectors themselves, + # repeat them `num_negatives` times + feature_indices = torch.arange(sequence_length)[:, None].repeat( + 1, num_negatives).flatten() # [B x num_negatives x sequence_length] + + # avoid sampling the same positive vector, but keep the distribution uniform + sampled_negative_indices[sampled_negative_indices >= feature_indices] += 1 + + # correct for batch size + for batch_idx in range(1, batch_size): + sampled_negative_indices[batch_idx] += batch_idx * sequence_length + + return sampled_negative_indices + + +def _compute_contrastive_loss(quantized_features: torch.Tensor, + features: torch.Tensor, + negative_indices: torch.Tensor, + mask_time_indices: torch.Tensor, + logits_temp: float, + num_negatives: int = 1): + batch_size, sequence_length, hidden_size = quantized_features.shape + + # take negative vectors from sampled indices + quantized_negatives = quantized_features.view( + -1, hidden_size)[negative_indices.view(-1)] + quantized_negatives = quantized_negatives.view(batch_size, sequence_length, + num_negatives, + hidden_size).permute( + 2, 0, 1, 3) + + target_features = torch.cat( + [quantized_features.unsqueeze(0), quantized_negatives], dim=0) + loss_logits = F.cosine_similarity(features, target_features, dim=-1) + loss_logits = loss_logits / logits_temp + + neg_is_pos = (quantized_features == quantized_negatives).all(-1) + neg_is_pos = torch.cat( + [torch.full((1, ) + loss_logits.shape[1:], False), neg_is_pos], dim=0) + + # make sure incorrectly sampled vectors don't contribute to loss + loss_logits = torch.where(neg_is_pos, -1e9, loss_logits) + + predictions = loss_logits.permute(2, 1, 0).reshape(-1, + loss_logits.shape[0]) + targets = ((1 - mask_time_indices.long()) * -100).transpose(1, 0).flatten() + + target_mask = torch.where(targets >= 0, 1.0, 0.0) + contrastive_loss = F.cross_entropy( + predictions, targets.long(), reduction='none') * target_mask + + contrastive_loss = contrastive_loss.sum() + + return contrastive_loss + + +class Wav2vec2Model(torch.nn.Module): + + def __init__( + self, + encoder: Union[ConformerEncoder, TransformerEncoder], + embedding_dim: int = 256, + num_embeddings: int = 320, + num_codebooks: int = 1, + mask_prob: float = 0.065, + mask_length: int = 10, + min_masks: int = 2, + num_negatives: int = 100, + features_regularization_weight: float = 0.01, + max_gumbel_temperature: float = 2.0, + min_gumbel_temperature: float = 0.1, + gumbel_temperature_decay: float = 0.999995, + contrastive_logits_temperature: float = 0.1, + diversity_weight: float = 0.0, + ) -> None: + """ Wrap encoder to train using wav2vec2's style + + Args: + encoder: wenet's encoder, + only support conformer and transformer now + embedding_dim: codebooks embedding dim + num_embeddings: numbers of each codebook + num_codebooks: numbers of codebooks i.e groups of codebook + mask_prob: probs of mask + mask_length: spans of masks + min_maks: min masks for each audio + num_negatives: numbers of negatives of each masks + features_regularization_weight: l2 regularization weight + max_gumbel_temperature: maximum temperature for gumbel softmax + min_gumbel_temperature: minimum temperature for gumbel softmax + gumbel_temperature_decay: + decay of gumbel temperature during training + contrastive_logits_temperature: + the temperature in the contrastive loss. + """ + super().__init__() + assert mask_prob > 0.0 + self.mask_prob = mask_prob + self.mask_length = mask_length + self.min_masks = min_masks + self.num_negatives = num_negatives + + self.features_regularization_weight = features_regularization_weight + self.diversity_weight = diversity_weight + + # encoder + self.encoder = encoder + + # quantizer + self.quantizer = Wav2vecGumbelVectorQuantizer( + self.encoder.output_size(), + num_codebooks=num_codebooks, + num_embeddings=num_embeddings, + embedding_dim=embedding_dim, + hard=False, + ) + self.max_gumbel_temp = max_gumbel_temperature + self.min_gumbel_temp = min_gumbel_temperature + self.gumbel_temp_decay = gumbel_temperature_decay + + self.num_codevectors_per_group = num_embeddings + self.num_codevector_groups = num_codebooks + + self.contrastive_logits_temp = contrastive_logits_temperature + + self.mask_emb = torch.nn.parameter.Parameter( + torch.empty(self.encoder.output_size()).uniform_(), + requires_grad=True, + ) + # TODO(Mddct): support causal or lookahead mask or keep consistent with + # wenet dynamic chunk training + + # reset parameter + self.reset_encoder_parameter() + + def reset_encoder_parameter(self): + + def _reset_parameter(module: torch.nn.Module): + if isinstance(module, torch.nn.Linear): + torch.nn.init.trunc_normal_(module.weight.data, + mean=0.0, + std=0.02) + if module.bias is not None: + module.bias.data.zero_() + elif isinstance(module, torch.nn.Conv1d): + torch.nn.init.kaiming_normal_(module.weight) + if module.bias is not None: + k = math.sqrt(module.groups / + (module.in_channels * module.kernel_size[0])) + torch.nn.init.uniform_(module.bias, a=-k, b=k) + elif isinstance(module, torch.Tensor): + torch.nn.init.trunc_normal_(module) + else: + raise NotImplementedError("other module not support now") + + encoders = self.encoder.encoders + for _, layer in enumerate(encoders): + self_attn = layer.self_attn + _reset_parameter(self_attn.linear_q) + _reset_parameter(self_attn.linear_k) + _reset_parameter(self_attn.linear_v) + _reset_parameter(self_attn.linear_out) + if isinstance(self_attn, RelPositionMultiHeadedAttention): + _reset_parameter(self_attn.pos_bias_u) + _reset_parameter(self_attn.pos_bias_v) + if isinstance(layer, ConformerEncoderLayer): + conv1, conv2 = (layer.conv_module.pointwise_conv1, + layer.conv_module.depthwise_conv) + _reset_parameter(conv1) + _reset_parameter(conv2) + + @torch.jit.ignore(drop=True) + def forward( + self, + xs: torch.Tensor, + xs_lens: torch.Tensor, + text: Optional[torch.Tensor] = None, + text_length: Optional[torch.Tensor] = None, + steps: Optional[int] = None, + ): + + assert xs.size(0) == xs_lens.size(0) + assert steps is not None + + # 1 forward subsampling + # NOTE(Mddct): use subsampling as feature extraction + xs, pos_emb, masks = self._forward_subsampling(xs, xs_lens) + unmasked_xs = xs + # 2 mask features + masked_xs, masked_masks = self._apply_mask(xs, masks.squeeze(1)) + # 3 forward encoder blocks + out, _ = self._forward_encoder_blocks(masked_xs, masks, pos_emb, masks) + + gumbel_temperature = max( + self.max_gumbel_temp * self.gumbel_temp_decay**steps, + self.min_gumbel_temp) + + quantized_features, codevector_perplexity = self.quantizer( + unmasked_xs, masks.squeeze(1), gumbel_temperature) + + sampled_negative_indices = _sample_negative_indices( + xs.size(), self.num_negatives, masks.squeeze(1)) + + loss_contrastive = _compute_contrastive_loss( + quantized_features, out, sampled_negative_indices, masked_masks, + self.contrastive_logits_temp, self.num_negatives) + loss = loss_contrastive + + loss_diversity: Optional[torch.Tensor] = None + if self.diversity_weight != 0.0: + loss_diversity = ( + self.num_codevector_groups * self.num_codevectors_per_group - + codevector_perplexity) / (self.num_codevectors_per_group * + self.num_codevector_groups) + loss = loss + self.diversity_weight * loss_diversity + + features_pen: Optional[torch.Tensor] = None + if self.features_regularization_weight != 0.0: + features_pen = xs.pow(2).mean() + loss = loss + self.features_regularization_weight * features_pen + + return { + "features_l2": features_pen, + "loss": loss, + "loss_diversity": loss_diversity, + } + + def _apply_mask( + self, xs: torch.Tensor, + xs_masks: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor]: + + masks = compute_mask_indices_v2(xs.size()[:-1], + xs_masks, + self.mask_prob, + self.mask_length, + min_masks=self.min_masks, + device=xs.device) + masks_expand = masks.unsqueeze(-1) # [B, T, 1] + + mask_emb = self.mask_emb.to(xs.device).view(1, 1, -1) + xs = torch.where(masks_expand, mask_emb, xs) + + return xs, masks + + def _forward_subsampling( + self, xs: torch.Tensor, xs_lens: torch.Tensor + ) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]: + + masks = make_non_pad_mask(xs_lens).unsqueeze(1) # (B, 1, T) + if self.encoder.global_cmvn is not None: + xs = self.encoder.global_cmvn(xs) + xs, pos_emb, masks = self.encoder.embed(xs, masks) + return xs, pos_emb, masks + + def _forward_encoder_blocks(self, xs: torch.Tensor, xs_masks: torch.Tensor, + pos_emb: torch.Tensor, mask_pad: torch.Tensor): + + masks = xs_masks + + for layer in self.encoder.encoders: + xs, masks, _, _ = layer(xs, xs_masks, pos_emb, mask_pad) + if self.encoder.normalize_before: + xs = self.encoder.after_norm(xs) + # Here we assume the mask is not changed in encoder layers, so just + # return the masks before encoder layers, and the masks will be used + # for cross attention with decoder later + return xs, masks