Ë
    [^(hh^  ã                   óv  — d Z ddlZddlZddlmZ ddlZddlmZ d'd„Zd'd„Z	d'd„Z
d„ Zd	„ Zd'd
„Z	 	 	 d(dedededeej                     def
d„Z	 	 	 d(dedededeej                     def
d„Z	 	 	 	 	 d)dedededededeej                     defd„Zdededefd„Zdedefd„Zdedefd„Zd„ Zd*d„Zd„ Z	 	 d+dededeej                     defd„Z	 	 d+dededeej                     defd„Zd„ Z	 	 	 	 d,deded ed!edeej                     f
d"„Z	 	 	 	 d,deded ed!edeej                     f
d#„Z	 	 d-deej                     fd$„Z	 	 d.deej                     fd%„Z d&„ Z! e!e«      Z" e!e«      Z# e!e«      Z$ e!e«      Z% e!e«      Z& e!e«      Z' e!e«      Z( e!e«      Z) e!e«      Z* e!e«      Z+ e!e «      Z,y)/zHThis file contains utilities for initializing neural network parameters.é    N)ÚOptional)ÚTensorc                 ó~   — t        j                  «       5  | j                  |||¬«      cd d d «       S # 1 sw Y   y xY w©N©Ú	generator)ÚtorchÚno_gradÚuniform_©ÚtensorÚaÚbr   s       úK/var/www/skyplay_api_hub/venv/lib/python3.12/site-packages/torch/nn/init.pyÚ_no_grad_uniform_r      s2   € Ü	�‰‹ñ :Ø�‰˜q !¨yˆÓ9÷:÷ :ò :úó   •3³<c                 ó~   — t        j                  «       5  | j                  |||¬«      cd d d «       S # 1 sw Y   y xY wr   )r	   r
   Únormal_©r   ÚmeanÚstdr   s       r   Ú_no_grad_normal_r      s2   € Ü	�‰‹ñ >Ø�~‰~˜d C°9ˆ~Ó=÷>÷ >ò >úr   c                 óè  — d„ }||d|z  z
  k  s||d|z  z   kD  rt        j                  dd¬«       t        j                  «       5   |||z
  |z  «      } |||z
  |z  «      }| j	                  d|z  dz
  d|z  dz
  |¬«       | j                  «        | j                  |t        j                  d«      z  «       | j                  |«       | j                  ||¬«       | cd d d «       S # 1 sw Y   y xY w)	Nc                 ód   — dt        j                  | t        j                  d«      z  «      z   dz  S )Nç      ð?ç       @)ÚmathÚerfÚsqrt)Úxs    r   Únorm_cdfz(_no_grad_trunc_normal_.<locals>.norm_cdf   s(   € à”d—h‘h˜q¤4§9¡9¨S£>Ñ1Ó2Ñ2°cÑ9Ð9ó    é   zjmean is more than 2 std from [a, b] in nn.init.trunc_normal_. The distribution of values may be incorrect.©Ú
