| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- # Copyright 2024 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.
- """Pixtral model configuration"""
- from huggingface_hub.dataclasses import strict
- from ...configuration_utils import PreTrainedConfig
- from ...modeling_rope_utils import RopeParameters
- from ...utils import auto_docstring
- @auto_docstring(checkpoint="mistral-labs/pixtral-12b")
- @strict
- class PixtralVisionConfig(PreTrainedConfig):
- r"""
- 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"
- 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 | list[int] | tuple[int, int] = 1024
- patch_size: int | list[int] | tuple[int, int] = 16
- hidden_act: str = "gelu"
- attention_dropout: float | int = 0.0
- rope_parameters: RopeParameters | dict | None = None
- initializer_range: float = 0.02
- def __post_init__(self, **kwargs):
- self.head_dim = self.hidden_size // self.num_attention_heads
- super().__post_init__(**kwargs)
- __all__ = ["PixtralVisionConfig"]
|