Skip to content

Commit

Permalink
Add Gemma attention head size
Browse files Browse the repository at this point in the history
  • Loading branch information
cmeon committed Mar 20, 2024
1 parent 21a2533 commit 7e06683
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions lib/bumblebee/text/gemma.ex
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ defmodule Bumblebee.Text.Gemma do
default: 24576,
doc: "the dimensionality of intermediate layers"
],
attention_head_size: [
default: 256,
doc: "the size of the key, value, and query projection per attention head"
],
num_blocks: [
default: 28,
doc: "the number of Transformer blocks in the model"
Expand Down Expand Up @@ -172,6 +176,7 @@ defmodule Bumblebee.Text.Gemma do
def init_cache(spec, batch_size, max_length, _inputs) do
Layers.Decoder.init_cache(batch_size, max_length,
hidden_size: spec.hidden_size,
attention_head_size: spec.attention_head_size,
decoder_num_attention_heads: spec.num_attention_heads,
decoder_num_blocks: spec.num_blocks
)
Expand Down Expand Up @@ -334,6 +339,7 @@ defmodule Bumblebee.Text.Gemma do
Layers.Transformer.blocks(hidden_state,
attention_mask: attention_mask,
attention_head_mask: attention_head_mask,
attention_head_size: spec.attention_head_size,
cache: cache,
num_blocks: spec.num_blocks,
num_attention_heads: spec.num_attention_heads,
Expand Down Expand Up @@ -419,6 +425,7 @@ defmodule Bumblebee.Text.Gemma do
num_blocks: {"num_hidden_layers", number()},
num_attention_heads: {"num_attention_heads", number()},
num_key_value_heads: {"num_key_value_heads", number()},
attention_head_size: {"head_dim", number()},
intermediate_size: {"intermediate_size", number()},
activation: {"hidden_act", activation()},
use_attention_bias: {"attention_bias", boolean()},
Expand Down

0 comments on commit 7e06683

Please sign in to comment.