stacklevelé   r   r   )ÚminÚmax)ÚwarningsÚwarnr	   r
   r   Úerfinv_Úmul_r   r   Úadd_Úclamp_)	r   r   r   r   r   r   r!   ÚlÚus	            r   Ú_no_grad_trunc_normal_r1      sð   € ò:ð 	ˆq�1�s‘7‰{Ò  q¨1¨s©7¡{Ò 2Ü�‰ð;àõ	
ô 
�‰‹ñ ñ �a˜$‘h #Ñ%Ó&ˆÙ�a˜$‘h #Ñ%Ó&ˆð 	�‰˜˜A™ ™	 1 q¡5¨1¡9¸	ˆÔBð 	�‰Ôð 	�‰�Cœ$Ÿ)™) C›.Ñ(Ô)Ø�‰�DÔð 	�‰˜! ˆÔ#Ø÷+÷ ò ús   ÁBC(Ã(C1c                 óx   — t        j                  «       5  | j                  |«      cd d d «       S # 1 sw Y   y xY w©N)r	   r
   Úfill_©r   Úvals     r   Ú_no_grad_fill_r7   >   s,   € Ü	�‰‹ñ !Ø�|‰|˜CÓ ÷!÷ !ò !ús   •0°9c                 óv   — t        j                  «       5  | j                  «       cd d d «       S # 1 sw Y   y xY wr3   )r	   r
   Úzero_©r   s    r   Ú_no_grad_zero_r;   C   s)   € Ü	�‰‹ñ Ø�|‰|‹~÷÷ ò ús   •/¯8c                 ó\  — g d¢}| |v s| dk(  ry| dk(  ry| dk(  rt        j                  d«      S | dk(  re|€d	}nBt        |t        «      st        |t        «      st        |t
        «      r|}nt        d
|› d�«      ‚t        j                  dd|dz  z   z  «      S | dk(  r	 yt        d| › �«      ‚)aÞ  Return the recommended gain value for the given nonlinearity function.

    The values are as follows:

    ================= ====================================================
    nonlinearity      gain
    ================= ====================================================
    Linear / Identity :math:`1`
    Conv{1,2,3}D      :math:`1`
    Sigmoid           :math:`1`
    Tanh              :math:`\frac{5}{3}`
    ReLU              :math:`\sqrt{2}`
    Leaky Relu        :math:`\sqrt{\frac{2}{1 + \text{negative\_slope}^2}}`
    SELU              :math:`\frac{3}{4}`
    ================= ====================================================

    .. warning::
        In order to implement `Self-Normalizing Neural Networks`_ ,
        you should use ``nonlinearity='linear'`` instead of ``nonlinearity='selu'``.
        This gives the initial weights a variance of ``1 / N``,
        which is necessary to induce a stable fixed point in the forward pass.
        In contrast, the default gain for ``SELU`` sacrifices the normalization
        effect for more stable gradient flow in rectangular layers.

    Args:
        nonlinearity: the non-linear function (`nn.functional` name)
        param: optional parameter for the non-linear function

    Examples:
        >>> gain = nn.init.calculate_gain('leaky_relu', 0.2)  # leaky_relu with negative_slope=0.2

    .. _Self-Normalizing Neural Networks: https://papers.nips.cc/paper/2017/hash/5d44ee6f2c3f71b73125876103c8f6c4-Abstract.html
    )ÚlinearÚconv1dÚconv2dÚconv3dÚconv_transpose1dÚconv_transpose2dÚconv_transpose3dÚsigmoidr&   Útanhg«ªªªªªú?Úrelur   Ú
leaky_reluç{®Gáz„?znegative_slope z not a valid numberr#   Úselug      è?zUnsupported nonlinearity )r   r   Ú
isinstanceÚboolÚintÚfloatÚ
ValueError)ÚnonlinearityÚparamÚ
linear_fnsÚnegative_slopes       r   Úcalculate_gainrS   H   sÎ   € òD€Jð �zÑ! \°YÒ%>ØØ	˜Ò	ØØ	˜Ò	Ü�y‰y˜‹~ÐØ	˜Ò	%Øˆ=Ø!‰Nä˜5¤$Ô'Ü˜5¤#Ô&Ü˜%¤Ô'ð #‰Nä˜¨u¨gÐ5HÐIÓJÐJÜ�y‰y˜  N°AÑ$5Ñ 5Ñ6Ó7Ð7Ø	˜Ò	àð	
ô Ð4°\°NÐCÓDÐDr"   r   r   r   r   Úreturnc                 ó°   — t         j                  j                  | «      r*t         j                  j                  t        | f| |||¬«      S t        | |||«      S )a«  Fill the input Tensor with values drawn from the uniform distribution.

    :math:`\mathcal{U}(a, b)`.

    Args:
        tensor: an n-dimensional `torch.Tensor`
        a: the lower bound of the uniform distribution
        b: the upper bound of the uniform distribution
        generator: the torch Generator to sample from (default: None)

    Examples:
        >>> w = torch.empty(3, 5)
        >>> nn.init.uniform_(w)
    r   )r	   Ú	overridesÚhas_torch_function_variadicÚhandle_torch_functionr   r   r   s       r   r   r   Ž   sT   € ô( ‡�×2Ñ2°6Ô:Ü�‰×4Ñ4Ü�v�i¨°!°qÀIð 5ó 
ð 	
ô ˜V Q¨¨9Ó5Ð5r"   r   r   c                 ó°   — t         j                  j                  | «      r*t         j                  j                  t        | f| |||¬«      S t        | |||«      S )aÁ  Fill the input Tensor with values drawn from the normal distribution.

    :math:`\mathcal{N}(\text{mean}, \text{std}^2)`.

    Args:
        tensor: an n-dimensional `torch.Tensor`
        mean: the mean of the normal distribution
        std: the standard deviation of the normal distribution
        generator: the torch Generator to sample from (default: None)

    Examples:
        >>> w = torch.empty(3, 5)
        >>> nn.init.normal_(w)
    r   )r	   rV   rW   rX   r   r   r   s       r   r   r   ©   sT   € ô( ‡�×2Ñ2°6Ô:Ü�‰×4Ñ4Ü�f�Y v°D¸cÈYð 5ó 
ð 	
ô ˜F D¨#¨yÓ9Ð9r"   c                 ó$   — t        | |||||¬«      S )a  Fill the input Tensor with values drawn from a truncated normal distribution.

    The values are effectively drawn from the
    normal distribution :math:`\mathcal{N}(\text{mean}, \text{std}^2)`
    with values outside :math:`[a, b]` redrawn until they are within
    the bounds. The method used for generating the random values works
    best when :math:`a \leq \text{mean} \leq b`.

    Args:
        tensor: an n-dimensional `torch.Tensor`
        mean: the mean of the normal distribution
        std: the standard deviation of the normal distribution
        a: the minimum cutoff value
        b: the maximum cutoff value
        generator: the torch Generator to sample from (default: None)

    Examples:
        >>> w = torch.empty(3, 5)
        >>> nn.init.trunc_normal_(w)
    r   )r1   )r   r   r   r   r   r   s         r   Útrunc_normal_r[   Ä   s   € ô8 " &¨$°°Q¸ÀYÔOÐOr"   r6   c                 ó¨   — t         j                  j                  | «      r(t         j                  j                  t        | f| |¬«      S t        | |«      S )zþFill the input Tensor with the value :math:`\text{val}`.

    Args:
        tensor: an n-dimensional `torch.Tensor`
        val: the value to fill the tensor with

    Examples:
        >>> w = torch.empty(3, 5)
        >>> nn.init.constant_(w, 0.3)
    r5   )r	   rV   rW   rX   Ú	constant_r7   r5   s     r   r]   r]   ã   sL   € ô ‡�×2Ñ2°6Ô:Ü�‰×4Ñ4Ü˜�y¨°Sð 5ó 
