| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- # Copyright 2020, The T5 Authors and HuggingFace Inc.
- #
- # 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.
- """T5 model configuration"""
- from huggingface_hub.dataclasses import strict
- from ...configuration_utils import PreTrainedConfig
- from ...utils import auto_docstring
- @auto_docstring(checkpoint="google-t5/t5-small")
- @strict
- class T5Config(PreTrainedConfig):
- r"""
- relative_attention_num_buckets (`int`, *optional*, defaults to 32):
- The number of buckets to use for each attention layer.
- relative_attention_max_distance (`int`, *optional*, defaults to 128):
- The maximum distance of the longer sequences for the bucket separation.
- feed_forward_proj (`string`, *optional*, defaults to `"relu"`):
- Type of feed forward layer to be used. Should be one of `"relu"` or `"gated-gelu"`. T5v1.1 uses the
- `"gated-gelu"` feed forward projection. Original T5 uses `"relu"`.
- """
- model_type = "t5"
- keys_to_ignore_at_inference = ["past_key_values"]
- attribute_map = {
- "hidden_size": "d_model",
- "num_attention_heads": "num_heads",
- "num_hidden_layers": "num_layers",
- "head_dim": "d_kv",
- }
- vocab_size: int = 32128
- d_model: int = 512
- d_kv: int = 64
- d_ff: int = 2048
- num_layers: int = 6
- num_decoder_layers: int | None = None
- num_heads: int = 8
- relative_attention_num_buckets: int = 32
- relative_attention_max_distance: int = 128
- dropout_rate: float | int = 0.1
- layer_norm_epsilon: float = 1e-6
- initializer_factor: float = 1.0
- feed_forward_proj: str = "relu"
- is_encoder_decoder: bool = True
- use_cache: bool = True
- pad_token_id: int | None = 0
- eos_token_id: int | list[int] | None = 1
- classifier_dropout: float | int = 0.0
- is_decoder: bool = False
- def __post_init__(self, **kwargs):
- self.num_decoder_layers = (
- self.num_decoder_layers if self.num_decoder_layers is not None else self.num_layers
- ) # default = symmetry
- act_info = self.feed_forward_proj.split("-")
- self.dense_act_fn = act_info[-1]
- self.is_gated_act = act_info[0] == "gated"
- # for backwards compatibility
- if self.feed_forward_proj == "gated-gelu":
- self.dense_act_fn = "gelu_new"
- # Super weird feature of T5 because we support T5 and T51.1 from the same
- # model code. Original T5 always scaled outputs, but the 1.1v does not.
- # The model code was relying on saved configs where `tie_word_embeddings` is
- # set to `False` in 1.1v and using it as indicator of whether to scale or not
- # But in fact we tie weights always and force it to be `True`
- self.scale_decoder_outputs = kwargs.pop("tie_word_embeddings", None) is not False
- self.tie_word_embeddings = True
- super().__post_init__(**kwargs)
- def validate_architecture(self):
- """Part of `@strict`-powered validation. Validates the architecture of the config."""
- act_info = self.feed_forward_proj.split("-")
- if len(act_info) > 1 and act_info[0] != "gated" or len(act_info) > 2:
- raise ValueError(
- f"`feed_forward_proj`: {self.feed_forward_proj} is not a valid activation function of the dense layer. "
- "Please make sure `feed_forward_proj` is of the format `gated-{ACT_FN}` or `{ACT_FN}`, e.g. "
- "'gated-gelu' or 'relu'"
- )
- __all__ = ["T5Config"]
|