| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- # Copyright 2019-present CNRS, Facebook Inc. and the HuggingFace Inc. team.
- #
- # 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.
- """Flaubert configuration"""
- from huggingface_hub.dataclasses import strict
- from ...configuration_utils import PreTrainedConfig
- from ...utils import auto_docstring
- @auto_docstring(checkpoint="flaubert/flaubert_base_uncased")
- @strict
- class FlaubertConfig(PreTrainedConfig):
- r"""
- pre_norm (`bool`, *optional*, defaults to `False`):
- Whether to apply the layer normalization before or after the feed forward layer following the attention in
- each layer (Vaswani et al., Tensor2Tensor for Neural Machine Translation. 2018)
- emb_dim (`int`, *optional*, defaults to 2048):
- The dimensionality of embedding layer.
- gelu_activation (`bool`, *optional*, defaults to True):
- Whether to use GeLU activation function.
- sinusoidal_embeddings (`bool`, *optional*, defaults to `False`):
- Whether or not to use sinusoidal positional embeddings instead of absolute positional embeddings.
- causal (`bool`, *optional*, defaults to `False`):
- Whether or not the model should behave in a causal manner. Causal models use a triangular attention mask in
- order to only attend to the left-side context instead if a bidirectional context.
- asm (`bool`, *optional*, defaults to `False`):
- Whether or not to use an adaptive log softmax projection layer instead of a linear layer for the prediction
- layer.
- n_langs (`int`, *optional*, defaults to 1):
- The number of languages the model handles. Set to 1 for monolingual models.
- use_lang_emb (`bool`, *optional*, defaults to `True`)
- Whether to use language embeddings. Some models use additional language embeddings, see [the multilingual
- models page](http://huggingface.co/transformers/multilingual.html#xlm-language-embeddings) for information
- on how to use them.
- embed_init_std (`float`, *optional*, defaults to 2048^-0.5):
- The standard deviation of the truncated_normal_initializer for initializing the embedding matrices.
- embed_init_std (`float`, *optional*, defaults to `2048**-0.5`):
- Initializer std for embedding layers.
- bos_index (`int`, *optional*, defaults to 0):
- The index of the beginning of sentence token in the vocabulary.
- eos_index (`int`, *optional*, defaults to 1):
- The index of the end of sentence token in the vocabulary.
- pad_index (`int`, *optional*, defaults to 2):
- The index of the padding token in the vocabulary.
- unk_index (`int`, *optional*, defaults to 3):
- The index of the unknown token in the vocabulary.
- mask_index (`int`, *optional*, defaults to 5):
- The index of the masking token in the vocabulary.
- is_encoder (`bool`, *optional*, defaults to True):
- Whether the model is used as an encoder.
- summary_type (`string`, *optional*, defaults to "first"):
- Argument used when doing sequence summary. Used in the sequence classification and multiple choice models.
- Has to be one of the following options:
- - `"last"`: Take the last token hidden state (like XLNet).
- - `"first"`: Take the first token hidden state (like BERT).
- - `"mean"`: Take the mean of all tokens hidden states.
- - `"cls_index"`: Supply a Tensor of classification token position (like GPT/GPT-2).
- - `"attn"`: Not implemented now, use multi-head attention.
- summary_use_proj (`bool`, *optional*, defaults to `True`):
- Argument used when doing sequence summary. Used in the sequence classification and multiple choice models.
- Whether or not to add a projection after the vector extraction.
- summary_activation (`str`, *optional*):
- Argument used when doing sequence summary. Used in the sequence classification and multiple choice models.
- Pass `"tanh"` for a tanh activation to the output, any other value will result in no activation.
- summary_proj_to_labels (`bool`, *optional*, defaults to `True`):
- Used in the sequence classification and multiple choice models.
- Whether the projection outputs should have `config.num_labels` or `config.hidden_size` classes.
- summary_first_dropout (`float`, *optional*, defaults to 0.1):
- Used in the sequence classification and multiple choice models.
- The dropout ratio to be used after the projection and activation.
- start_n_top (`int`, *optional*, defaults to 5):
- Used in the SQuAD evaluation script.
- end_n_top (`int`, *optional*, defaults to 5):
- Used in the SQuAD evaluation script.
- mask_token_id (`int`, *optional*, defaults to 0):
- Model agnostic parameter to identify masked tokens when generating text in an MLM context.
- lang_id (`int`, *optional*, defaults to 1):
- The ID of the language used by the model. This parameter is used when generating text in a given language.
- """
- model_type = "flaubert"
- attribute_map = {
- "hidden_size": "emb_dim",
- "num_attention_heads": "n_heads",
- "num_hidden_layers": "n_layers",
- "n_words": "vocab_size", # For backward compatibility
- "bos_index": "bos_token_id",
- "eos_index": "eos_token_id",
- "pad_index": "pad_token_id",
- }
- pre_norm: bool = False
- layerdrop: float | int = 0.0
- vocab_size: int = 30145
- emb_dim: int = 2048
- n_layers: int = 12
- n_heads: int = 16
- dropout: float | int = 0.1
- attention_dropout: float | int = 0.1
- gelu_activation: bool = True
- sinusoidal_embeddings: bool = False
- causal: bool = False
- asm: bool = False
- n_langs: int = 1
- use_lang_emb: bool = True
- max_position_embeddings: int = 512
- embed_init_std: float = 2048**-0.5
- layer_norm_eps: float = 1e-12
- init_std: float = 0.02
- bos_index: int = 0
- eos_index: int = 1
- pad_index: int = 2
- unk_index: int = 3
- mask_index: int = 5
- is_encoder: bool = True
- summary_type: str = "first"
- summary_use_proj: bool = True
- summary_activation: str | None = None
- summary_proj_to_labels: bool = True
- summary_first_dropout: float | int = 0.1
- start_n_top: int = 5
- end_n_top: int = 5
- mask_token_id: int = 0
- lang_id: int = 0
- pad_token_id: int | None = 2
- bos_token_id: int | None = 0
- eos_token_id: int | list[int] | None = 1
- tie_word_embeddings: bool = True
- __all__ = ["FlaubertConfig"]
|