ð 	
ô ˜& #Ó&Ð&r"   c                 ó   — t        | d«      S )z¾Fill the input Tensor with the scalar value `1`.

    Args:
        tensor: an n-dimensional `torch.Tensor`

    Examples:
        >>> w = torch.empty(3, 5)
        >>> nn.init.ones_(w)
    r   )r7   r:   s    r   Úones_r_   õ   s   € ô ˜& #Ó&Ð&r"   c                 ó   — t        | «      S )z¿Fill the input Tensor with the scalar value `0`.

    Args:
        tensor: an n-dimensional `torch.Tensor`

    Examples:
        >>> w = torch.empty(3, 5)
        >>> nn.init.zeros_(w)
    )r;   r:   s    r   Úzeros_ra     s   € ô ˜&Ó!Ð!r"   c                 óê   — | j                  «       dk7  rt        d«      ‚t        j                  «       5  t        j                  | j
                  | | j                  dœŽ ddd«       | S # 1 sw Y   | S xY w)a=  Fill the 2-dimensional input `Tensor` with the identity matrix.

    Preserves the identity of the inputs in `Linear` layers, where as
    many inputs are preserved as possible.

    Args:
        tensor: a 2-dimensional `torch.Tensor`

    Examples:
        >>> w = torch.empty(3, 5)
        >>> nn.init.eye_(w)
    r#   ú,Only tensors with 2 dimensions are supported)ÚoutÚrequires_gradN)Ú
