Source code for easydel.__init__.modules.pixtral.pixtral_configuration

# Copyright 2023 The EASYDEL Author @erfanzar (Erfan Zare Chavoshi).
#
# 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
#
#     https://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 jax.sharding import PartitionSpec

from easydel.infra.base_module import EasyDeLBaseConfig
from easydel.infra.factory import register_config


[docs]@register_config("pixtral") class PixtralVisionConfig(EasyDeLBaseConfig): r""" This is the configuration class to store the configuration of a [`PixtralVisionModel`]. It is used to instantiate an Pixtral vision encoder according to the specified arguments, defining the model architecture. Instantiating a configuration with the defaults will yield a similar configuration to the vision encoder used by Pixtral-12B. e.g. [pixtral-hf/pixtral-9b](https://huggingface.co/pixtral-hf/pixtral-9b) Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the documentation from [`PretrainedConfig`] for more information. Args: hidden_size (`int`, *optional*, defaults to 1024): Dimension of the hidden representations. intermediate_size (`int`, *optional*, defaults to 4096): Dimension of the MLP representations. num_hidden_layers (`int`, *optional*, defaults to 24): Number of hidden layers in the Transformer encoder. num_attention_heads (`int`, *optional*, defaults to 16): Number of attention heads in the Transformer encoder. num_channels (`int`, *optional*, defaults to 3): Number of input channels in the input images. image_size (`int`, *optional*, defaults to 1024): Max dimension of the input images. patch_size (`int`, *optional*, defaults to 16): Size of the image patches. hidden_act (`str`, *optional*, defaults to `"gelu"`): Activation function used in the hidden layers. attention_dropout (`float`, *optional*, defaults to 0.0): Dropout probability for the attention layers. rope_theta (`float`, *optional*, defaults to 10000.0): The base period of the RoPE embeddings. initializer_range (`float`, *optional*, defaults to 0.02): The standard deviation of the truncated_normal_initializer for initializing all weight matrices. Example: ```python >>> from transformers import PixtralVisionModel, PixtralVisionConfig >>> # Initializing a Pixtral-12B style configuration >>> config = PixtralVisionConfig() >>> # Initializing a model (with randomly initialized weights) from the configuration >>> model = PixtralVisionModel(configuration) >>> # Accessing the model configuration >>> configuration = model.config ```""" model_type = "pixtral" def __init__( self, hidden_size: int = 1024, intermediate_size: int = 4096, num_hidden_layers: int = 24, num_attention_heads: int = 16, num_channels: int = 3, image_size: int = 1024, patch_size: int = 16, hidden_act: str = "gelu", attention_dropout: float = 0.0, rope_theta: float = 10000.0, initializer_range: int = 0.02, **kwargs, ): """Initializes a PixtralVisionConfig object. Args: hidden_size (int, optional): Dimension of the hidden representations. Defaults to 1024. intermediate_size (int, optional): Dimension of the MLP representations. Defaults to 4096. num_hidden_layers (int, optional): Number of hidden layers in the Transformer encoder. Defaults to 24. num_attention_heads (int, optional): Number of attention heads in the Transformer encoder. Defaults to 16. num_channels (int, optional): Number of input channels in the input images. Defaults to 3. image_size (int, optional): Max dimension of the input images. Defaults to 1024. patch_size (int, optional): Size of the image patches. Defaults to 16. hidden_act (str, optional): Activation function used in the hidden layers. Defaults to "gelu". attention_dropout (float, optional): Dropout probability for the attention layers. Defaults to 0.0. rope_theta (float, optional): The base period of the RoPE embeddings. Defaults to 10000.0. initializer_range (float, optional): The standard deviation for initializing weight matrices. Defaults to 0.02. **kwargs: Additional keyword arguments passed to the parent class. """ super().__init__(**kwargs) self.hidden_size = hidden_size self.intermediate_size = intermediate_size self.num_hidden_layers = num_hidden_layers self.num_attention_heads = num_attention_heads self.num_channels = num_channels self.patch_size = patch_size self.image_size = image_size self.attention_dropout = attention_dropout self.hidden_act = hidden_act self.rope_theta = rope_theta self.head_dim = hidden_size // num_attention_heads self.initializer_range = initializer_range
[docs] def get_partition_rules(self, *args, **kwargs): return ( # Patch embedding convolution ("patch_conv/kernel", PartitionSpec(None, None, None, "tp")), ("patch_conv/bias", PartitionSpec(None)), # Attention layers ("attention/q_proj/kernel", PartitionSpec("tp", ("fsdp", "sp"))), ("attention/k_proj/kernel", PartitionSpec("tp", ("fsdp", "sp"))), ("attention/v_proj/kernel", PartitionSpec("tp", ("fsdp", "sp"))), ("attention/o_proj/kernel", PartitionSpec(("fsdp", "sp"), "tp")), ("attention/q_proj/bias", PartitionSpec(None)), ("attention/k_proj/bias", PartitionSpec(None)), ("attention/v_proj/bias", PartitionSpec(None)), ("attention/o_proj/bias", PartitionSpec(None)), # Feed forward layers ("feed_forward/gate_proj/kernel", PartitionSpec(("fsdp", "sp"), "tp")), ("feed_forward/up_proj/kernel", PartitionSpec(("fsdp", "sp"), "tp")), ("feed_forward/down_proj/kernel", PartitionSpec("tp", ("fsdp", "sp"))), ("feed_forward/(gate_proj|up_proj|down_proj)/bias", PartitionSpec(None)), # Layer norms ("ln_pre/kernel", PartitionSpec(None)), (".*_norm/kernel", PartitionSpec(None)), # Catch-all (".*", PartitionSpec(None)), )