Ë
    [^(hö]  ã                   ó€   — d dl mZ d dlZd dlmZ d dlmZmZ d dlm	Z	 ddl
mZ dd	gZ G d
„ de«      Z G d„ d	e«      Zy)é    )ÚOptionalN)ÚTensor)Ú
functionalÚinit)Ú	Parameteré   )ÚModuleÚ	EmbeddingÚEmbeddingBagc                   ó,  ‡ — e Zd ZU dZg d¢Zeed<   eed<   ee   ed<   ee   ed<   eed<   e	ed<   e
ed	<   e	ed
<   e	ed<   	 	 	 	 	 	 	 	 	 ddededee   dee   dede	de	dee
   de	ddfˆ fd„Zdd„Zdd„Zde
de
fd„Zdefd„Ze	 	 	 	 	 	 dd„«       Zˆ xZS )r
   a¥  A simple lookup table that stores embeddings of a fixed dictionary and size.

    This module is often used to store word embeddings and retrieve them using indices.
    The input to the module is a list of indices, and the output is the corresponding
    word embeddings.

    Args:
        num_embeddings (int): size of the dictionary of embeddings
        embedding_dim (int): the size of each embedding vector
        padding_idx (int, optional): If specified, the entries at :attr:`padding_idx` do not contribute to the gradient;
                                     therefore, the embedding vector at :attr:`padding_idx` is not updated during training,
                                     i.e. it remains as a fixed "pad". For a newly constructed Embedding,
                                     the embedding vector at :attr:`padding_idx` will default to all zeros,
                                     but can be updated to another value to be used as the padding vector.
        max_norm (float, optional): If given, each embedding vector with norm larger than :attr:`max_norm`
                                    is renormalized to have norm :attr:`max_norm`.
        norm_type (float, optional): The p of the p-norm to compute for the :attr:`max_norm` option. Default ``2``.
        scale_grad_by_freq (bool, optional): If given, this will scale gradients by the inverse of frequency of
                                                the words in the mini-batch. Default ``False``.
        sparse (bool, optional): If ``True``, gradient w.r.t. :attr:`weight` matrix will be a sparse tensor.
                                 See Notes for more details regarding sparse gradients.

    Attributes:
        weight (Tensor): the learnable weights of the module of shape (num_embeddings, embedding_dim)
                         initialized from :math:`\mathcal{N}(0, 1)`

    Shape:
        - Input: :math:`(*)`, IntTensor or LongTensor of arbitrary shape containing the indices to extract
        - Output: :math:`(*, H)`, where `*` is the input shape and :math:`H=\text{embedding\_dim}`

    .. note::
        Keep in mind that only a limited number of optimizers support
        sparse gradients: currently it's :class:`optim.SGD` (`CUDA` and `CPU`),
        :class:`optim.SparseAdam` (`CUDA` and `CPU`) and :class:`optim.Adagrad` (`CPU`)

    .. note::
        When :attr:`max_norm` is not ``None``, :class:`Embedding`'s forward method will modify the
        :attr:`weight` tensor in-place. Since tensors needed for gradient computations cannot be
        modified in-place, performing a differentiable operation on ``Embedding.weight`` before
        calling :class:`Embedding`'s forward method requires cloning ``Embedding.weight`` when
        :attr:`max_norm` is not ``None``. For example::

            n, d, m = 3, 5, 7
            embedding = nn.Embedding(n, d, max_norm=1.0)
            W = torch.randn((m, d), requires_grad=True)
            idx = torch.tensor([1, 2])
            a = embedding.weight.clone() @ W.t()  # weight must be cloned for this to be differentiable
            b = embedding(idx) @ W.t()  # modifies weight in-place
            out = (a.unsqueeze(0) + b.unsqueeze(1))
            loss = out.sigmoid().prod()
            loss.backward()

    Examples::

        >>> # an Embedding module containing 10 tensors of size 3
        >>> embedding = nn.Embedding(10, 3)
        >>> # a batch of 2 samples of 4 indices each
        >>> input = torch.LongTensor([[1, 2, 4, 5], [4, 3, 2, 9]])
        >>> # xdoctest: +IGNORE_WANT("non-deterministic")
        >>> embedding(input)
        tensor([[[-0.0251, -1.6902,  0.7172],
                 [-0.6431,  0.0748,  0.6969],
                 [ 1.4970,  1.3448, -0.9685],
                 [-0.3677, -2.7265, -0.1685]],

                [[ 1.4970,  1.3448, -0.9685],
                 [ 0.4362, -0.4004,  0.9400],
                 [-0.6431,  0.0748,  0.6969],
                 [ 0.9124, -2.3616,  1.1151]]])


        >>> # example with padding_idx
        >>> embedding = nn.Embedding(10, 3, padding_idx=0)
        >>> input = torch.LongTensor([[0, 2, 0, 5]])
        >>> embedding(input)
        tensor([[[ 0.0000,  0.0000,  0.0000],
                 [ 0.1535, -2.0309,  0.9315],
                 [ 0.0000,  0.0000,  0.0000],
                 [-0.1655,  0.9897,  0.0635]]])

        >>> # example of changing `pad` vector
        >>> padding_idx = 0
        >>> embedding = nn.Embedding(3, 3, padding_idx=padding_idx)
        >>> embedding.weight
        Parameter containing:
        tensor([[ 0.0000,  0.0000,  0.0000],
                [-0.7895, -0.7089, -0.0364],
                [ 0.6778,  0.5803,  0.2678]], requires_grad=True)
        >>> with torch.no_grad():
        ...     embedding.weight[padding_idx] = torch.ones(3)
        >>> embedding.weight
        Parameter containing:
        tensor([[ 1.0000,  1.0000,  1.0000],
                [-0.7895, -0.7089, -0.0364],
                [ 0.6778,  0.5803,  0.2678]], requires_grad=True)
    )Únum_embeddingsÚembedding_dimÚpadding_idxÚmax_normÚ	norm_typeÚscale_grad_by_freqÚsparser   r   r   r   r   r   ÚweightÚfreezer   NÚ_weightÚ_freezeÚreturnc                 ó  •— |