ndimensionrN   r	   r
   ÚeyeÚshapere   r:   s    r   Úeye_ri     sa   € ð ×ÑÓ˜aÒÜÐGÓHÐHä	�‰‹ñ QÜ�	‰	�6—<‘< V¸6×;OÑ;OÓP÷Qà€M÷Qà€Mús   ³+A(Á(A2c                 ó¾  — | j                  «       }|dvrt        d«      ‚| j                  «       }|d   |z  dk7  rt        d«      ‚|d   |z  }t        ||d   «      }t	        j
                  «       5  | j                  «        t        |«      D ]·  }t        |«      D ]§  }|dk(  r!d| ||z  |z   || j                  d«      dz  f<   Œ)|dk(  r4d| ||z  |z   || j                  d«      dz  | j                  d«      dz  f<   Œbd| ||z  |z   || j                  d«      dz  | j                  d«      dz  | j                  d«      dz  f<   Œ© Œ¹ 	 d	d	d	«       | S # 1 sw Y   | S xY w)
aF  Fill the {3, 4, 5}-dimensional input `Tensor` with the Dirac delta function.

    Preserves the identity of the inputs in `Convolutional`
    layers, where as many input channels are preserved as possible. In case
    of groups>1, each group of channels preserves identity

    Args:
        tensor: a {3, 4, 5}-dimensional `torch.Tensor`
        groups (int, optional): number of groups in the conv layer (default: 1)
    Examples:
        >>> w = torch.empty(3, 16, 5, 5)
        >>> nn.init.dirac_(w)
        >>> w = torch.empty(3, 24, 5, 5)
        >>> nn.init.dirac_(w, 3)
    )é   é   é   z5Only tensors with 3, 4, or 5 dimensions are supportedr   z!dim 0 must be divisible by groupsr&   rk   r#   rl   N)rf   rN   Úsizer'   r	   r
   r9   Úrange)r   ÚgroupsÚ
dimensionsÚsizesÚout_chans_per_grpÚmin_dimÚgÚds           r   Údirac_rw   $  s•  € ð  ×"Ñ"Ó$€JØ˜Ñ"ÜÐPÓQÐQà�K‰K‹M€EàˆQ�x�&Ñ˜AÒÜÐ<Ó=Ð=à˜a™ FÑ*ÐÜÐ# U¨1¡XÓ.€Gä	�‰‹ñ Ø�‰Œä�v“ò 	ˆAÜ˜7“^ò �Ø ’?ØPQ�F˜1Ð0Ñ0°1Ñ4°a¸¿¹ÀQ»È1Ñ9LÐLÒMØ 1’_ð ð ØÐ-Ñ-°Ñ1ØØŸ™ A›¨!Ñ+ØŸ™ A›¨!Ñ+ð-òð ð ØÐ-Ñ-°Ñ1ØØŸ™ A›¨!Ñ+ØŸ™ A›¨!Ñ+ØŸ™ A›¨!Ñ+ð	-òññ	÷ð, €M÷-ð, €Mús   Á1CEÅEc                 óþ   — | j                  «       }|dk  rt        d«      ‚| j                  d«      }| j                  d«      }d}| j                  «       dkD  r| j                  dd  D ]  }||z  }Œ	 ||z  }||z  }||fS )Nr#   zNFan in and fan out can not be computed for tensor with fewer than 2 dimensionsr&   r   )ÚdimrN   rn   rh   )r   rq   Únum_input_fmapsÚnum_output_fmapsÚreceptive_field_sizeÚsÚfan_inÚfan_outs           r   Ú_calculate_fan_in_and_fan_outr€   Y  sœ   € Ø—‘“€JØ�A‚~ÜØ\ó
ð 	
ð —k‘k !“n€OØ—{‘{ 1“~ÐØÐØ‡z�zƒ|�aÒð —‘˜a˜bÐ!ò 	&ˆAØ  AÑ%Ñ ð	&àÐ3Ñ3€FØÐ!5Ñ5€Gà�7ˆ?Ðr"   Úgainc                 óº   — t        | «      \  }}|t        j                  dt        ||z   «      z  «      z  }t        j                  d«      |z  }t	        | | ||«      S )a³  Fill the input `Tensor` with values using a Xavier uniform distribution.

    The method is described in `Understanding the difficulty of training
    deep feedforward neural networks` - Glorot, X. & Bengio, Y. (2010).
    The resulting tensor will have values sampled from
    :math:`\mathcal{U}(-a, a)` where

    .. math::
        a = \text{gain} \times \sqrt{\frac{6}{\text{fan\_in} + \text{fan\_out}}}

    Also known as Glorot initialization.

    Args:
        tensor: an n-dimensional `torch.Tensor`
        gain: an optional scaling factor
        generator: the torch Generator to sample from (default: None)

    Examples:
        >>> w = torch.empty(3, 5)
        >>> nn.init.xavier_uniform_(w, gain=nn.init.calculate_gain('relu'))

    Note:
        Be aware that ``fan_in`` and ``fan_out`` are calculated assuming
        that the weight matrix is used in a transposed manner,
        (i.e., ``x @ w.T`` in ``Linear`` layers, where ``w.shape = [fan_out, fan_in]``).
        This is important for correct initialization.
        If you plan to use ``x @ w``, where ``w.shape = [fan_in, fan_out]``,
        pass in a transposed weight matrix, i.e. ``nn.init.xavier_uniform_(w.T, ...)``.
    r   ç      @)r€   r   r   rM   r   )r   r�   r   r~   r   r   r   s          r   Úxavier_uniform_r„   n  sZ   € ôD 4°FÓ;�O€FˆGØ
