Phi3Backbone
classkeras_nlp.models.Phi3Backbone(
vocabulary_size,
num_layers,
hidden_dim,
intermediate_dim,
num_query_heads,
num_key_value_heads,
layer_norm_epsilon=1e-06,
dropout=0.0,
max_sequence_length=4096,
pretraining_sequence_length=4096,
rope_max_wavelength=10000,
rope_scaling_type=None,
rope_scaling_short_factor=None,
rope_scaling_long_factor=None,
dtype=None,
**kwargs
)
Phi-3 core network with hyperparameters.
This network implements a Transformer-based decoder network, Phi-3, as described in "Phi-3 Technical Report". It includes the embedding lookups and transformer layers.
The default constructor gives a fully customizable, randomly initialized
phi-3 model with any number of layers, heads, and embedding
dimensions. To load preset architectures and weights, use the from_preset
constructor.
Arguments
1e-6
.4096
.4096
.10000
.None
or "su"
. None
is for no rope scaling, "su"
is
for SuScaled rope, "su"
is used when max_sequence_length
is
larger than original_max_sequence_length
. Defaults to None
.rope_scaling_type
is "su"
. List must
be of length hidden_dim//num_query_heads//2
. It is used when
sequence_length
is smaller than original_max_sequence_length
.
Defaults to None
.rope_scaling_type
is "su"
. List must
be of length hidden_dim//num_query_heads//2
. It is used when
sequence_length
is larger than original_max_sequence_length
.
Defaults to None
.keras.mixed_precision.DTypePolicy
. The dtype to use
for model computations and weights. Note that some computations,
such as softmax and layer normalization, will always be done at
float32 precision regardless of dtype.Examples
input_data = {
"token_ids": np.ones(shape=(1, 12), dtype="int32"),
"padding_mask": np.array([[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 0]]),
}
# Pretrained Phi3 decoder.
model = keras_hub.models.Phi3Backbone.from_preset(
"phi3_mini_4k_instruct_en"
)
model(input_data)
# Randomly initialized Phi3 decoder with custom config.
model = keras_hub.models.Phi3Backbone(
vocabulary_size=10,
num_layers=2,
hidden_dim=512,
intermediate_dim=1024,
num_query_heads=32,
num_key_value_heads=8,
layer_norm_epsilon=1e-6,
dtype="float32"
)
model(input_data)
from_preset
methodPhi3Backbone.from_preset(preset, load_weights=True, **kwargs)
Instantiate a keras_hub.models.Backbone
from a model preset.
A preset is a directory of configs, weights and other file assets used
to save and load a pre-trained model. The preset
can be passed as a
one of:
'bert_base_en'
'kaggle://user/bert/keras/bert_base_en'
'hf://user/bert_base_en'
'./bert_base_en'
This constructor can be called in one of two ways. Either from the base
class like keras_hub.models.Backbone.from_preset()
, or from
a model class like keras_hub.models.GemmaBackbone.from_preset()
.
If calling from the base class, the subclass of the returning object
will be inferred from the config in the preset directory.
For any Backbone
subclass, you can run cls.presets.keys()
to list
all built-in presets available on the class.
Arguments
True
, the weights will be loaded into the
model architecture. If False
, the weights will be randomly
initialized.Examples
# Load a Gemma backbone with pre-trained weights.
model = keras_hub.models.Backbone.from_preset(
"gemma_2b_en",
)
# Load a Bert backbone with a pre-trained config and random weights.
model = keras_hub.models.Backbone.from_preset(
"bert_base_en",
load_weights=False,
)
Preset name | Parameters | Description |
---|---|---|
phi3_mini_4k_instruct_en | 3.82B | 3.8 billion parameters, 32 layers, 4k context length, Phi-3 model. The model was trained using the Phi-3 datasets. This dataset includes both synthetic data and filtered publicly available website data, with an emphasis on high-quality and reasoning-dense properties. |
phi3_mini_128k_instruct_en | 3.82B | 3.8 billion parameters, 32 layers, 128k context length, Phi-3 model. The model was trained using the Phi-3 datasets. This dataset includes both synthetic data and filtered publicly available website data, with an emphasis on high-quality and reasoning-dense properties. |
token_embedding
propertykeras_nlp.models.Phi3Backbone.token_embedding
A keras.layers.Embedding
instance for embedding token ids.
This layer embeds integer token ids to the hidden dim of the model.