|dœ}t         ‰| �  «        || _        || _        |�F|dkD  r|| j                  k  s2J d«       ‚|dk  r&|| j                   k\  sJ d«       ‚| j                  |z   }|| _        || _        || _        || _        |€At        t        j                  ||ffi |¤Ž|	 ¬«      | _        | j                  «        || _        y t        |j                  «      ||gk(  sJ d«       ‚t        ||	 ¬«      | _        || _        y )N©ÚdeviceÚdtyper   z)Padding_idx must be within num_embeddings)Úrequires_gradú?Shape of weight does not match num_embeddings and embedding_dim)ÚsuperÚ__init__r   r   r   r   r   r   r   ÚtorchÚemptyr   Úreset_parametersÚlistÚshaper   )Úselfr   r   r   r   r   r   r   r   r   r   r   Úfactory_kwargsÚ	__class__s                €úU/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/torch/nn/modules/sparse.pyr    zEmbedding.__init__…   s<  ø€ ð %+°UÑ;ˆÜ‰ÑÔØ,ˆÔØ*ˆÔØÐ"Ø˜QŠà $×"5Ñ"5Ò5ð?à>ó?Ø5à˜q’à D×$7Ñ$7Ð#7Ò7ð?à>ó?Ø7à"×1Ñ1°KÑ?�Ø&ˆÔØ ˆŒØ"ˆŒØ"4ˆÔØˆ?Ü#Ü—‘˜^¨]Ð;ÑN¸~ÑNØ")˜kôˆDŒKð ×!Ñ!Ô#ð ˆ�ô ˜Ÿ™Ó&ØØð+ò ð Qð QóQð ô $ G¸w¸;ÔGˆDŒKàˆ�ó    c                 ób   — t        j                  | j                  «       | j                  «        y ©N©r   Únormal_r   Ú_fill_padding_idx_with_zero©r&   s    r)   r#   zEmbedding.reset_parameters´   ó   € Ü�‰�T—[‘[Ô!Ø×(Ñ(Õ*r*   c                 óÀ   — | j                   �Ft        j                  «       5  | j                  | j                      j	                  d«       d d d «       y y # 1 sw Y   y xY w©Nr   ©r   r!   Úno_gradr   Úfill_r0   s    r)   r/   z%Embedding._fill_padding_idx_with_zero¸   óS   € Ø×ÑÐ'Ü—‘“ñ 7Ø—‘˜D×,Ñ,Ñ-×3Ñ3°AÔ6÷7ð 7ð (÷7ð 7úó   ¡)AÁAÚinputc           	      ó°   — t        j                  || j                  | j                  | j                  | j
                  | j                  | j                  «      S r,   )ÚFÚ	embeddingr   r   r   r   r   r   )r&   r9   s     r)   ÚforwardzEmbedding.forward½   sD   € Ü�{‰{ØØ�K‰KØ×ÑØ�M‰MØ�N‰NØ×#Ñ#Ø�K‰Kó
ð 	
r*   c                 óö   — d}| j                   �|dz  }| j                  �|dz  }| j                  dk7  r|dz  }| j                  dur|dz  }| j                  dur|dz  } |j
                  d	i | j                  ¤ŽS )
