| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944 |
- # 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
- # This file was automatically generated from src/transformers/models/moonshine/modular_moonshine.py.
- # Do NOT edit this file manually as any edits will be overwritten by the generation of
- # the file from the modular. If any change should be done, please apply the change to the
- # modular_moonshine.py file directly. One of our CI enforces this.
- # 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
- # Copyright 2025 The HuggingFace Inc. team. All rights reserved.
- #
- # 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.
- from collections.abc import Callable
- from dataclasses import dataclass
- from typing import Optional
- import torch
- import torch.nn as nn
- from ...activations import ACT2FN
- from ...cache_utils import Cache, DynamicCache, EncoderDecoderCache
- from ...generation import GenerationMixin
- from ...integrations import use_kernelized_func
- from ...masking_utils import create_bidirectional_mask, create_causal_mask
- from ...modeling_flash_attention_utils import FlashAttentionKwargs
- from ...modeling_layers import GradientCheckpointingLayer
- from ...modeling_outputs import (
- BaseModelOutput,
- BaseModelOutputWithPast,
- BaseModelOutputWithPastAndCrossAttentions,
- Seq2SeqLMOutput,
- Seq2SeqModelOutput,
- )
- from ...modeling_rope_utils import ROPE_INIT_FUNCTIONS, dynamic_rope_update
- from ...modeling_utils import ALL_ATTENTION_FUNCTIONS, PreTrainedModel
- from ...processing_utils import Unpack
- from ...utils import TransformersKwargs, auto_docstring, can_return_tuple
- from ...utils.generic import maybe_autocast, merge_with_config_defaults
- from ...utils.output_capturing import OutputRecorder, capture_outputs
- from .configuration_moonshine import MoonshineConfig
- @dataclass
- @auto_docstring(
- custom_intro="""
- Extends [~modeling_outputs.BaseModelOutput] to include the output attention mask since sequence length is not preserved in the model's forward.
- """
- )
- class MoonshineEncoderModelOutput(BaseModelOutput):
- attention_mask: torch.Tensor | None = None
- class MoonshineEncoderMLP(nn.Module):
- def __init__(self, config, hidden_act):
- super().__init__()
- self.config = config
- self.activation_fn = ACT2FN[hidden_act]
- self.fc1 = nn.Linear(config.hidden_size, config.intermediate_size)
- self.fc2 = nn.Linear(config.intermediate_size, config.hidden_size)
- def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
- hidden_states = self.fc1(hidden_states)
- hidden_states = self.activation_fn(hidden_states)
- hidden_states = self.fc2(hidden_states)
- return hidden_states
- class MoonshineDecoderMLP(nn.Module):
- def __init__(self, config, hidden_act):
- super().__init__()
- self.config = config
- self.activation_fn = ACT2FN[hidden_act]
- self.fc1 = nn.Linear(config.hidden_size, config.intermediate_size * 2)
- self.fc2 = nn.Linear(config.intermediate_size, config.hidden_size)
- def forward(self, hidden_states: torch.Tensor) -> torch.Tensor:
- hidden_states = self.fc1(hidden_states)
- hidden_states, gate = hidden_states.chunk(2, dim=-1)
- hidden_states = self.activation_fn(gate) * hidden_states
- hidden_states = self.fc2(hidden_states)
- return hidden_states
- class MoonshineRotaryEmbedding(nn.Module):
- inv_freq: torch.Tensor # fix linting for `register_buffer`
- def __init__(self, config: MoonshineConfig, device=None):
- super().__init__()
- self.max_seq_len_cached = config.max_position_embeddings
- self.original_max_seq_len = config.max_position_embeddings
- self.config = config
- self.rope_type = self.config.rope_parameters["rope_type"]
- rope_init_fn: Callable = self.compute_default_rope_parameters
- if self.rope_type != "default":
- rope_init_fn = ROPE_INIT_FUNCTIONS[self.rope_type]
- inv_freq, self.attention_scaling = rope_init_fn(self.config, device)
- self.register_buffer("inv_freq", inv_freq, persistent=False)
- self.register_buffer("original_inv_freq", inv_freq.clone(), persistent=False)
- @staticmethod
- def compute_default_rope_parameters(
- config: MoonshineConfig | None = None,
- device: Optional["torch.device"] = None,
- seq_len: int | None = None,
- ) -> tuple["torch.Tensor", float]:
- """
- Computes the inverse frequencies according to the original RoPE implementation
- Args:
- config ([`~transformers.PreTrainedConfig`]):
- The model configuration.
- device (`torch.device`):
- The device to use for initialization of the inverse frequencies.
- seq_len (`int`, *optional*):
- The current sequence length. Unused for this type of RoPE.
- Returns:
- Tuple of (`torch.Tensor`, `float`), containing the inverse frequencies for the RoPE embeddings and the
- post-processing scaling factor applied to the computed cos/sin (unused in this type of RoPE).
- """
- base = config.rope_parameters["rope_theta"]
- partial_rotary_factor = config.rope_parameters.get("partial_rotary_factor", 1.0)
- head_dim = getattr(config, "head_dim", None) or config.hidden_size // config.num_attention_heads
- dim = int(head_dim * partial_rotary_factor)
- attention_factor = 1.0 # Unused in this type of RoPE
- # Compute the inverse frequencies
- inv_freq = 1.0 / (
- base ** (torch.arange(0, dim, 2, dtype=torch.int64).to(device=device, dtype=torch.float) / dim)
- )
- return inv_freq, attention_factor
- @torch.no_grad()
- @dynamic_rope_update # power user: used with advanced RoPE types (e.g. dynamic rope)
- def forward(self, x, position_ids):
- inv_freq_expanded = self.inv_freq[None, :, None].float().expand(position_ids.shape[0], -1, 1).to(x.device)
- position_ids_expanded = position_ids[:, None, :].float()
- device_type = x.device.type if isinstance(x.device.type, str) and x.device.type != "mps" else "cpu"
- with maybe_autocast(device_type=device_type, enabled=False): # Force float32
- freqs = (inv_freq_expanded.float() @ position_ids_expanded.float()).transpose(1, 2)
- emb = torch.cat((freqs, freqs), dim=-1)
- cos = emb.cos() * self.attention_scaling
- sin = emb.sin() * self.attention_scaling
- return cos.to(dtype=x.dtype), sin.to(dtype=x.dtype)
- def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor:
- """
- This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). The hidden states go from (batch,
- num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim)
- """
- batch, num_key_value_heads, slen, head_dim = hidden_states.shape
- if n_rep == 1:
- return hidden_states
- hidden_states = hidden_states[:, :, None, :, :].expand(batch, num_key_value_heads, n_rep, slen, head_dim)
- return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen, head_dim)
- def eager_attention_forward(
- module: nn.Module,
- query: torch.Tensor,
- key: torch.Tensor,
- value: torch.Tensor,
- attention_mask: torch.Tensor | None,
- scaling: float,
- dropout: float = 0.0,
- **kwargs: Unpack[TransformersKwargs],
- ):
- key_states = repeat_kv(key, module.num_key_value_groups)
- value_states = repeat_kv(value, module.num_key_value_groups)
- attn_weights = torch.matmul(query, key_states.transpose(2, 3)) * scaling
- if attention_mask is not None:
- attn_weights = attn_weights + attention_mask
- attn_weights = nn.functional.softmax(attn_weights, dim=-1, dtype=torch.float32).to(query.dtype)
- attn_weights = nn.functional.dropout(attn_weights, p=dropout, training=module.training)
- attn_output = torch.matmul(attn_weights, value_states)
- attn_output = attn_output.transpose(1, 2).contiguous()
- return attn_output, attn_weights
- def rotate_half(x):
- """Rotates half the hidden dims of the input."""
- x1 = x[..., 0::2]
- x2 = x[..., 1::2]
- return torch.stack((-x2, x1), dim=-1).flatten(-2)
- def apply_rotary_pos_emb(q, k, cos, sin, unsqueeze_dim=1):
- """Applies Rotary Position Embedding to the query and key tensors.
- Args:
- q (`torch.Tensor`): The query tensor.
- k (`torch.Tensor`): The key tensor.
- cos (`torch.Tensor`): The cosine part of the rotary embedding.
- sin (`torch.Tensor`): The sine part of the rotary embedding.
- unsqueeze_dim (`int`, *optional*, defaults to 1):
- The 'unsqueeze_dim' argument specifies the dimension along which to unsqueeze cos[position_ids] and
- sin[position_ids] so that they can be properly broadcasted to the dimensions of q and k. For example, note
- that cos[position_ids] and sin[position_ids] have the shape [batch_size, seq_len, head_dim]. Then, if q and
- k have the shape [batch_size, heads, seq_len, head_dim], then setting unsqueeze_dim=1 makes
- cos[position_ids] and sin[position_ids] broadcastable to the shapes of q and k. Similarly, if q and k have
- the shape [batch_size, seq_len, heads, head_dim], then set unsqueeze_dim=2.
- Returns:
- `tuple(torch.Tensor)` comprising of the query and key tensors rotated using the Rotary Position Embedding.
- """
- cos = cos.unsqueeze(unsqueeze_dim)
- sin = sin.unsqueeze(unsqueeze_dim)
- # Interleave them instead of usual shape
- cos = cos[..., : cos.shape[-1] // 2].repeat_interleave(2, dim=-1)
- sin = sin[..., : sin.shape[-1] // 2].repeat_interleave(2, dim=-1)
- # Keep half or full tensor for later concatenation
- rotary_dim = cos.shape[-1]
- q_rot, q_pass = q[..., :rotary_dim], q[..., rotary_dim:]
- k_rot, k_pass = k[..., :rotary_dim], k[..., rotary_dim:]
- # Apply rotary embeddings on the first half or full tensor
- q_embed = (q_rot * cos) + (rotate_half(q_rot) * sin)
- k_embed = (k_rot * cos) + (rotate_half(k_rot) * sin)
- # Concatenate back to full shape
- q_embed = torch.cat([q_embed, q_pass], dim=-1)
- k_embed = torch.cat([k_embed, k_pass], dim=-1)
- return q_embed, k_embed
- @use_kernelized_func(apply_rotary_pos_emb)
- class MoonshineAttention(nn.Module):
- """Multi-headed attention from 'Attention Is All You Need' paper"""
- def __init__(
- self,
- config: MoonshineConfig,
- layer_idx: int,
- is_causal: bool,
- num_attention_heads: int,
- num_key_value_heads: int,
- ):
- super().__init__()
- config.update({"num_attention_heads": num_attention_heads, "num_key_value_heads": num_key_value_heads})
- self.config = config
- self.layer_idx = layer_idx
- self.head_dim = getattr(config, "head_dim", config.hidden_size // config.num_attention_heads)
- self.num_key_value_groups = config.num_attention_heads // config.num_key_value_heads
- self.scaling = self.head_dim**-0.5
- self.attention_dropout = config.attention_dropout
- self.is_causal = is_causal
- self.q_proj = nn.Linear(
- config.hidden_size, config.num_attention_heads * self.head_dim, bias=config.attention_bias
- )
- self.k_proj = nn.Linear(
- config.hidden_size, config.num_key_value_heads * self.head_dim, bias=config.attention_bias
- )
- self.v_proj = nn.Linear(
- config.hidden_size, config.num_key_value_heads * self.head_dim, bias=config.attention_bias
- )
- self.o_proj = nn.Linear(config.num_attention_heads * self.head_dim, config.hidden_size, bias=False)
- # Pad head dimension to the next specified multiple.
- if self.config.pad_head_dim_to_multiple_of is not None:
- target_multiple = self.config.pad_head_dim_to_multiple_of
- target_head_dim = target_multiple * ((self.head_dim + target_multiple - 1) // target_multiple)
- self.head_dim_padding = target_head_dim - self.head_dim
- else:
- self.head_dim_padding = 0
- def forward(
- self,
- hidden_states: torch.Tensor,
- position_embeddings: tuple[torch.Tensor, torch.Tensor] | None = None,
- attention_mask: torch.Tensor | None = None,
- past_key_values: Cache | None = None,
- key_value_states: torch.Tensor | None = None,
- **kwargs: Unpack[FlashAttentionKwargs],
- ) -> tuple[torch.Tensor, torch.Tensor | None, tuple[torch.Tensor] | None]:
- bsz, q_len = hidden_states.shape[:-1]
- query_states = (
- self.q_proj(hidden_states).view(bsz, q_len, self.config.num_key_value_heads, self.head_dim).transpose(1, 2)
- )
- is_cross_attention = key_value_states is not None
- if past_key_values is not None:
- is_updated = past_key_values.is_updated.get(self.layer_idx)
- if is_cross_attention:
- # after the first generated id, we can subsequently re-use all key/value_states from cache
- past_key_values.is_updated[self.layer_idx] = True
- past_key_values = past_key_values.cross_attention_cache
- else:
- past_key_values = past_key_values.self_attention_cache
- # use key_value_states if cross attention
- current_states = key_value_states if key_value_states is not None else hidden_states
- if is_cross_attention and past_key_values and is_updated:
- key_states = past_key_values.layers[self.layer_idx].keys
- value_states = past_key_values.layers[self.layer_idx].values
- else:
- key_states = (
- self.k_proj(current_states)
- .view(bsz, -1, self.config.num_key_value_heads, self.head_dim)
- .transpose(1, 2)
- )
- value_states = (
- self.v_proj(current_states)
- .view(bsz, -1, self.config.num_key_value_heads, self.head_dim)
- .transpose(1, 2)
- )
- if is_cross_attention and past_key_values is not None:
- key_states, value_states = past_key_values.update(key_states, value_states, self.layer_idx)
- if not is_cross_attention:
- cos, sin = position_embeddings
- query_states, key_states = apply_rotary_pos_emb(query_states, key_states, cos, sin)
- if past_key_values is not None:
- key_states, value_states = past_key_values.update(key_states, value_states, self.layer_idx)
- attention_interface: Callable = ALL_ATTENTION_FUNCTIONS.get_interface(
- self.config._attn_implementation, eager_attention_forward
- )
- is_causal = self.is_causal and attention_mask is None and q_len > 1
- if self.head_dim_padding > 0:
- query_states = torch.nn.functional.pad(query_states, (0, self.head_dim_padding))
- key_states = torch.nn.functional.pad(key_states, (0, self.head_dim_padding))
- value_states = torch.nn.functional.pad(value_states, (0, self.head_dim_padding))
- attn_output, attn_weights = attention_interface(
- self,
- query_states,
- key_states,
- value_states,
- attention_mask,
- dropout=0.0 if not self.training else self.attention_dropout,
- scaling=self.scaling,
- is_causal=is_causal,
- **kwargs,
- )
- if self.head_dim_padding > 0:
- attn_output = attn_output[..., : -self.head_dim_padding]
- attn_output = attn_output.reshape(bsz, q_len, -1).contiguous()
- attn_output = self.o_proj(attn_output)
- return attn_output, attn_weights
- class MoonshineEncoderLayer(GradientCheckpointingLayer):
- def __init__(self, config: MoonshineConfig, layer_idx: int):
- super().__init__()
- self.hidden_size = config.hidden_size
- self.self_attn = MoonshineAttention(
- config=config,
- layer_idx=layer_idx,
- is_causal=False,
- num_attention_heads=config.encoder_num_attention_heads,
- num_key_value_heads=config.encoder_num_key_value_heads,
- )
- self.mlp = MoonshineEncoderMLP(config, config.encoder_hidden_act)
- self.input_layernorm = nn.LayerNorm(config.hidden_size, bias=False)
- self.post_attention_layernorm = nn.LayerNorm(config.hidden_size, bias=False)
- def forward(
- self,
- hidden_states: torch.Tensor,
- attention_mask: torch.Tensor | None = None,
- position_ids: torch.LongTensor | None = None,
- past_key_values: Cache | None = None,
- use_cache: bool | None = False,
- position_embeddings: tuple[torch.Tensor, torch.Tensor] | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> torch.Tensor:
- residual = hidden_states
- hidden_states = self.input_layernorm(hidden_states)
- # Self Attention
- hidden_states, _ = self.self_attn(
- hidden_states=hidden_states,
- attention_mask=attention_mask,
- position_ids=position_ids,
- past_key_values=past_key_values,
- use_cache=use_cache,
- position_embeddings=position_embeddings,
- **kwargs,
- )
- hidden_states = residual + hidden_states
- # Fully Connected
- residual = hidden_states
- hidden_states = self.post_attention_layernorm(hidden_states)
- hidden_states = self.mlp(hidden_states)
- hidden_states = residual + hidden_states
- return hidden_states
- class MoonshineDecoderLayer(GradientCheckpointingLayer):
- def __init__(self, config: MoonshineConfig, layer_idx: int | None = None):
- super().__init__()
- self.hidden_size = config.hidden_size
- self.self_attn = MoonshineAttention(
- config=config,
- layer_idx=layer_idx,
- is_causal=True,
- num_attention_heads=config.num_attention_heads,
- num_key_value_heads=config.num_key_value_heads,
- )
- self.encoder_attn = MoonshineAttention(
- config=config,
- layer_idx=layer_idx,
- is_causal=False,
- num_attention_heads=config.num_attention_heads,
- num_key_value_heads=config.num_key_value_heads,
- )
- self.mlp = MoonshineDecoderMLP(config, config.hidden_act)
- self.input_layernorm = nn.LayerNorm(config.hidden_size, bias=False)
- self.post_attention_layernorm = nn.LayerNorm(config.hidden_size, bias=False)
- self.final_layernorm = nn.LayerNorm(config.hidden_size, bias=False)
- def forward(
- self,
- hidden_states: torch.Tensor,
- attention_mask: torch.Tensor | None = None,
- encoder_hidden_states: torch.Tensor | None = None,
- encoder_attention_mask: torch.Tensor | None = None,
- position_ids: torch.LongTensor | None = None,
- encoder_position_ids: torch.LongTensor | None = None,
- past_key_values: Cache | None = None,
- use_cache: bool | None = False,
- position_embeddings: tuple[torch.Tensor, torch.Tensor] | None = None,
- encoder_position_embeddings: tuple[torch.Tensor, torch.Tensor] | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple[torch.FloatTensor, tuple[torch.FloatTensor, torch.FloatTensor] | None]:
- residual = hidden_states
- hidden_states = self.input_layernorm(hidden_states)
- hidden_states, _ = self.self_attn(
- hidden_states=hidden_states,
- attention_mask=attention_mask,
- position_ids=position_ids,
- past_key_values=past_key_values,
- use_cache=use_cache,
- position_embeddings=position_embeddings,
- **kwargs,
- )
- hidden_states = residual + hidden_states
- if encoder_hidden_states is not None:
- residual = hidden_states
- hidden_states = self.post_attention_layernorm(hidden_states)
- hidden_states, _ = self.encoder_attn(
- hidden_states=hidden_states,
- key_value_states=encoder_hidden_states,
- attention_mask=encoder_attention_mask,
- past_key_values=past_key_values,
- use_cache=use_cache,
- )
- hidden_states = residual + hidden_states
- residual = hidden_states
- hidden_states = self.final_layernorm(hidden_states)
- hidden_states = self.mlp(hidden_states)
- hidden_states = residual + hidden_states
- return hidden_states
- @auto_docstring
- class MoonshinePreTrainedModel(PreTrainedModel):
- config: MoonshineConfig
- base_model_prefix = "model"
- main_input_name = "input_values"
- input_modalities = "audio"
- supports_gradient_checkpointing = True
- _no_split_modules = ["MoonshineEncoderLayer", "MoonshineDecoderLayer"]
- _supports_flash_attn = True
- _supports_sdpa = True
- _can_compile_fullgraph = True
- # TODO arthur, how do we separate when it cross / self coming from different layer?
- def _get_feat_extract_output_lengths(self, input_lengths: torch.LongTensor):
- """
- Computes the output length of the convolutional layers
- """
- output_conv1_length = int((input_lengths - 127) / 64 + 1)
- output_conv2_length = int((output_conv1_length - 7) / 3 + 1)
- output_conv3_length = int((output_conv2_length - 3) / 2 + 1)
- return output_conv3_length
- class MoonshineEncoder(MoonshinePreTrainedModel):
- """
- Transformer encoder consisting of *config.num_hidden_layers* layers. Each layer is a [`MoonshineEncoderLayer`]
- Args:
- config: MoonshineConfig
- """
- main_input_name = "input_values"
- _can_record_outputs = {
- "attentions": MoonshineAttention,
- "hidden_states": MoonshineEncoderLayer,
- }
- def __init__(self, config: MoonshineConfig):
- super().__init__(config)
- self.config = config
- embed_dim = config.hidden_size
- self.conv1 = nn.Conv1d(1, embed_dim, kernel_size=127, stride=64, bias=False)
- self.conv2 = nn.Conv1d(embed_dim, 2 * embed_dim, kernel_size=7, stride=3)
- self.conv3 = nn.Conv1d(2 * embed_dim, embed_dim, kernel_size=3, stride=2)
- self.groupnorm = nn.GroupNorm(num_groups=1, num_channels=embed_dim, eps=1e-5)
- self.layers = nn.ModuleList(
- [MoonshineEncoderLayer(config, idx) for idx in range(config.encoder_num_hidden_layers)]
- )
- self.layer_norm = nn.LayerNorm(embed_dim, bias=False)
- self.rotary_emb = MoonshineRotaryEmbedding(config=config)
- self.gradient_checkpointing = False
- self.post_init()
- def get_input_embeddings(self) -> nn.Module:
- return self.conv1
- def set_input_embeddings(self, value: nn.Module):
- self.conv1 = value
- @merge_with_config_defaults
- @capture_outputs
- def forward(
- self,
- input_values: torch.FloatTensor,
- attention_mask: torch.Tensor | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | BaseModelOutputWithPast:
- r"""
- Args:
- input_values (`torch.FloatTensor` of shape `(batch_size, audio_length)`):
- Float values of the raw speech waveform. Raw speech waveform can be
- obtained by loading a `.flac` or `.wav` audio file into an array of type `list[float]`, a
- `numpy.ndarray` or a `torch.Tensor`, *e.g.* via the torchcodec library (`pip install torchcodec`) or
- the soundfile library (`pip install soundfile`). To prepare the array into
- `input_values`, the [`AutoFeatureExtractor`] should be used for padding
- and conversion into a tensor of type `torch.FloatTensor`.
- attention_mask (`torch.Tensor` of shape `(batch_size, sequence_length)`, *optional*):
- Mask to avoid performing attention on padding indices in `input_values`. Mask values selected in `[0, 1]`:
- - 1 for tokens that are **not masked**,
- - 0 for tokens that are **masked**.
- [What are attention masks?](../glossary#attention-mask)
- """
- input_values = input_values.unsqueeze(1)
- hidden_states = nn.functional.tanh(self.conv1(input_values))
- hidden_states = self.groupnorm(hidden_states)
- hidden_states = nn.functional.gelu(self.conv2(hidden_states))
- hidden_states = nn.functional.gelu(self.conv3(hidden_states))
- hidden_states = hidden_states.permute(0, 2, 1)
- # attention mask downsampling
- output_attention_mask = None
- if attention_mask is not None:
- mask_len = self._get_feat_extract_output_lengths(attention_mask.shape[-1])
- downsample_stride = 64 * 3 * 2 # conv strides
- attention_mask = attention_mask[..., ::downsample_stride][..., :mask_len]
- output_attention_mask = attention_mask
- attention_mask = create_bidirectional_mask(
- config=self.config,
- inputs_embeds=hidden_states,
- attention_mask=attention_mask,
- encoder_hidden_states=hidden_states,
- )
- position_ids = torch.arange(0, hidden_states.shape[1], device=hidden_states.device).unsqueeze(0)
- position_embeddings = self.rotary_emb(hidden_states, position_ids=position_ids)
- for encoder_layer in self.layers:
- hidden_states = encoder_layer(
- hidden_states,
- attention_mask=attention_mask,
- position_ids=position_ids,
- position_embeddings=position_embeddings,
- **kwargs,
- )
- hidden_states = self.layer_norm(hidden_states)
- return MoonshineEncoderModelOutput(
- last_hidden_state=hidden_states,
- attention_mask=output_attention_mask.int() if output_attention_mask is not None else None,
- )
- @auto_docstring
- class MoonshineDecoder(MoonshinePreTrainedModel):
- main_input_name = "input_ids"
- _can_record_outputs = {
- "attentions": OutputRecorder(MoonshineAttention, index=1, layer_name="self_attn"),
- "hidden_states": MoonshineDecoderLayer,
- "cross_attentions": OutputRecorder(MoonshineAttention, index=1, layer_name="encoder_attn"),
- }
- def __init__(self, config: MoonshineConfig):
- super().__init__(config)
- self.padding_idx = config.pad_token_id
- self.vocab_size = config.vocab_size
- self.embed_tokens = nn.Embedding(config.vocab_size, config.hidden_size, self.padding_idx)
- self.layers = nn.ModuleList([MoonshineDecoderLayer(config, idx) for idx in range(config.num_hidden_layers)])
- self.norm = nn.LayerNorm(config.hidden_size, bias=False)
- self.rotary_emb = MoonshineRotaryEmbedding(config=config)
- self.gradient_checkpointing = False
- # Initialize weights and apply final processing
- self.post_init()
- @merge_with_config_defaults
- @capture_outputs
- def forward(
- self,
- input_ids: torch.LongTensor | None = None,
- attention_mask: torch.Tensor | None = None,
- position_ids: torch.LongTensor | None = None,
- past_key_values: Cache | None = None,
- inputs_embeds: torch.FloatTensor | None = None,
- use_cache: bool | None = None,
- encoder_hidden_states: torch.FloatTensor | None = None,
- encoder_attention_mask: torch.Tensor | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> tuple | BaseModelOutputWithPast:
- r"""
- encoder_hidden_states (`torch.FloatTensor` of shape `(batch_size, encoder_sequence_length, hidden_size)`, *optional*):
- Sequence of hidden-states at the output of the last layer of the encoder. Used in the cross-attention
- of the decoder.
- encoder_attention_mask (`torch.Tensor` of shape `(batch_size, sequence_length)`, *optional*):
- Mask to avoid performing attention on padding indices in `encoder_hidden_states`. Mask values selected in `[0, 1]`:
- - 1 for tokens that are **not masked**,
- - 0 for tokens that are **masked**.
- [What are attention masks?](../glossary#attention-mask)
- """
- if (input_ids is None) ^ (inputs_embeds is not None):
- raise ValueError("You must specify exactly one of input_ids or inputs_embeds")
- if inputs_embeds is None:
- inputs_embeds = self.embed_tokens(input_ids)
- if use_cache and past_key_values is None:
- past_key_values = EncoderDecoderCache(DynamicCache(config=self.config), DynamicCache(config=self.config))
- if position_ids is None:
- past_seen_tokens = past_key_values.get_seq_length() if past_key_values is not None else 0
- position_ids = torch.arange(inputs_embeds.shape[1], device=inputs_embeds.device) + past_seen_tokens
- position_ids = position_ids.unsqueeze(0)
- causal_mask = create_causal_mask(
- config=self.config,
- inputs_embeds=inputs_embeds,
- attention_mask=attention_mask,
- past_key_values=past_key_values,
- position_ids=position_ids,
- )
- encoder_attention_mask = create_bidirectional_mask(
- config=self.config,
- inputs_embeds=inputs_embeds,
- attention_mask=encoder_attention_mask,
- encoder_hidden_states=encoder_hidden_states,
- )
- hidden_states = inputs_embeds
- position_embeddings = self.rotary_emb(hidden_states, position_ids=position_ids)
- for decoder_layer in self.layers:
- hidden_states = decoder_layer(
- hidden_states,
- causal_mask,
- encoder_hidden_states, # as a positional argument for gradient checkpointing
- encoder_attention_mask=encoder_attention_mask,
- position_ids=position_ids,
- past_key_values=past_key_values,
- use_cache=use_cache,
- position_embeddings=position_embeddings,
- **kwargs,
- )
- hidden_states = self.norm(hidden_states)
- return BaseModelOutputWithPastAndCrossAttentions(
- last_hidden_state=hidden_states,
- past_key_values=past_key_values if use_cache else None,
- )
- @auto_docstring
- class MoonshineModel(MoonshinePreTrainedModel):
- def __init__(self, config: MoonshineConfig):
- super().__init__(config)
- self.encoder = MoonshineEncoder(config)
- self.decoder = MoonshineDecoder(config)
- # Initialize weights and apply final processing
- self.post_init()
- def get_input_embeddings(self):
- return self.decoder.embed_tokens
- def set_input_embeddings(self, value):
- self.decoder.embed_tokens = value
- def freeze_encoder(self):
- """
- Calling this function will disable the gradient computation for the Moonshine encoder so that its parameters will
- not be updated during training.
- """
- self.encoder._freeze_parameters()
- def _mask_input_features(self):
- """
- Masks extracted features along time axis and/or along feature axis according to
- [SpecAugment](https://huggingface.co/papers/1904.08779).
- """
- raise AttributeError("Not needed for Moonshine")
- @can_return_tuple
- @auto_docstring
- def forward(
- self,
- input_values: torch.FloatTensor | None = None,
- attention_mask: torch.LongTensor | None = None,
- decoder_input_ids: torch.LongTensor | None = None,
- decoder_attention_mask: torch.LongTensor | None = None,
- encoder_outputs: tuple[tuple[torch.FloatTensor]] | None = None,
- past_key_values: EncoderDecoderCache | None = None,
- decoder_inputs_embeds: tuple[torch.FloatTensor] | None = None,
- decoder_position_ids: tuple[torch.LongTensor] | None = None,
- use_cache: bool | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> Seq2SeqModelOutput:
- r"""
- input_values (`torch.FloatTensor` of shape `(batch_size, audio_length)`):
- Float values of the raw speech waveform. Raw speech waveform can be
- obtained by loading a `.flac` or `.wav` audio file into an array of type `list[float]`, a
- `numpy.ndarray` or a `torch.Tensor`, *e.g.* via the torchcodec library (`pip install torchcodec`) or
- the soundfile library (`pip install soundfile`). To prepare the array into
- `input_values`, the [`AutoFeatureExtractor`] should be used for padding
- and conversion into a tensor of type `torch.FloatTensor`.
- decoder_position_ids (`torch.LongTensor` of shape `(batch_size, target_sequence_length)`):
- Indices of positions of each input sequence tokens in the position embeddings.
- Used to calculate the position embeddings up to `config.decoder_config.max_position_embeddings`
- Example:
- ```python
- >>> import torch
- >>> from transformers import AutoFeatureExtractor, MoonshineModel
- >>> from datasets import load_dataset
- >>> model = MoonshineModel.from_pretrained("UsefulSensors/moonshine-tiny")
- >>> feature_extractor = AutoFeatureExtractor.from_pretrained("UsefulSensors/moonshine-tiny")
- >>> ds = load_dataset("hf-internal-testing/librispeech_asr_dummy", "clean", split="validation")
- >>> inputs = feature_extractor(ds[0]["audio"]["array"], return_tensors="pt")
- >>> input_values = inputs.input_values
- >>> decoder_input_ids = torch.tensor([[1, 1]]) * model.config.decoder_start_token_id
- >>> last_hidden_state = model(input_values, decoder_input_ids=decoder_input_ids).last_hidden_state
- >>> list(last_hidden_state.shape)
- [1, 2, 288]
- ```
- """
- if encoder_outputs is None:
- encoder_outputs: BaseModelOutput = self.encoder(input_values, attention_mask=attention_mask, **kwargs)
- decoder_outputs: BaseModelOutputWithPastAndCrossAttentions = self.decoder(
- input_ids=decoder_input_ids,
- attention_mask=decoder_attention_mask,
- encoder_hidden_states=encoder_outputs.last_hidden_state,
- encoder_attention_mask=encoder_outputs.attention_mask,
- past_key_values=past_key_values,
- inputs_embeds=decoder_inputs_embeds,
- position_ids=decoder_position_ids,
- use_cache=use_cache,
- **kwargs,
- )
- return Seq2SeqModelOutput(
- last_hidden_state=decoder_outputs.last_hidden_state,
- past_key_values=decoder_outputs.past_key_values,
- decoder_hidden_states=decoder_outputs.hidden_states,
- decoder_attentions=decoder_outputs.attentions,
- cross_attentions=decoder_outputs.cross_attentions,
- encoder_last_hidden_state=encoder_outputs.last_hidden_state,
- encoder_hidden_states=encoder_outputs.hidden_states,
- encoder_attentions=encoder_outputs.attentions,
- )
- def shift_tokens_right(input_ids: torch.Tensor, pad_token_id: int, decoder_start_token_id: int):
- """
- Shift input ids one token to the right.
- """
- shifted_input_ids = input_ids.new_zeros(input_ids.shape)
- shifted_input_ids[:, 1:] = input_ids[:, :-1].clone()
- shifted_input_ids[:, 0] = decoder_start_token_id
- if pad_token_id is None:
- raise ValueError("self.model.config.pad_token_id has to be defined.")
- # replace possible -100 values in labels by `pad_token_id`
- shifted_input_ids.masked_fill_(shifted_input_ids == -100, pad_token_id)
- return shifted_input_ids
- @auto_docstring(
- custom_intro="""
- The Moonshine Model with a language modeling head. Can be used for automatic speech recognition.
- """
- )
- class MoonshineForConditionalGeneration(MoonshinePreTrainedModel, GenerationMixin):
- _tied_weights_keys = {"proj_out.weight": "model.decoder.embed_tokens.weight"}
- def __init__(self, config: MoonshineConfig):
- super().__init__(config)
- self.model = MoonshineModel(config)
- self.proj_out = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
- # Initialize weights and apply final processing
- self.post_init()
- def get_output_embeddings(self):
- return self.proj_out
- def set_output_embeddings(self, new_embeddings):
- self.proj_out = new_embeddings
- def get_input_embeddings(self) -> nn.Module:
- return self.model.get_input_embeddings()
- @can_return_tuple
- @auto_docstring
- def forward(
- self,
- input_values: torch.FloatTensor | None = None,
- attention_mask: torch.LongTensor | None = None,
- decoder_input_ids: torch.LongTensor | None = None,
- decoder_attention_mask: torch.LongTensor | None = None,
- encoder_outputs: tuple[tuple[torch.FloatTensor]] | None = None,
- past_key_values: EncoderDecoderCache | None = None,
- decoder_inputs_embeds: tuple[torch.FloatTensor] | None = None,
- decoder_position_ids: tuple[torch.LongTensor] | None = None,
- use_cache: bool | None = None,
- labels: torch.LongTensor | None = None,
- **kwargs: Unpack[TransformersKwargs],
- ) -> Seq2SeqLMOutput:
- r"""
- input_values (`torch.FloatTensor` of shape `(batch_size, audio_length)`):
- Float values of the raw speech waveform. Raw speech waveform can be
- obtained by loading a `.flac` or `.wav` audio file into an array of type `list[float]`, a
- `numpy.ndarray` or a `torch.Tensor`, *e.g.* via the torchcodec library (`pip install torchcodec`) or
- the soundfile library (`pip install soundfile`). To prepare the array into
- `input_values`, the [`AutoFeatureExtractor`] should be used for padding
- and conversion into a tensor of type `torch.FloatTensor`.
- decoder_position_ids (`torch.LongTensor` of shape `(batch_size, target_sequence_length)`):
- Indices of positions of each input sequence tokens in the position embeddings.
- Used to calculate the position embeddings up to `config.decoder_config.max_position_embeddings`
- Example:
- ```python
- >>> import torch
- >>> from transformers import AutoProcessor, MoonshineForConditionalGeneration
- >>> from datasets import load_dataset
- >>> processor = AutoProcessor.from_pretrained("UsefulSensors/moonshine-tiny")
- >>> model = MoonshineForConditionalGeneration.from_pretrained("UsefulSensors/moonshine-tiny")
- >>> ds = load_dataset("hf-internal-testing/librispeech_asr_dummy", "clean", split="validation")
- >>> inputs = processor(ds[0]["audio"]["array"], return_tensors="pt")
- >>> input_values = inputs.input_values
- >>> generated_ids = model.generate(input_values, max_new_tokens=100)
- >>> transcription = processor.batch_decode(generated_ids, skip_special_tokens=True)[0]
- >>> transcription
- 'Mr. Quilter is the apostle of the middle classes, and we are glad to welcome his gospel.'
- ```"""
- if labels is not None:
- if decoder_input_ids is None and decoder_inputs_embeds is None:
- decoder_input_ids = shift_tokens_right(
- labels, self.config.pad_token_id, self.config.decoder_start_token_id
- )
- outputs: Seq2SeqModelOutput = self.model(
- input_values,
- attention_mask=attention_mask,
- decoder_input_ids=decoder_input_ids,
- encoder_outputs=encoder_outputs,
- decoder_attention_mask=decoder_attention_mask,
- past_key_values=past_key_values,
- decoder_inputs_embeds=decoder_inputs_embeds,
- decoder_position_ids=decoder_position_ids,
- use_cache=use_cache,
- **kwargs,
- )
- logits = self.proj_out(outputs.last_hidden_state)
- loss = None
- if labels is not None:
- loss = self.loss_function(logits=logits, labels=labels, vocab_size=self.config.vocab_size)
- return Seq2SeqLMOutput(
- loss=loss,
- logits=logits,
- past_key_values=outputs.past_key_values,
- decoder_hidden_states=outputs.decoder_hidden_states,
- decoder_attentions=outputs.decoder_attentions,
- cross_attentions=outputs.cross_attentions,
- encoder_last_hidden_state=outputs.encoder_last_hidden_state,
- encoder_hidden_states=outputs.encoder_hidden_states,
- encoder_attentions=outputs.encoder_attentions,
- )
- __all__ = ["MoonshineModel", "MoonshinePreTrainedModel", "MoonshineForConditionalGeneration"]
|