Ë
    S^(hž  ã                   óœ   — d Z ddlmZ ddlmZ ddlmZ ddlmZ ddl	m
Z
  e
j                  e«      Z G d„ d	e«      Z G d
„ de«      Zd	dgZy)zDistilBERT model configurationé    )ÚOrderedDict)ÚMappingé   )ÚPretrainedConfig)Ú
OnnxConfig)Úloggingc                   óP   ‡ — e Zd ZdZdZddddœZ	 	 	 	 	 	 	 	 	 	 	 	 	 	 dˆ fd„	Zˆ xZS )	ÚDistilBertConfiga  
    This is the configuration class to store the configuration of a [`DistilBertModel`] or a [`TFDistilBertModel`]. It
    is used to instantiate a DistilBERT model according to the specified arguments, defining the model architecture.
    Instantiating a configuration with the defaults will yield a similar configuration to that of the DistilBERT
    [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) architecture.

    Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
    documentation from [`PretrainedConfig`] for more information.

    Args:
        vocab_size (`int`, *optional*, defaults to 30522):
            Vocabulary size of the DistilBERT model. Defines the number of different tokens that can be represented by
            the `inputs_ids` passed when calling [`DistilBertModel`] or [`TFDistilBertModel`].
        max_position_embeddings (`int`, *optional*, defaults to 512):
            The maximum sequence length that this model might ever be used with. Typically set this to something large
            just in case (e.g., 512 or 1024 or 2048).
        sinusoidal_pos_embds (`boolean`, *optional*, defaults to `False`):
            Whether to use sinusoidal positional embeddings.
        n_layers (`int`, *optional*, defaults to 6):
            Number of hidden layers in the Transformer encoder.
        n_heads (`int`, *optional*, defaults to 12):
            Number of attention heads for each attention layer in the Transformer encoder.
        dim (`int`, *optional*, defaults to 768):
            Dimensionality of the encoder layers and the pooler layer.
        hidden_dim (`int`, *optional*, defaults to 3072):
            The size of the "intermediate" (often named feed-forward) layer in the Transformer encoder.
        dropout (`float`, *optional*, defaults to 0.1):
            The dropout probability for all fully connected layers in the embeddings, encoder, and pooler.
        attention_dropout (`float`, *optional*, defaults to 0.1):
            The dropout ratio for the attention probabilities.
        activation (`str` or `Callable`, *optional*, defaults to `"gelu"`):
            The non-linear activation function (function or string) in the encoder and pooler. If string, `"gelu"`,
            `"relu"`, `"silu"` and `"gelu_new"` are supported.
        initializer_range (`float`, *optional*, defaults to 0.02):
            The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
        qa_dropout (`float`, *optional*, defaults to 0.1):
            The dropout probabilities used in the question answering model [`DistilBertForQuestionAnswering`].
        seq_classif_dropout (`float`, *optional*, defaults to 0.2):
            The dropout probabilities used in the sequence classification and the multiple choice model
            [`DistilBertForSequenceClassification`].

    Examples:

    ```python
    >>> from transformers import DistilBertConfig, DistilBertModel

    >>> # Initializing a DistilBERT configuration
    >>> configuration = DistilBertConfig()

    >>> # Initializing a model (with random weights) from the configuration
    >>> model = DistilBertModel(configuration)

    >>> # Accessing the model configuration
    >>> configuration = model.config
    ```Ú
distilbertÚdimÚn_headsÚn_layers)Úhidden_sizeÚnum_attention_headsÚnum_hidden_layersc                 óâ   •— || _         || _        || _        || _        || _        || _        || _        || _        |	| _        |
| _	        || _
        || _        || _        t        ‰| �8  di |¤d|i¤Ž y )NÚpad_token_id© )Ú
vocab_sizeÚmax_position_embeddingsÚsinusoidal_pos_embdsr   r   r   Ú
hidden_dimÚdropoutÚattention_dropoutÚ
activationÚinitializer_rangeÚ
qa_dropoutÚseq_classif_dropoutÚsuperÚ__init__)Úselfr   r   r   r   r   r   r   r   r   r   r   r   r   r   ÚkwargsÚ	__class__s                   €úu/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/transformers/models/distilbert/configuration_distilbert.pyr    zDistilBertConfig.__init__\   sz   ø€ ð$ %ˆŒØ'>ˆÔ$Ø$8ˆÔ!Ø ˆŒØˆŒØˆŒØ$ˆŒØˆŒØ!2ˆÔØ$ˆŒØ!2ˆÔØ$ˆŒØ#6ˆÔ Ü‰ÑÑ=˜6Ñ=°Ô=ó    )i:w  i   Fé   é   i   i   çš™™™™™¹?r(   Úgelug{®Gáz”?r(   gš™™™™™É?r   )Ú__name__Ú
__module__Ú__qualname__Ú__doc__Ú
model_typeÚattribute_mapr    Ú__classcell__)r#   s   @r$   r
   r
      sV   ø„ ñ6ðp €JàØ(Ø'ñ€Mð Ø #Ø"ØØØØØØØØØØØ÷>ñ >r%   r
   c                   ó6   — e Zd Zedeeeeef   f   fd„«       Zy)ÚDistilBertOnnxConfigÚreturnc                 óZ   — | j                   dk(  rddddœ}ndddœ}t        d|fd|fg«      S )	Nzmultiple-choiceÚbatchÚchoiceÚsequence)r   é   é   )r   r8   Ú	input_idsÚattention_mask)Útaskr   )r!   Údynamic_axiss     r$   ÚinputszDistilBertOnnxConfig.inputs   sG   € à�9‰9Ð)Ò)Ø&¨8¸
ÑC‰Là&¨:Ñ6ˆLÜà˜lÐ+Ø! <Ð0ðó
ð 	
r%   N)r*   r+   r,   Úpropertyr   ÚstrÚintr>   r   r%   r$   r2   r2   ~   s.   „ Øð

˜  W¨S°#¨XÑ%6Ð 6Ñ7ò 

ó ñ

r%   r2   N)r-   Úcollectionsr   Útypingr   Úconfiguration_utilsr   Úonnxr   Úutilsr   Ú
get_loggerr*   Úloggerr
   r2   Ú__all__r   r%   r$   ú<module>rJ      sV   ðñ %å #Ý å 3Ý Ý ð 
ˆ×	Ñ	˜HÓ	%€ô_>Ð'ô _>ôD
˜:ô 
ð Ð5Ð
6�r%   