Nú!{num_embeddings}, {embedding_dim}ú, padding_idx={padding_idx}ú, max_norm={max_norm}é   ú, norm_type={norm_type}Fú), scale_grad_by_freq={scale_grad_by_freq}z, sparse=True© )r   r   r   r   r   ÚformatÚ__dict__)r&   Úss     r)   Ú
extra_reprzEmbedding.extra_reprÈ   s‘   € Ø/ˆØ×ÑÐ'ØÐ.Ñ.ˆAØ�=‰=Ð$ØÐ(Ñ(ˆAØ�>‰>˜QÒØÐ*Ñ*ˆAØ×"Ñ"¨%Ñ/ØÐ<Ñ<ˆAØ�;‰;˜eÑ#Ø�Ñ ˆAØˆq�x‰xÑ(˜$Ÿ-™-Ñ(Ð(r*   c                 óz   — |j                  «       dk(  sJ d«       ‚|j                  \  }}	 | ||	|||||||¬«	      }
|
S )a^  Create Embedding instance from given 2-dimensional FloatTensor.

        Args:
            embeddings (Tensor): FloatTensor containing weights for the Embedding.
                First dimension is being passed to Embedding as ``num_embeddings``, second as ``embedding_dim``.
            freeze (bool, optional): If ``True``, the tensor does not get updated in the learning process.
                Equivalent to ``embedding.weight.requires_grad = False``. Default: ``True``
            padding_idx (int, optional): If specified, the entries at :attr:`padding_idx` do not contribute to the gradient;
                                         therefore, the embedding vector at :attr:`padding_idx` is not updated during training,
                                         i.e. it remains as a fixed "pad".
            max_norm (float, optional): See module initialization documentation.
            norm_type (float, optional): See module initialization documentation. Default ``2``.
            scale_grad_by_freq (bool, optional): See module initialization documentation. Default ``False``.
            sparse (bool, optional): See module initialization documentation.

        Examples::

            >>> # FloatTensor containing pretrained weights
            >>> weight = torch.FloatTensor([[1, 2.3, 3], [4, 5.1, 6.3]])
            >>> embedding = nn.Embedding.from_pretrained(weight)
            >>> # Get embeddings for index 1
            >>> input = torch.LongTensor([1])
            >>> # xdoctest: +IGNORE_WANT("non-deterministic")
            >>> embedding(input)
            tensor([[ 4.0000,  5.1000,  6.3000]])
        rB   ú4Embeddings parameter is expected to be 2-dimensional)	r   r   r   r   r   r   r   r   r   )Údimr%   )ÚclsÚ
