| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- # Copyright 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.
- """XGLM model configuration"""
- from huggingface_hub.dataclasses import strict
- from ...configuration_utils import PreTrainedConfig
- from ...utils import auto_docstring
- @auto_docstring(checkpoint="facebook/xglm-564M")
- @strict
- class XGLMConfig(PreTrainedConfig):
- r"""
- Example:
- ```python
- >>> from transformers import XGLMModel, XGLMConfig
- >>> # Initializing a XGLM facebook/xglm-564M style configuration
- >>> configuration = XGLMConfig()
- >>> # Initializing a model from the facebook/xglm-564M style configuration
- >>> model = XGLMModel(configuration)
- >>> # Accessing the model configuration
- >>> configuration = model.config
- ```"""
- model_type = "xglm"
- keys_to_ignore_at_inference = ["past_key_values"]
- attribute_map = {
- "num_attention_heads": "attention_heads",
- "hidden_size": "d_model",
- "num_hidden_layers": "num_layers",
- }
- vocab_size: int = 256008
- max_position_embeddings: int = 2048
- d_model: int = 1024
- ffn_dim: int = 4096
- num_layers: int = 24
- attention_heads: int = 16
- activation_function: str = "gelu"
- dropout: float | int = 0.1
- attention_dropout: float | int = 0.1
- activation_dropout: float | int = 0.0
- layerdrop: float | int = 0.0
- init_std: float = 0.02
- scale_embedding: bool = True
- use_cache: bool = True
- decoder_start_token_id: int = 2
- pad_token_id: int | None = 1
- bos_token_id: int | None = 0
- eos_token_id: int | list[int] | None = 2
- add_cross_attention: bool = False
- tie_word_embeddings: bool = True
- __all__ = ["XGLMConfig"]
|