| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- # Copyright 2021 The Marian Team Authors and 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.
- """Marian model configuration"""
- from huggingface_hub.dataclasses import strict
- from ...configuration_utils import PreTrainedConfig
- from ...utils import auto_docstring
- @auto_docstring(checkpoint="Helsinki-NLP/opus-mt-en-de")
- @strict
- class MarianConfig(PreTrainedConfig):
- r"""
- decoder_vocab_size (`int`, *optional*):
- Vocab size of the decoder layer's embedding.
- share_encoder_decoder_embeddings (`bool`, *optional*, defaults to `True`):
- Whether to tie and share embeddings of encoder and decoder
- Examples:
- ```python
- >>> from transformers import MarianModel, MarianConfig
- >>> # Initializing a Marian Helsinki-NLP/opus-mt-en-de style configuration
- >>> configuration = MarianConfig()
- >>> # Initializing a model from the Helsinki-NLP/opus-mt-en-de style configuration
- >>> model = MarianModel(configuration)
- >>> # Accessing the model configuration
- >>> configuration = model.config
- ```"""
- model_type = "marian"
- keys_to_ignore_at_inference = ["past_key_values"]
- attribute_map = {
- "num_attention_heads": "encoder_attention_heads",
- "hidden_size": "d_model",
- "num_hidden_layers": "encoder_layers",
- }
- vocab_size: int = 58101
- decoder_vocab_size: int | None = None
- max_position_embeddings: int = 1024
- encoder_layers: int = 12
- encoder_ffn_dim: int = 4096
- encoder_attention_heads: int = 16
- decoder_layers: int = 12
- decoder_ffn_dim: int = 4096
- decoder_attention_heads: int = 16
- encoder_layerdrop: float | int = 0.0
- decoder_layerdrop: float | int = 0.0
- use_cache: bool = True
- is_encoder_decoder: bool = True
- activation_function: str = "gelu"
- d_model: int = 1024
- dropout: float | int = 0.1
- attention_dropout: float | int = 0.0
- activation_dropout: float | int = 0.0
- init_std: float = 0.02
- decoder_start_token_id: int = 58100
- scale_embedding: bool = False
- pad_token_id: int | None = 58100
- eos_token_id: int | list[int] | None = 0
- bos_token_id: int | None = None
- forced_eos_token_id: int | list[int] | None = 0
- share_encoder_decoder_embeddings: bool = True
- is_decoder: bool = False
- tie_word_embeddings: bool = True
- def __post_init__(self, **kwargs):
- self.decoder_vocab_size = self.decoder_vocab_size or self.vocab_size
- super().__post_init__(**kwargs)
- __all__ = ["MarianConfig"]
|