embeddingsr   r   r   r   r   r   ÚrowsÚcolsr<   s              r)   Úfrom_pretrainedzEmbedding.from_pretrainedÖ   sb   € ðL �N‰NÓ Ò!ð	BàAó	BØ!à×%Ñ%‰
ˆˆdÙØØØØØ#ØØØ1Øô

ˆ	ð Ðr*   )	NNç       @FFNFNN©r   N)TNNrR   FF)Ú__name__Ú
__module__Ú__qualname__Ú__doc__Ú__constants__ÚintÚ__annotations__r   ÚfloatÚboolr   r    r#   r/   r=   ÚstrrI   ÚclassmethodrQ   Ú__classcell__©r(   s   @r)   r
   r
      s1  ø… ñ_òB€Mð ÓØÓØ˜#‘ÓØ�u‰oÓØÓØÓØƒNØƒLØƒLð &*Ø$(ØØ#(ØØ$(ØØØñ-àð-ð ð-ð ˜c‘]ð	-ð
 ˜5‘/ð-ð ð-ð !ð-ð ð-ð ˜&Ñ!ð-ð ð-ð 
õ-ó^+ó7ð
	
˜Vð 	
¨ó 	
ð)˜Có )ð ð ØØØØ Øò3ó ô3r*   c                   ó�  ‡ — e Zd ZU dZg d¢Zeed<   eed<   ee   ed<   eed<   e	ed<   e
ed<   eed	<   e	ed
<   e	ed<   ee   ed<   	 	 	 	 	 	 	 	 	 	 ddededee   dede	d	ed
e	dee
   de	dee   ddfˆ fd„Zdd„Zdd„Z	 	 dde
dee
   dee
   de
