| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- # Copyright 2022 The 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.
- from huggingface_hub.dataclasses import strict
- from ...configuration_utils import PreTrainedConfig
- from ...utils import auto_docstring, logging
- logger = logging.get_logger(__name__)
- @auto_docstring(checkpoint="microsoft/git-base")
- @strict
- class GitVisionConfig(PreTrainedConfig):
- r"""
- Example:
- ```python
- >>> from transformers import GitVisionConfig, GitVisionModel
- >>> # Initializing a GitVisionConfig with microsoft/git-base style configuration
- >>> configuration = GitVisionConfig()
- >>> # Initializing a GitVisionModel (with random weights) from the microsoft/git-base style configuration
- >>> model = GitVisionModel(configuration)
- >>> # Accessing the model configuration
- >>> configuration = model.config
- ```"""
- model_type = "git_vision_model"
- base_config_key = "vision_config"
- hidden_size: int = 768
- intermediate_size: int = 3072
- num_hidden_layers: int = 12
- num_attention_heads: int = 12
- num_channels: int = 3
- image_size: int | list[int] | tuple[int, int] = 224
- patch_size: int | list[int] | tuple[int, int] = 16
- hidden_act: str = "quick_gelu"
- layer_norm_eps: float = 1e-5
- attention_dropout: float | int = 0.0
- initializer_range: float = 0.02
- @auto_docstring(checkpoint="microsoft/git-base")
- @strict
- class GitConfig(PreTrainedConfig):
- r"""
- num_image_with_embedding (`int`, *optional*):
- The number of temporal embeddings to add, in case the model is used for video captioning/VQA.
- Examples:
- ```python
- >>> from transformers import GitConfig, GitModel
- >>> # Initializing a GIT microsoft/git-base style configuration
- >>> configuration = GitConfig()
- >>> # Initializing a model (with random weights) from the microsoft/git-base style configuration
- >>> model = GitModel(configuration)
- >>> # Accessing the model configuration
- >>> configuration = model.config
- ```"""
- model_type = "git"
- sub_configs = {"vision_config": GitVisionConfig}
- vision_config: dict | GitVisionConfig | None = None
- vocab_size: int = 30522
- hidden_size: int = 768
- num_hidden_layers: int = 6
- num_attention_heads: int = 12
- intermediate_size: int = 3072
- hidden_act: str = "gelu"
- hidden_dropout_prob: float | int = 0.1
- attention_probs_dropout_prob: float | int = 0.1
- max_position_embeddings: int = 1024
- initializer_range: float = 0.02
- layer_norm_eps: float = 1e-12
- pad_token_id: int | None = 0
- use_cache: bool = True
- tie_word_embeddings: bool = False
- bos_token_id: int | None = 101
- eos_token_id: int | list[int] | None = 102
- num_image_with_embedding: int | None = None
- def __post_init__(self, **kwargs):
- if self.vision_config is None:
- self.vision_config = GitVisionConfig()
- logger.info("vision_config is None. initializing the GitVisionConfig with default values.")
- elif isinstance(self.vision_config, dict):
- self.vision_config = GitVisionConfig(**self.vision_config)
- super().__post_init__(**kwargs)
- __all__ = ["GitConfig", "GitVisionConfig"]
|