”—‘˜3¤ v°Ñ'7Ó!8Ñ8Ó9Ñ
9€CÜ�	‰	�#‹˜Ñ€Aä˜V a R¨¨IÓ6Ð6r"   c                 óˆ   — t        | «      \  }}|t        j                  dt        ||z   «      z  «      z  }t	        | d||«      S )aš  Fill the input `Tensor` with values using a Xavier normal distribution.

    The method is described in `Understanding the difficulty of training deep feedforward
    neural networks` - Glorot, X. & Bengio, Y. (2010). The resulting tensor
    will have values sampled from :math:`\mathcal{N}(0, \text{std}^2)` where

    .. math::
        \text{std} = \text{gain} \times \sqrt{\frac{2}{\text{fan\_in} + \text{fan\_out}}}

    Also known as Glorot initialization.

    Args:
        tensor: an n-dimensional `torch.Tensor`
        gain: an optional scaling factor
        generator: the torch Generator to sample from (default: None)

    Examples:
        >>> w = torch.empty(3, 5)
        >>> nn.init.xavier_normal_(w)

    Note:
        Be aware that ``fan_in`` and ``fan_out`` are calculated assuming
        that the weight matrix is used in a transposed manner,
        (i.e., ``x @ w.T`` in ``Linear`` layers, where ``w.shape = [fan_out, fan_in]``).
        This is important for correct initialization.
        If you plan to use ``x @ w``, where ``w.shape = [fan_in, fan_out]``,
        pass in a transposed weight matrix, i.e. ``nn.init.xavier_normal_(w.T, ...)``.
    r   ç        )r€   r   r   rM   r   )r   r�   r   r~   r   r   s         r   Úxavier_normal_r‡   —  sF   € ôB 4°FÓ;�O€FˆGØ