fd„Zdefd„Ze	 	 	 	 	 	 	 	 dde
de	dee   dede	d	ed
e	de	dee   dd fd„«       Zˆ xZS )r   aL  Compute sums or means of 'bags' of embeddings, without instantiating the intermediate embeddings.

    For bags of constant length, no :attr:`per_sample_weights`, no indices equal to :attr:`padding_idx`,
    and with 2D inputs, this class

        * with ``mode="sum"`` is equivalent to :class:`~torch.nn.Embedding` followed by ``torch.sum(dim=1)``,
        * with ``mode="mean"`` is equivalent to :class:`~torch.nn.Embedding` followed by ``torch.mean(dim=1)``,
        * with ``mode="max"`` is equivalent to :class:`~torch.nn.Embedding` followed by ``torch.max(dim=1)``.

    However, :class:`~torch.nn.EmbeddingBag` is much more time and memory efficient than using a chain of these
    operations.

    EmbeddingBag also supports per-sample weights as an argument to the forward
    pass. This scales the output of the Embedding before performing a weighted
    reduction as specified by ``mode``. If :attr:`per_sample_weights` is passed, the
    only supported ``mode`` is ``"sum"``, which computes a weighted sum according to
    :attr:`per_sample_weights`.

    Args:
        num_embeddings (int): size of the dictionary of embeddings
        embedding_dim (int): the size of each embedding vector
        max_norm (float, optional): If given, each embedding vector with norm larger than :attr:`max_norm`
                                    is renormalized to have norm :attr:`max_norm`.
        norm_type (float, optional): The p of the p-norm to compute for the :attr:`max_norm` option. Default ``2``.
        scale_grad_by_freq (bool, optional): if given, this will scale gradients by the inverse of frequency of
                                                the words in the mini-batch. Default ``False``.
                                                Note: this option is not supported when ``mode="max"``.
        mode (str, optional): ``"sum"``, ``"mean"`` or ``"max"``. Specifies the way to reduce the bag.
                                 ``"sum"`` computes the weighted sum, taking :attr:`per_sample_weights`
                                 into consideration. ``"mean"`` computes the average of the values
                                 in the bag, ``"max"`` computes the max value over each bag.
                                 Default: ``"mean"``
        sparse (bool, optional): if ``True``, gradient w.r.t. :attr:`weight` matrix will be a sparse tensor. See
                                 Notes for more details regarding sparse gradients. Note: this option is not
                                 supported when ``mode="max"``.
        include_last_offset (bool, optional): if ``True``, :attr:`offsets` has one additional element, where the last element
                                      is equivalent to the size of `indices`. This matches the CSR format.
        padding_idx (int, optional): If specified, the entries at :attr:`padding_idx` do not contribute to the
                                     gradient; therefore, the embedding vector at :attr:`padding_idx` is not updated
                                     during training, i.e. it remains as a fixed "pad". For a newly constructed
                                     EmbeddingBag, the embedding vector at :attr:`padding_idx` will default to all
                                     zeros, but can be updated to another value to be used as the padding vector.
                                     Note that the embedding vector at :attr:`padding_idx` is excluded from the
                                     reduction.

    Attributes:
        weight (Tensor): the learnable weights of the module of shape `(num_embeddings, embedding_dim)`
                         initialized from :math:`\mathcal{N}(0, 1)`.

    Examples::

        >>> # an EmbeddingBag module containing 10 tensors of size 3
        >>> embedding_sum = nn.EmbeddingBag(10, 3, mode='sum')
        >>> # a batch of 2 samples of 4 indices each
        >>> input = torch.tensor([1, 2, 4, 5, 4, 3, 2, 9], dtype=torch.long)
        >>> offsets = torch.tensor([0, 4], dtype=torch.long)
        >>> # xdoctest: +IGNORE_WANT("non-deterministic")
        >>> embedding_sum(input, offsets)
        tensor([[-0.8861, -5.4350, -0.0523],
                [ 1.1306, -2.5798, -1.0044]])

        >>> # Example with padding_idx
        >>> embedding_sum = nn.EmbeddingBag(10, 3, mode='sum', padding_idx=2)
        >>> input = torch.tensor([2, 2, 2, 2, 4, 3, 2, 9], dtype=torch.long)
        >>> offsets = torch.tensor([0, 4], dtype=torch.long)
        >>> embedding_sum(input, offsets)
        tensor([[ 0.0000,  0.0000,  0.0000],
                [-0.7082,  3.2145, -2.6251]])

        >>> # An EmbeddingBag can be loaded from an Embedding like so
        >>> embedding = nn.Embedding(10, 3, padding_idx=2)
        >>> embedding_sum = nn.EmbeddingBag.from_pretrained(
                embedding.weight,
                padding_idx=embedding.padding_idx,
                mode='sum')
    )	r   r   r   r   r   Úmoder   Úinclude_last_offsetr   r   r   r   r   r   r   rb   r   rc   r   Nr   r   c                 ó  •— ||dœ}t         ‰| �  «        || _        || _        || _        || _        || _        |
