| from typing import Optional, Tuple, List |
| import flax.linen as nn |
| import jax |
| import jax.numpy as jnp |
| from jax import lax |
| from flax.core.frozen_dict import FrozenDict, freeze, unfreeze |
| from flax.linen.attention import dot_product_attention_weights |
| from flax.traverse_util import flatten_dict, unflatten_dict |
| from flax.linen import combine_masks, make_causal_mask |
| from transformers.models.gpt2.modeling_flax_gpt2 import ( |
| FlaxConv1D, |
| FlaxGPT2MLP, |
| FlaxGPT2Block, |
| GPT2Config, |
| FlaxBaseModelOutputWithPastAndCrossAttentions, |
| FlaxCausalLMOutputWithCrossAttentions, |
| ) |
| from transformers.modeling_flax_utils import ACT2FN, FlaxPreTrainedModel |
| from typing import Callable, Literal |
| def print_model(flax_params, file=None): |
| flat_params = flatten_dict(flax_params) |
| for path, value in flat_params.items(): |
| name = "/".join(path) |
| line = f"{name} {value.shape}" |
| if file: |
| print(line, file=file) |
| else: |
| print(line) |
| class LMCFlaxGPT2Attention(nn.Module): |
| config: GPT2Config |
| dtype: jnp.dtype = jnp.float32 |
| causal: bool = True |
| is_cross_attention: bool = False |
| def setup(self): |
| config = self.config |
| self.embed_dim = config.hidden_size |
| self.num_heads = config.att_num_heads |
| self.head_dim = self.embed_dim // self.num_heads |
| if self.is_cross_attention: |
| self.c_attn = FlaxConv1D(2 * self.embed_dim, dtype=self.dtype) |
| self.q_attn = FlaxConv1D(self.embed_dim, dtype=self.dtype) |
| else: |
| self.c_attn = FlaxConv1D(3 * self.embed_dim, dtype=self.dtype) |
| self.c_proj = FlaxConv1D(self.embed_dim, dtype=self.dtype) |
| self.resid_dropout = nn.Dropout(rate=config.resid_pdrop) |
| if self.causal: |
| self.causal_mask = make_causal_mask( |
| jnp.ones((1, config.max_position_embeddings), dtype="bool"), dtype="bool" |
| ) |
| def _split_heads(self, hidden_states): |
| return hidden_states.reshape(hidden_states.shape[:2] + (self.num_heads, self.head_dim)) |
| def _merge_heads(self, hidden_states): |
| return hidden_states.reshape(hidden_states.shape[:2] + (self.embed_dim,)) |
| @nn.compact |
| def _concatenate_to_cache(self, key, value, query, attention_mask): |
| """ |
| This function takes projected key, value states from a single input token and concatenates the states to cached |
| states from previous steps. This function is slightly adapted from the official Flax repository: |
| https://github.com/google/flax/blob/491ce18759622506588784b4fca0e4bf05f8c8cd/flax/linen/attention.py#L252 |
| """ |
| |
| is_initialized = self.has_variable("cache", "cached_key") |
| cached_key = self.variable("cache", "cached_key", jnp.zeros, key.shape, key.dtype) |
| cached_value = self.variable("cache", "cached_value", jnp.zeros, value.shape, value.dtype) |
| cache_index = self.variable("cache", "cache_index", lambda: jnp.array(0, dtype=jnp.int32)) |
| if is_initialized: |
| *batch_dims, max_length, num_heads, depth_per_head = cached_key.value.shape |
| |
| cur_index = cache_index.value |
| indices = (0,) * len(batch_dims) + (cur_index, 0, 0) |
| key = lax.dynamic_update_slice(cached_key.value, key, indices) |
| value = lax.dynamic_update_slice(cached_value.value, value, indices) |
| cached_key.value = key |
| cached_value.value = value |
| num_updated_cache_vectors = query.shape[1] |
| cache_index.value = cache_index.value + num_updated_cache_vectors |
| |
| pad_mask = jnp.broadcast_to( |
| jnp.arange(max_length) < cur_index + num_updated_cache_vectors, |
| tuple(batch_dims) + (1, num_updated_cache_vectors, max_length), |
| ) |
| attention_mask = combine_masks(pad_mask, attention_mask) |
| return key, value, attention_mask |
|
|
| def __call__( |
| self, |
| hidden_states, |
| key_value_states: Optional[jnp.ndarray] = None, |
| attention_mask=None, |
| deterministic: bool = True, |
| init_cache: bool = False, |
| output_attentions: bool = False, |
| ): |
| |
| |
| is_cross_attention = key_value_states is not None |
| batch_size = hidden_states.shape[0] |
| if not is_cross_attention: |
| qkv_out = self.c_attn(hidden_states) |
| query, key, value = jnp.split(qkv_out, 3, axis=2) |
| else: |
| q_out = self.q_attn(hidden_states) |
| (query,) = jnp.split(q_out, 1, axis=2) |
| kv_out = self.c_attn(key_value_states) |
| key, value = jnp.split(kv_out, 2, axis=2) |
| query = self._split_heads(query) |
| key = self._split_heads(key) |
| value = self._split_heads(value) |
| query_length, key_length = query.shape[1], key.shape[1] |
| if self.causal: |
| if self.has_variable("cache", "cached_key"): |
| mask_shift = self.variables["cache"]["cache_index"] |
| max_decoder_length = self.variables["cache"]["cached_key"].shape[1] |
| causal_mask = lax.dynamic_slice( |
| self.causal_mask, (0, 0, mask_shift, 0), (1, 1, query_length, max_decoder_length) |
| ) |
| else: |
| causal_mask = self.causal_mask[:, :, :query_length, :key_length] |
| causal_mask = jnp.broadcast_to(causal_mask, (batch_size,) + causal_mask.shape[1:]) |
| |
| if attention_mask is not None and self.causal: |
| attention_mask = jnp.broadcast_to(jnp.expand_dims(attention_mask, axis=(-3, -2)), causal_mask.shape) |
| attention_mask = combine_masks(attention_mask, causal_mask) |
| elif self.causal: |
| attention_mask = causal_mask |
| elif attention_mask is not None: |
| attention_mask = jnp.expand_dims(attention_mask, axis=(-3, -2)) |
| dropout_rng = None |
| if not deterministic and self.config.attn_pdrop > 0.0: |
| dropout_rng = self.make_rng("dropout") |
| |
| |
| if self.causal and (self.has_variable("cache", "cached_key") or init_cache): |
| key, value, attention_mask = self._concatenate_to_cache(key, value, query, attention_mask) |
| |
| if attention_mask is not None: |
| attention_bias = lax.select( |
| attention_mask > 0, |
| jnp.full(attention_mask.shape, 0.0).astype(self.dtype), |
| jnp.full(attention_mask.shape, jnp.finfo(self.dtype).min).astype(self.dtype), |
| ) |
| else: |
| attention_bias = None |
| |
| attn_weights = dot_product_attention_weights( |
| query, key, |
| bias=attention_bias, |
| dropout_rng=dropout_rng, |
| dropout_rate=self.config.attn_pdrop, |
| deterministic=deterministic, |
| dtype=self.dtype, |
| precision=None, |
| ) |
| attn_output = jnp.einsum("...hqk,...khd->...qhd", attn_weights, value) |
| attn_output = self._merge_heads(attn_output) |
| attn_output = self.c_proj(attn_output) |
| attn_output = self.resid_dropout(attn_output, deterministic=deterministic) |
| outputs = (attn_output, attn_weights) if output_attentions else (attn_output,) |
| return outputs |
| class LMCFlaxGPT2Block(nn.Module): |
| config: GPT2Config |
| dtype: jnp.dtype = jnp.float32 |
| def setup(self): |
| hidden_size = self.config.hidden_size |
| inner_dim = self.config.n_inner if self.config.n_inner is not None else 4 * hidden_size |
| self.ln_1 = nn.LayerNorm(epsilon=self.config.layer_norm_epsilon, dtype=self.dtype) |
| self.attn = LMCFlaxGPT2Attention(self.config, dtype=self.dtype) |
| self.ln_2 = nn.LayerNorm(epsilon=self.config.layer_norm_epsilon, dtype=self.dtype) |
| if self.config.add_cross_attention: |
| self.crossattention = LMCFlaxGPT2Attention( |
| config=self.config, dtype=self.dtype, causal=False, is_cross_attention=True |
| ) |
| self.ln_cross_attn = nn.LayerNorm(epsilon=self.config.layer_norm_epsilon, dtype=self.dtype) |
| self.mlp = FlaxGPT2MLP(self.config, inner_dim, dtype=self.dtype) |
|
|
| def __call__( |
| self, |
| hidden_states, |
| attention_mask=None, |
| encoder_hidden_states: Optional[jnp.ndarray] = None, |
| encoder_attention_mask: Optional[jnp.ndarray] = None, |
| deterministic: bool = True, |
| init_cache: bool = False, |
| output_attentions: bool = False, |
| ): |
| residual = hidden_states |
| hidden_states = self.ln_1(hidden_states) |
| attn_outputs = self.attn( |
| hidden_states, |
| attention_mask=attention_mask, |
| deterministic=deterministic, |
| init_cache=init_cache, |
| output_attentions=output_attentions, |
| ) |
| |
| attn_output = attn_outputs[0] |
| outputs = attn_outputs[1:] |
| |
| hidden_states = attn_output + residual |
| |
| if encoder_hidden_states is not None: |
| |
| if not hasattr(self, "crossattention"): |
| raise ValueError( |
| f"If `encoder_hidden_states` are passed, {self} has to be instantiated with " |
| "cross-attention layers by setting `config.add_cross_attention=True`" |
| ) |
| residual = hidden_states |
| hidden_states = self.ln_cross_attn(hidden_states) |
| cross_attn_outputs = self.crossattention( |
| hidden_states, |
| key_value_states=encoder_hidden_states, |
| attention_mask=encoder_attention_mask, |
| deterministic=deterministic, |
| output_attentions=output_attentions, |
| ) |
| attn_output = cross_attn_outputs[0] |
| |
| hidden_states = residual + attn_output |
| outputs = outputs + cross_attn_outputs[1:] |
| residual = hidden_states |
| hidden_states = self.ln_2(hidden_states) |
| feed_forward_hidden_states = self.mlp(hidden_states, deterministic=deterministic) |
| |
| hidden_states = residual + feed_forward_hidden_states |
| outputs = (hidden_states,) + outputs |
| return outputs |
|
|
|
|
|
|
| class LMCFlaxGPT2PreTrainedModel(FlaxPreTrainedModel): |
| """ |
| An abstract class to handle weights initialization and a simple interface for downloading and loading pretrained |
| models. |
| """ |
|
|
| config_class = GPT2Config |
| base_model_prefix = "transformer" |
| module_class: nn.Module = None |
|
|
| def __init__( |
| self, |
| config: GPT2Config, |
| input_shape: Tuple = (1, 1), |
| seed: int = 0, |
| dtype: jnp.dtype = jnp.float32, |
| _do_init: bool = True, |
| **kwargs, |
| ): |
| module = self.module_class(config=config, dtype=dtype, **kwargs) |
| super().__init__(config, module, input_shape=input_shape, seed=seed, dtype=dtype, _do_init=_do_init) |
|
|
| def init_weights(self, rng: jax.random.PRNGKey, input_shape: Tuple, params: FrozenDict = None) -> FrozenDict: |
| |
| input_ids = jnp.zeros(input_shape, dtype="i4") |
| attention_mask = jnp.ones_like(input_ids) |
| position_ids = jnp.broadcast_to(jnp.arange(jnp.atleast_2d(input_ids).shape[-1]), input_shape) |
| params_rng, dropout_rng = jax.random.split(rng) |
| rngs = {"params": params_rng, "dropout": dropout_rng} |
|
|
| if self.config.add_cross_attention: |
| encoder_hidden_states = jnp.zeros(input_shape + (self.config.n_embd,)) |
| encoder_attention_mask = attention_mask |
| module_init_outputs = self.module.init( |
| rngs, |
| input_ids, |
| attention_mask, |
| position_ids, |
| encoder_hidden_states, |
| encoder_attention_mask, |
| return_dict=False, |
| ) |
| else: |
| module_init_outputs = self.module.init(rngs, input_ids, attention_mask, position_ids, return_dict=False) |
|
|
| random_params = module_init_outputs["params"] |
|
|
| if params is not None: |
| random_params = flatten_dict(unfreeze(random_params)) |
| params = flatten_dict(unfreeze(params)) |
| for missing_key in self._missing_keys: |
| params[missing_key] = random_params[missing_key] |
| self._missing_keys = set() |
| return freeze(unflatten_dict(params)) |
| else: |
| return random_params |
|
|
| def init_cache(self, batch_size, max_length): |
| r""" |
| Args: |
| batch_size (`int`): |
| batch_size used for fast auto-regressive decoding. Defines the batch size of the initialized cache. |
| max_length (`int`): |
| maximum possible length for auto-regressive decoding. Defines the sequence length of the initialized |
| cache. |
| """ |
| |
| input_ids = jnp.ones((batch_size, max_length)) |
| attention_mask = jnp.ones_like(input_ids) |
| position_ids = jnp.broadcast_to(jnp.arange(jnp.atleast_2d(input_ids).shape[-1]), input_ids.shape) |
|
|
| init_variables = self.module.init( |
| jax.random.PRNGKey(0), input_ids, attention_mask, position_ids, return_dict=False, init_cache=True |
| ) |
| return unfreeze(init_variables["cache"]) |
|
|
| def __call__( |
| self, |
| input_ids, |
| attention_mask=None, |
| position_ids=None, |
| encoder_hidden_states: Optional[jnp.ndarray] = None, |
| encoder_attention_mask: Optional[jnp.ndarray] = None, |
| params: Optional[dict] = None, |
| past_key_values: Optional[dict] = None, |
| dropout_rng: jax.random.PRNGKey = None, |
| train: bool = False, |
| output_attentions: Optional[bool] = None, |
| output_hidden_states: Optional[bool] = None, |
| return_dict: Optional[bool] = None, |
| ): |
| output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions |
| output_hidden_states = ( |
| output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states |
| ) |
| return_dict = return_dict if return_dict is not None else self.config.return_dict |
|
|
| if encoder_hidden_states is not None and encoder_attention_mask is None: |
| batch_size, sequence_length = encoder_hidden_states.shape[:2] |
| encoder_attention_mask = jnp.ones((batch_size, sequence_length)) |
|
|
| batch_size, sequence_length = input_ids.shape |
|
|
| if position_ids is None: |
| if past_key_values is not None: |
| raise ValueError("Make sure to provide `position_ids` when passing `past_key_values`.") |
|
|
| position_ids = jnp.broadcast_to(jnp.arange(sequence_length)[None, :], (batch_size, sequence_length)) |
|
|
| if attention_mask is None: |
| attention_mask = jnp.ones((batch_size, sequence_length)) |
|
|
| |
| rngs = {} |
| if dropout_rng is not None: |
| rngs["dropout"] = dropout_rng |
|
|
| inputs = {"params": params or self.params} |
|
|
| |
| if past_key_values: |
| inputs["cache"] = past_key_values |
| mutable = ["cache"] |
| else: |
| mutable = False |
|
|
| outputs = self.module.apply( |
| inputs, |
| jnp.array(input_ids, dtype="i4"), |
| jnp.array(attention_mask, dtype="i4"), |
| jnp.array(position_ids, dtype="i4"), |
| encoder_hidden_states, |
| encoder_attention_mask, |
| not train, |
| False, |
| output_attentions, |
| output_hidden_states, |
| return_dict, |
| rngs=rngs, |
| mutable=mutable, |
| ) |
|
|
| |
| if past_key_values is not None and return_dict: |
| outputs, past_key_values = outputs |
| outputs["past_key_values"] = unfreeze(past_key_values["cache"]) |
| return outputs |
| elif past_key_values is not None and not return_dict: |
| outputs, past_key_values = outputs |
| outputs = outputs[:1] + (unfreeze(past_key_values["cache"]),) + outputs[1:] |
|
|
| return outputs |
|
|
|
|
| class LMCFlaxGPT2BlockCollection(nn.Module): |
| config: GPT2Config |
| dtype: jnp.dtype = jnp.float32 |
|
|
| def setup(self): |
| self.blocks = [ |
| LMCFlaxGPT2Block(self.config, name=str(i), dtype=self.dtype) if i == self.config.att_layer_idx |
| else FlaxGPT2Block(self.config, name=str(i), dtype=self.dtype) |
| for i in range(self.config.num_hidden_layers) |
| ] |
|
|
| def __call__( |
| self, |
| hidden_states, |
| attention_mask=None, |
| encoder_hidden_states: Optional[jnp.ndarray] = None, |
| encoder_attention_mask: Optional[jnp.ndarray] = None, |
| deterministic: bool = True, |
| init_cache: bool = False, |
| output_attentions: bool = False, |
| output_hidden_states: bool = False, |
| return_dict: bool = True, |
| ): |
| all_attentions = () if output_attentions else None |
| all_hidden_states = () if output_hidden_states else None |
| all_cross_attentions = () if (output_attentions and encoder_hidden_states is not None) else None |
|
|
| for block in self.blocks: |
| if output_hidden_states: |
| all_hidden_states += (hidden_states,) |
|
|
| layer_outputs = block( |
| hidden_states, |
| attention_mask, |
| encoder_hidden_states=encoder_hidden_states, |
| encoder_attention_mask=encoder_attention_mask, |
| deterministic=deterministic, |
| init_cache=init_cache, |
| output_attentions=output_attentions, |
| ) |
| hidden_states = layer_outputs[0] |
|
|
| if output_attentions: |
| all_attentions += (layer_outputs[1],) |
|
|
| if encoder_hidden_states is not None: |
| all_cross_attentions += (layer_outputs[2],) |
|
|
| |
| outputs = (hidden_states, all_hidden_states, all_attentions, all_cross_attentions) |
|
|
| return outputs |
|
|
|
|
| class LMCFlaxGPT2Module(nn.Module): |
| config: GPT2Config |
| dtype: jnp.dtype = jnp.float32 |
|
|
| def setup(self): |
| self.embed_dim = self.config.hidden_size |
|
|
| self.wte = nn.Embed( |
| self.config.vocab_size, |
| self.embed_dim, |
| embedding_init=jax.nn.initializers.normal(stddev=self.config.initializer_range), |
| dtype=self.dtype, |
| ) |
| self.wpe = nn.Embed( |
| self.config.max_position_embeddings, |
| self.embed_dim, |
| embedding_init=jax.nn.initializers.normal(stddev=self.config.initializer_range), |
| dtype=self.dtype, |
| ) |
| self.dropout = nn.Dropout(rate=self.config.embd_pdrop) |
| self.h = LMCFlaxGPT2BlockCollection(self.config, dtype=self.dtype) |
| self.ln_f = nn.LayerNorm(epsilon=self.config.layer_norm_epsilon, dtype=self.dtype) |
|
|
| def __call__( |
| self, |
| input_ids, |
| attention_mask, |
| position_ids, |
| encoder_hidden_states: Optional[jnp.ndarray] = None, |
| encoder_attention_mask: Optional[jnp.ndarray] = None, |
| deterministic=True, |
| init_cache: bool = False, |
| output_attentions: bool = False, |
| output_hidden_states: bool = False, |
| return_dict: bool = True, |
| ): |
| input_embeds = self.wte(input_ids.astype("i4")) |
| position_embeds = self.wpe(position_ids.astype("i4")) |
|
|
| hidden_states = input_embeds + position_embeds |
| hidden_states = self.dropout(hidden_states, deterministic=deterministic) |
|
|
| outputs = self.h( |
| hidden_states, |
| attention_mask, |
| encoder_hidden_states, |
| encoder_attention_mask, |
| deterministic=deterministic, |
| init_cache=init_cache, |
| output_attentions=output_attentions, |
| output_hidden_states=output_hidden_states, |
| return_dict=return_dict, |
| ) |
|
|
| hidden_states = outputs[0] |
| hidden_states = self.ln_f(hidden_states) |
|
|
| if output_hidden_states: |
| all_hidden_states = outputs[1] + (hidden_states,) |
| outputs = (hidden_states, all_hidden_states) + outputs[2:] |
| else: |
| outputs = (hidden_states,) + outputs[1:] |
|
|
| if not return_dict: |
| return tuple(v for v in outputs if v is not None) |
|
|
| return FlaxBaseModelOutputWithPastAndCrossAttentions( |
| last_hidden_state=hidden_states, |
| hidden_states=outputs[1], |
| attentions=outputs[2], |
| cross_attentions=outputs[3], |
| ) |
| class LMCFlaxGPT2Model(LMCFlaxGPT2PreTrainedModel): |
| module_class = LMCFlaxGPT2Module |
| class LMCFlaxGPT2LMHeadModule(nn.Module): |
| config: GPT2Config |
| dtype: jnp.dtype = jnp.float32 |
|
|
| def setup(self): |
| self.transformer = LMCFlaxGPT2Module(self.config, dtype=self.dtype) |
| self.lm_head = nn.Dense( |
| self.config.vocab_size, |
| use_bias=False, |
| dtype=self.dtype, |
| kernel_init=jax.nn.initializers.normal(stddev=self.config.initializer_range), |
| ) |
|
|
| def __call__( |
| self, |
| input_ids, |
| attention_mask, |
| position_ids, |
| encoder_hidden_states: Optional[jnp.ndarray] = None, |
| encoder_attention_mask: Optional[jnp.ndarray] = None, |
| deterministic: bool = True, |
| init_cache: bool = False, |
| output_attentions: bool = False, |
| output_hidden_states: bool = False, |
| return_dict: bool = True, |
| ): |
| outputs = self.transformer( |
| input_ids, |
| attention_mask, |
| position_ids, |
| encoder_hidden_states, |
| encoder_attention_mask, |
| deterministic=deterministic, |
| init_cache=init_cache, |
| output_attentions=output_attentions, |
| output_hidden_states=output_hidden_states, |
| return_dict=return_dict, |
| ) |
|
|
| hidden_states = outputs[0] |
|
|
| if self.config.tie_word_embeddings: |
| shared_kernel = self.transformer.variables["params"]["wte"]["embedding"].T |
| lm_logits = self.lm_head.apply({"params": {"kernel": shared_kernel}}, hidden_states) |
| else: |
| lm_logits = self.lm_head(hidden_states) |
|
|
| if not return_dict: |
| return (lm_logits,) + outputs[1:] |
|
|
| return FlaxCausalLMOutputWithCrossAttentions( |
| logits=lm_logits, |
| hidden_states=outputs.hidden_states, |
| attentions=outputs.attentions, |
| cross_attentions=outputs.cross_attentions, |
| ) |
|
|
|
|
|
|
| class LMCFlaxGPT2LMHeadModel(LMCFlaxGPT2PreTrainedModel): |
| module_class = LMCFlaxGPT2LMHeadModule |
|
|
| def prepare_inputs_for_generation(self, input_ids, max_length, attention_mask: Optional[jax.Array] = None): |
| |
| batch_size, seq_length = input_ids.shape |
|
|
| past_key_values = self.init_cache(batch_size, max_length) |
| |
| |
| |
| extended_attention_mask = jnp.ones((batch_size, max_length), dtype="i4") |
| if attention_mask is not None: |
| position_ids = attention_mask.cumsum(axis=-1) - 1 |
| extended_attention_mask = lax.dynamic_update_slice( |
| extended_attention_mask, attention_mask.astype("i4"), (0, 0) |
| ) |
| else: |
| position_ids = jnp.broadcast_to(jnp.arange(seq_length, dtype="i4")[None, :], (batch_size, seq_length)) |
|
|
| return { |
| "past_key_values": past_key_values, |
| "attention_mask": extended_attention_mask, |
| "position_ids": position_ids, |
| } |
|
|
| def update_inputs_for_generation(self, model_outputs, model_kwargs): |
| model_kwargs["past_key_values"] = model_outputs.past_key_values |
| model_kwargs["position_ids"] = model_kwargs["position_ids"][:, -1:] + 1 |
| return model_kwargs |
|
|