”—‘˜3¤ v°Ñ'7Ó!8Ñ8Ó9Ñ
9€Cä˜F C¨¨iÓ8Ð8r"   c                 ó‚   — |j                  «       }ddg}||vrt        d|› d|› �«      ‚t        | «      \  }}|dk(  r|S |S )Nr~   r   zMode z" not supported, please use one of )ÚlowerrN   r€   )r   ÚmodeÚvalid_modesr~   r   s        r   Ú_calculate_correct_fanrŒ   ¾  sX   € Ø�:‰:‹<€DØ˜YÐ'€KØ�;ÑÜ˜5  Ð&HÈÈÐVÓWÐWä3°FÓ;�O€FˆGØ˜XÒ%ˆ6Ð2¨7Ð2r"   rŠ   rO   c           	      óî  — t         j                  j                  | «      r+t         j                  j                  t        | f| ||||¬«      S d| j
                  v rt        j                  d«       | S t        | |«      }t        ||«      }|t        j                  |«      z  }t        j                  d«      |z  }t        j                  «       5  | j                  | ||¬«      cddd«       S # 1 sw Y   yxY w)a¸  Fill the input `Tensor` with values using a Kaiming uniform distribution.

    The method is described in `Delving deep into rectifiers: Surpassing
    human-level performance on ImageNet classification` - He, K. et al. (2015).
    The resulting tensor will have values sampled from
    :math:`\mathcal{U}(-\text{bound}, \text{bound})` where

    .. math::
        \text{bound} = \text{gain} \times \sqrt{\frac{3}{\text{fan\_mode}}}

    Also known as He initialization.

    Args:
        tensor: an n-dimensional `torch.Tensor`
        a: the negative slope of the rectifier used after this layer (only
            used with ``'leaky_relu'``)
        mode: either ``'fan_in'`` (default) or ``'fan_out'``. Choosing ``'fan_in'``
            preserves the magnitude of the variance of the weights in the
            forward pass. Choosing ``'fan_out'`` preserves the magnitudes in the
            backwards pass.
        nonlinearity: the non-linear function (`nn.functional` name),
            recommended to use only with ``'relu'`` or ``'leaky_relu'`` (default).
        generator: the torch Generator to sample from (default: None)

    Examples:
        >>> w = torch.empty(3, 5)
        >>> nn.init.kaiming_uniform_(w, mode='fan_in', nonlinearity='relu')

    Note:
        Be aware that ``fan_in`` and ``fan_out`` are calculated assuming
        that the weight matrix is used in a transposed manner,
        (i.e., ``x @ w.T`` in ``Linear`` layers, where ``w.shape = [fan_out, fan_in]``).
        This is important for correct initialization.
        If you plan to use ``x @ w``, where ``w.shape = [fan_in, fan_out]``,
        pass in a transposed weight matrix, i.e. ``nn.init.kaiming_uniform_(w.T, ...)``.
    )r   r   rŠ   rO   r   r   ú,Initializing zero-element tensors is a no-oprƒ   r   N)r	   rV   rW   rX   Úkaiming_uniform_rh   r)   r*   rŒ   rS   r   r   r
   r   )	r   r   rŠ   rO   r   Úfanr�   r   Úbounds	            r   r�   r�   È  sÜ   € ôV ‡�×2Ñ2°6Ô:Ü�‰×4Ñ4ÜØˆIØØØØ%Øð 5ó 
ð 	
ð 	ˆF�L‰LÑÜ�‰ÐDÔEØˆÜ
  ¨Ó
.€CÜ˜,¨Ó*€DØ
”—‘˜3“Ñ
€CÜ�I‰I�c‹N˜SÑ €EÜ	�‰‹ñ CØ�‰ ˜v u¸	ˆÓB÷C÷ Cò Cús   ÃC+Ã+C4c                 ó(  — d| j                   v rt        j                  d«       | S t        | |«      }t	        ||«      }|t        j                  |«      z  }t        j                  «       5  | j                  d||¬«      cddd«       S # 1 sw Y   yxY w)aŸ  Fill the input `Tensor` with values using a Kaiming normal distribution.

    The method is described in `Delving deep into rectifiers: Surpassing
    human-level performance on ImageNet classification` - He, K. et al. (2015).
    The resulting tensor will have values sampled from
    :math:`\mathcal{N}(0, \text{std}^2)` where

    .. math::
        \text{std} = \frac{\text{gain}}{\sqrt{\text{fan\_mode}}}

    Also known as He initialization.

    Args:
        tensor: an n-dimensional `torch.Tensor`
        a: the negative slope of the rectifier used after this layer (only
            used with ``'leaky_relu'``)
        mode: either ``'fan_in'`` (default) or ``'fan_out'``. Choosing ``'fan_in'``
            preserves the magnitude of the variance of the weights in the
            forward pass. Choosing ``'fan_out'`` preserves the magnitudes in the
            backwards pass.
        nonlinearity: the non-linear function (`nn.functional` name),
            recommended to use only with ``'relu'`` or ``'leaky_relu'`` (default).
        generator: the torch Generator to sample from (default: None)

    Examples:
        >>> w = torch.empty(3, 5)
        >>> nn.init.kaiming_normal_(w, mode='fan_out', nonlinearity='relu')

    Note:
        Be aware that ``fan_in`` and ``fan_out`` are calculated assuming
        that the weight matrix is used in a transposed manner,
        (i.e., ``x @ w.T`` in ``Linear`` layers, where ``w.shape = [fan_out, fan_in]``).
        This is important for correct initialization.
        If you plan to use ``x @ w``, where ``w.shape = [fan_in, fan_out]``,
        pass in a transposed weight matrix, i.e. ``nn.init.kaiming_normal_(w.T, ...)``.
    r   rŽ   r   N)