�F|
dkD  r|
| j                  k  s2J d«       ‚|
dk  r&|
| j                   k\  sJ d«       ‚| j                  |
z   }
|
| _        |€7t        t        j                  ||ffi |¤Ž«      | _        | j                  «        n1t        |j                  «      ||gk(  sJ d«       ‚t        |«      | _        || _        || _        |	| _        y )Nr   r   z)padding_idx must be within num_embeddingsr   )r   r    r   r   r   r   r   r   r   r!   r"   r   r#   r$   r%   rb   r   rc   )r&   r   r   r   r   r   rb   r   r   rc   r   r   r   r'   r(   s                 €r)   r    zEmbeddingBag.__init__r  s7  ø€ ð %+°UÑ;ˆÜ‰ÑÔØ,ˆÔØ*ˆÔØ ˆŒØ"ˆŒØ"4ˆÔØÐ"Ø˜QŠà $×"5Ñ"5Ò5ð?à>ó?Ø5à˜q’à D×$7Ñ$7Ð#7Ò7ð?à>ó?Ø7à"×1Ñ1°KÑ?�Ø&ˆÔØˆ?Ü#Ü—‘˜^¨]Ð;ÑN¸~ÑNóˆDŒKð ×!Ñ!Õ#ä˜Ÿ™Ó&ØØð+ò ð Qð QóQð ô $ GÓ,ˆDŒKØˆŒ	ØˆŒØ#6ˆÕ r*   c                 ób   — t        j                  | j                  «       | j                  «        y r,   r-   r0   s    r)   r#   zEmbeddingBag.reset_parameters¢  r1   r*   c                 óÀ   — | j                   �Ft        j                  «       5  | j                  | j                      j	                  d«       d d d «       y y # 1 sw Y   y xY wr3   r4   r0   s    r)   r/   z(EmbeddingBag._fill_padding_idx_with_zero¦  r7   r8   r9   ÚoffsetsÚper_sample_weightsc                 óà   — t        j                  || j                  || j                  | j                  | j
                  | j                  | j                  || j                  | j                  «      S )aÛ  Forward pass of EmbeddingBag.

        Args:
            input (Tensor): Tensor containing bags of indices into the embedding matrix.
            offsets (Tensor, optional): Only used when :attr:`input` is 1D. :attr:`offsets` determines
                the starting index position of each bag (sequence) in :attr:`input`.
            per_sample_weights (Tensor, optional): a tensor of float / double weights, or None
                to indicate all weights should be taken to be ``1``. If specified, :attr:`per_sample_weights`
                must have exactly the same shape as input and is treated as having the same
                :attr:`offsets`, if those are not ``None``. Only supported for ``mode='sum'``.

        Returns:
            Tensor output shape of `(B, embedding_dim)`.

        .. note::

            A few notes about ``input`` and ``offsets``:

            - :attr:`input` and :attr:`offsets` have to be of the same type, either int or long

            - If :attr:`input` is 2D of shape `(B, N)`, it will be treated as ``B`` bags (sequences)
              each of fixed length ``N``, and this will return ``B`` values aggregated in a way
              depending on the :attr:`mode`. :attr:`offsets` is ignored and required to be ``None`` in this case.

            - If :attr:`input` is 1D of shape `(N)`, it will be treated as a concatenation of
              multiple bags (sequences).  :attr:`offsets` is required to be a 1D tensor containing the
              starting index positions of each bag in :attr:`input`. Therefore, for :attr:`offsets` of shape `(B)`,
              :attr:`input` will be viewed as having ``B`` bags. Empty bags (i.e., having 0-length) will have
              returned vectors filled by zeros.
        )
r;   Úembedding_bagr   r   r   r   rb   r   rc   r   )r&   r9   rg   rh   s       r)   r=   zEmbeddingBag.forward«  s]   € ôH �‰ØØ�K‰KØØ�M‰MØ�N‰NØ×#Ñ#Ø�I‰IØ�K‰KØØ×$Ñ$Ø×Ñó
ð 	
r*   c                 ó<  — d}| j                   �|dz  }| j                  dk7  r|dz  }| j                  dur|dz  }|dz  }| j                  �|dz  } |j                  d	i | j
                  j                  «       D ��ci c]  \  }}|t        |«      “Œ c}}¤ŽS c c}}w )
