Ë
    T^(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
 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LeViT model configurationé    ©ÚOrderedDict)ÚMapping)Úversioné   )ÚPretrainedConfig)Ú
OnnxConfig)Úloggingc                   ó\   ‡ — e Zd ZdZdZddddddg d¢g d	¢g d
¢g d¢dg d¢g d¢dfˆ fd„	Zˆ xZS )ÚLevitConfigaÇ  
    This is the configuration class to store the configuration of a [`LevitModel`]. It is used to instantiate a LeViT
    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 LeViT
    [facebook/levit-128S](https://huggingface.co/facebook/levit-128S) architecture.

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

    Args:
        image_size (`int`, *optional*, defaults to 224):
            The size of the input image.
        num_channels (`int`, *optional*, defaults to 3):
            Number of channels in the input image.
        kernel_size (`int`, *optional*, defaults to 3):
            The kernel size for the initial convolution layers of patch embedding.
        stride (`int`, *optional*, defaults to 2):
            The stride size for the initial convolution layers of patch embedding.
        padding (`int`, *optional*, defaults to 1):
            The padding size for the initial convolution layers of patch embedding.
        patch_size (`int`, *optional*, defaults to 16):
            The patch size for embeddings.
        hidden_sizes (`List[int]`, *optional*, defaults to `[128, 256, 384]`):
            Dimension of each of the encoder blocks.
        num_attention_heads (`List[int]`, *optional*, defaults to `[4, 8, 12]`):
            Number of attention heads for each attention layer in each block of the Transformer encoder.
        depths (`List[int]`, *optional*, defaults to `[4, 4, 4]`):
            The number of layers in each encoder block.
        key_dim (`List[int]`, *optional*, defaults to `[16, 16, 16]`):
            The size of key in each of the encoder blocks.
        drop_path_rate (`int`, *optional*, defaults to 0):
            The dropout probability for stochastic depths, used in the blocks of the Transformer encoder.
        mlp_ratios (`List[int]`, *optional*, defaults to `[2, 2, 2]`):
            Ratio of the size of the hidden layer compared to the size of the input layer of the Mix FFNs in the
            encoder blocks.
        attention_ratios (`List[int]`, *optional*, defaults to `[2, 2, 2]`):
            Ratio of the size of the output dimension compared to input dimension of attention layers.
        initializer_range (`float`, *optional*, defaults to 0.02):
            The standard deviation of the truncated_normal_initializer for initializing all weight matrices.

    Example:

    ```python
    >>> from transformers import LevitConfig, LevitModel

    >>> # Initializing a LeViT levit-128S style configuration
    >>> configuration = LevitConfig()

    >>> # Initializing a model (with random weights) from the levit-128S style configuration
    >>> model = LevitModel(configuration)

    >>> # Accessing the model configuration
    >>> configuration = model.config
    ```Úlevitéà   r   é   é   é   )é€   é   i€  )é   é   é   )r   r   r   )r   r   r   r   )r   r   r   g{®Gáz”?c                 óB  •— t        ‰| �  di |¤Ž || _        || _        || _        || _        || _        || _        || _        |	| _	        |
| _
        || _        || _        || _        || _        || _        d|
d   |d   |
d   z  dddgd|
d   |d   |
d   z  dddgg| _        y )NÚ	Subsampler   r   r   r   © )ÚsuperÚ__init__Ú
image_sizeÚnum_channelsÚkernel_sizeÚstrideÚpaddingÚhidden_sizesÚnum_attention_headsÚdepthsÚkey_dimÚdrop_path_rateÚ
patch_sizeÚattention_ratioÚ	mlp_ratioÚinitializer_rangeÚdown_ops)Úselfr   r   r   r   r    r&   r!   r"   r#   r$   r%   r(   r'   r)   ÚkwargsÚ	__class__s                   €úk/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/transformers/models/levit/configuration_levit.pyr   zLevitConfig.__init__X   sÉ   ø€ ô$ 	‰ÑÑ"˜6Ò"Ø$ˆŒØ(ˆÔØ&ˆÔØˆŒØˆŒØ(ˆÔØ#6ˆÔ ØˆŒØˆŒØ,ˆÔØ$ˆŒØ.ˆÔØ"ˆŒØ!2ˆÔà˜' !™* l°1¡o¸À¹Ñ&CÀQÈÈ1ÐMØ˜' !™* l°1¡o¸À¹Ñ&CÀQÈÈ1ÐMð
ˆ�ó    )Ú__name__Ú
__module__Ú__qualname__Ú__doc__Ú
model_typer   Ú__classcell__)r-   s   @r.   r   r      sF   ø„ ñ5ðn €Jð ØØØØØÚ$Ú&ÚÚØÚÚ!Ø÷$
ñ $
r/   r   c                   óp   — e Zd Z ej                  d«      Zedeeee	ef   f   fd„«       Z
edefd„«       Zy)ÚLevitOnnxConfigz1.11Úreturnc                 ó(   — t        ddddddœfg«      S )NÚpixel_valuesÚbatchr   ÚheightÚwidth)r   r   r   r   r   ©r+   s    r.   ÚinputszLevitOnnxConfig.inputsƒ   s&   € äà W°ÀHÐQXÑ!YÐZðó
ð 	
r/   c                  ó   — y)Ng-Cëâ6?r   r>   s    r.   Úatol_for_validationz#LevitOnnxConfig.atol_for_validation‹   s   € àr/   N)r0   r1   r2   r   ÚparseÚtorch_onnx_minimum_versionÚpropertyr   ÚstrÚintr?   ÚfloatrA   r   r/   r.   r7   r7   €   sZ   „ Ø!. §¡¨vÓ!6Ðàð
˜  W¨S°#¨XÑ%6Ð 6Ñ7ò 
ó ð
ð ð Uò ó ñr/   r7   N)r3   Úcollectionsr   Útypingr   Ú	packagingr   Úconfiguration_utilsr   Úonnxr	   Úutilsr
   Ú
get_loggerr0   Úloggerr   r7   Ú__all__r   r/   r.   ú<module>rQ      sY   ðñ  å #Ý å å 3Ý Ý ð 
ˆ×	Ñ	˜HÓ	%€ô^
Ð"ô ^
ôD�jô ð  Ð+Ð
,�r/   