rh   r)   r*   rŒ   rS   r   r   r	   r
   r   )r   r   rŠ   rO   r   r�   r�   r   s           r   Úkaiming_normal_r“   	  s}   € ðV 	ˆF�L‰LÑÜ�‰ÐDÔEØˆÜ
  ¨Ó
.€CÜ˜,¨Ó*€DØ
”—‘˜3“Ñ
€CÜ	�‰‹ñ ;Ø�~‰~˜a °	ˆ~Ó:÷;÷ ;ò ;ús   Á*BÂBc                 ó¢  — | j                  «       dk  rt        d«      ‚| j                  «       dk(  r| S | j                  d«      }| j                  «       |z  }| j	                  ||f«      j                  dd|¬«      }||k  r|j                  «        t        j                  j                  |«      \  }}t        j                  |d«      }|j                  «       }	||	z  }||k  r|j                  «        t        j                  «       5  | j                  |«      j                  |«       | j                  |«       ddd«       | S # 1 sw Y   | S xY w)a   Fill the input `Tensor` with a (semi) orthogonal matrix.

    Described in `Exact solutions to the nonlinear dynamics of learning in deep
    linear neural networks` - Saxe, A. et al. (2013). The input tensor must have
    at least 2 dimensions, and for tensors with more than 2 dimensions the
    trailing dimensions are flattened.

    Args:
        tensor: an n-dimensional `torch.Tensor`, where :math:`n \geq 2`
        gain: optional scaling factor
        generator: the torch Generator to sample from (default: None)

    Examples:
        >>> # xdoctest: +REQUIRES(env:TORCH_DOCTEST_LAPACK)
        >>> w = torch.empty(3, 5)
        >>> nn.init.orthogonal_(w)
    r#   z4Only tensors with 2 or more dimensions are supportedr   r&   r   N)rf   rN   Únumelrn   Ú	new_emptyr   Út_r	   ÚlinalgÚqrÚdiagÚsignr
   Úview_asÚcopy_r,   )
r   r�   r   ÚrowsÚcolsÚ	flattenedÚqÚrrv   Úphs
             r   Úorthogonal_r¤   >  s  € ð, ×ÑÓ˜QÒÜÐOÓPÐPà‡|�|ƒ~˜ÒàˆØ�;‰;�q‹>€DØ�<‰<‹>˜TÑ!€DØ× Ñ  $¨ Ó.×6Ñ6°q¸!ÀyÐ6ÓQ€Iàˆd‚{Ø�‰Œô �<‰<�?‰?˜9Ó%�D€A€qä�
‰
�1�aÓ€AØ	
�‰‹€BØˆ�G€Aàˆd‚{Ø	�‰Œä	�‰‹ñ Ø�‰�qÓ×Ñ Ô"Ø�‰�DÔ÷ð €M÷ð €Mús   Ä2EÅEc                 ó‚  — | j                  «       dk7  rt        d«      ‚| j                  \  }}t        t	        j
                  ||z  «      «      }t        j                  «       5  | j                  d||¬«       t        |«      D ]#  }t        j                  |«      }|d| }	d| |	|f<   Œ% 	 ddd«       | S # 1 sw Y   | S xY w)aŽ  Fill the 2D input `Tensor` as a sparse matrix.

    The non-zero elements will be drawn from the normal distribution
    :math:`\mathcal{N}(0, 0.01)`, as described in `Deep learning via
    Hessian-free optimization` - Martens, J. (2010).

    Args:
        tensor: an n-dimensional `torch.Tensor`
        sparsity: The fraction of elements in each column to be set to zero
        std: the standard deviation of the normal distribution used to generate
            the non-zero values
        generator: the torch Generator to sample from (default: None)

    Examples:
        >>> w = torch.empty(3, 5)
        >>> nn.init.sparse_(w, sparsity=0.1)
    r#   rc   r   r   N)rf   rN   rh   rL   r   Úceilr	   r
   r   ro   Úrandperm)