Nr?   rA   rB   rC   FrD   z, mode={mode}r@   rE   )r   r   r   r   rF   rG   ÚitemsÚrepr)r&   rH   ÚkÚvs       r)   rI   zEmbeddingBag.extra_reprÝ  s¨   € Ø/ˆØ�=‰=Ð$ØÐ(Ñ(ˆAØ�>‰>˜QÒØÐ*Ñ*ˆAØ×"Ñ"¨%Ñ/ØÐ<Ñ<ˆAØ	ˆ_ÑˆØ×ÑÐ'ØÐ.Ñ.ˆAØˆq�x‰xÑI°$·-±-×2EÑ2EÓ2G×H©$¨!¨Q˜1œd 1›g™:ÓHÑIÐIùÓHs   Á<BrN   r   c
                 ó    — |j                  «       dk(  sJ d«       ‚|j                  \  }
} | |
|||||||||	¬«
      }| |j                  _        |S )a…  Create EmbeddingBag instance from given 2-dimensional FloatTensor.

        Args:
            embeddings (Tensor): FloatTensor containing weights for the EmbeddingBag.
                First dimension is being passed to EmbeddingBag as 'num_embeddings', second as 'embedding_dim'.
            freeze (bool, optional): If ``True``, the tensor does not get updated in the learning process.
                Equivalent to ``embeddingbag.weight.requires_grad = False``. Default: ``True``
            max_norm (float, optional): See module initialization documentation. Default: ``None``
            norm_type (float, optional): See module initialization documentation. Default ``2``.
            scale_grad_by_freq (bool, optional): See module initialization documentation. Default ``False``.
            mode (str, optional): See module initialization documentation. Default: ``"mean"``
            sparse (bool, optional): See module initialization documentation. Default: ``False``.
            include_last_offset (bool, optional): See module initialization documentation. Default: ``False``.
            padding_idx (int, optional): See module initialization documentation. Default: ``None``.

        Examples::

            >>> # FloatTensor containing pretrained weights
            >>> weight = torch.FloatTensor([[1, 2.3, 3], [4, 5.1, 6.3]])
            >>> embeddingbag = nn.EmbeddingBag.from_pretrained(weight)
            >>> # Get embeddings for index 1
            >>> input = torch.LongTensor([[1, 0]])
            >>> # xdoctest: +IGNORE_WANT("non-deterministic")
            >>> embeddingbag(input)
            tensor([[ 2.5000,  3.7000,  4.6500]])
        rB   rK   )
r   r   r   r   r   r   rb   r   rc   r   )rL   r%   r   r   )rM   rN   r   r   r   r   rb   r   rc   r   rO   rP   Úembeddingbags                r)   rQ   zEmbeddingBag.from_pretrainedê  su   € ðP �N‰NÓ Ò!ð	BàAó	BØ!à×%Ñ%‰
ˆˆdÙØØØØØØ1ØØØ 3Ø#ô
ˆð 17¨Jˆ×ÑÔ)ØÐr*   )
NrR   FÚmeanFNFNNNrS   )NN)TNrR   Frr   FFN)rT   rU   rV   rW   rX   rY   rZ   r   r[   r\   r   r]   r    r#   r/   r=   rI   r^   rQ   r_   r`   s   @r)   r   r     sá  ø… ñKòZ
€Mð ÓØÓØ�u‰oÓØÓØÓØƒNØ
ƒIØƒLØÓØ˜#‘Óð %)ØØ#(ØØØ$(Ø$)Ø%)ØØñ.7àð.7ð ð.7ð ˜5‘/ð	.7ð
 ð.7ð !ð.7ð ð.7ð ð.7ð ˜&Ñ!ð.7ð "ð.7ð ˜c‘]ð.7ð 
õ.7ó`+ó7ð %)Ø/3ñ	0
àð0
ð ˜&Ñ!ð0
ð % VÑ,ð	0
ð
 
ó0
ðdJ˜Có Jð ð Ø$(ØØ#(ØØØ$)Ø%)ñ7àð7ð ð7ð ˜5‘/ð	7ð
 ð7ð !ð7ð ð7ð ð7ð "ð7ð ˜c‘]ð7ð 
ò7ó ô7r*   )Útypingr   r!   r   Útorch.nnr   r;   r   Útorch.nn.parameterr   Úmoduler	   Ú__all__r
   r   rE   r*   r)   ú<module>rx      s@   ðå ã Ý ß *Ý (å ð ˜Ð
'€ô{�ô {ô|U�6õ Ur*   