r   Úsparsityr   r   rž   rŸ   Ú	num_zerosÚcol_idxÚrow_indicesÚzero_indicess
             r   Úsparse_r­   q  sº   € ð. ×ÑÓ˜aÒÜÐGÓHÐHà—‘�J€Dˆ$Ü”D—I‘I˜h¨™oÓ.Ó/€Iä	�‰‹ñ .Ø�‰�q˜#¨ˆÔ3Ü˜T“{ò 	.ˆGÜŸ.™.¨Ó.ˆKØ& z¨	Ð2ˆLØ,-ˆF�< Ð(Ò)ñ	.÷.ð €M÷.ð €Mús   Á#AB4Â4B>c                 ól   ‡ ‡‡— ‰ j                   Š‰d d Šˆ ˆˆfd„}d‰› d‰› d‰› d�|_        ‰|_         |S )Néÿÿÿÿc                  óZ   •— t        j                  d‰› d‰› d�t        d¬«        ‰| i |¤ŽS )Nz	`nn.init.z)` is now deprecated in favor of `nn.init.z`.r#   r$   )r)   r*   ÚFutureWarning)ÚargsÚkwargsÚmethÚnew_nameÚold_names     €€€r   Údeprecated_initz(_make_deprecate.<locals>.deprecated_initœ  s;   ø€ Ü�‰Ø˜�zÐ!JÈ8È*ÐTVÐWÜØõ	
ñ
 �TÐ$˜VÑ$Ð$r"   z
    z_(...)

    .. warning::
        This method is now deprecated in favor of :func:`torch.nn.init.z"`.

    See :func:`~torch.nn.init.z` for details.)Ú__name__Ú__doc__)r´   r·   rµ   r¶   s   ` @@r   Ú_make_deprecaterº   ˜  s\   ú€ Ø�}‰}€HØ˜˜ˆ}€Hö%ð$Ø€Jð Hð IQÀzð Rà'˜j¨ð:€OÔð  (€OÔØÐr"   r3   )r†   r   N)r†   r   g       Àr   N)r&   )r   N)r   r~   rG   N)r&   N)rH   N)-r¹   r   r)   Útypingr   Ú	_Optionalr	   r   r   r   r1   r7   r;   rS   rM   Ú	Generatorr   r   r[   r]   r_   ra   ri   rw   r€   r„   r‡   rŒ   Ústrr�   r“   r¤   r­   rº   ÚuniformÚnormalÚconstantrg   ÚdiracÚxavier_uniformÚxavier_normalÚkaiming_uniformÚkaiming_normalÚ
orthogonalÚsparse© r"   r   ú<module>rÊ      sO  ðá NÛ Û Ý (ã Ý ó:ó
>ó
"òJ!ò
ó
CEðP ØØ,0ñ	6Øð6àð6ð ð6ð ˜Ÿ™Ñ)ð	6ð
 ó6ð: ØØ,0ñ	:Øð:à
ð:ð 
ð:ð ˜Ÿ™Ñ)ð	:ð
 ó:ð: ØØØØ,0ñPØðPà
ðPð 
ðPð ð	Pð
 ðPð ˜Ÿ™Ñ)ðPð óPð>'�fð ' 5ð '¨Vó 'ð$
'�&ð 
'˜Vó 
'ð
"�6ð 
"˜fó 
"òó*2òjð. Ø,0ñ&7Øð&7à
ð&7ð ˜Ÿ™Ñ)ð&7ð ó	&7ðV Ø,0ñ$9Øð$9à
ð$9ð ˜Ÿ™Ñ)ð$9ð ó	$9òN3ð ØØ$Ø,0ñ>CØð>Càð>Cð ð>Cð ð	>Cð
 ˜Ÿ™Ñ)ó>CðF ØØ$Ø,0ñ2;Øð2;àð2;ð ð2;ð ð	2;ð
 ˜Ÿ™Ñ)ó2;ðn 
Ø,0ñ0ð ˜Ÿ™Ñ)ó0ðl 	Ø,0ñ	#ð ˜Ÿ™Ñ)ó	#òNñ. ˜(Ó
#€Ù	˜Ó	!€Ù˜9Ó%€Ù�dÓ€Ù˜Ó€Ù  Ó1€Ù Ó/€Ù!Ð"2Ó3€Ù  Ó1€Ù˜[Ó)€
Ù	˜Ó	!�r"   