o
    Qe]                     @   s   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l
mZ ddlmZ dd	lmZ d dlZd d
l mZmZ d dl mZ d dlmZmZmZmZ g Zd!ddZ						d"ddZ	d#ddZ									d$ddZ	d%dd ZdS )&    N   )check_variable_and_dtype
check_type)LayerHelper)create_parameter   )Constant)	ParamAttr)dygraph_utils)_C_ops_legacy_C_ops)in_dynamic_mode)core_non_static_modein_dygraph_mode_in_legacy_dygraph   -q=c           	      C   sr  t  r"tjjj|g| jd}t| t|||dd}| t	|| S t
 rGtjjj|g| jd}t| d|dt|ddd|	}| t|| S t|dttfd	 t|dtd	 t| d
g dd	 t| jdkrv|dkrv|dkrvtd||t|d|d}tdi t }|j| jd}|jdd| id|i|d |jj|jd}tjdg||jd}tj| t	|||dS )a`  
    Normalize ``x`` along dimension ``axis`` using :math:`L_p` norm. This layer computes

    .. math::

        y = \frac{x}{ \max\left( \lvert \lvert x \rvert \rvert_p, epsilon\right) }

    .. math::
        \lvert \lvert x \rvert \rvert_p = \left( \sum_i {\lvert x_i \rvert^p}  \right)^{1/p}

    where, :math:`\sum_i{\lvert x_i \rvert^p}` is calculated along the ``axis`` dimension.


    Parameters:
        x (Tensor): The input tensor could be N-D tensor, and the input data type could be float32 or float64.
        p (float|int, optional): The exponent value in the norm formulation. Default: 2.
        axis (int, optional): The axis on which to apply normalization. If `axis < 0`, the dimension to normalization is `x.ndim + axis`. -1 is the last dimension.
        epsilon (float, optional): Small float added to denominator to avoid dividing by zero. Default is 1e-12.
        name (str, optional): Name for the operation (optional, default is None). For more information, please refer to :ref:`api_guide_Name`.

    Returns:
        Tensor, the output has the same shape and data type with ``x``.

    Examples:

        .. code-block:: python

            import paddle
            import paddle.nn.functional as F

            paddle.disable_static()
            x = paddle.arange(6, dtype="float32").reshape([2,3])
            y = F.normalize(x)
            print(y)
            # Tensor(shape=[2, 3], dtype=float32, place=Place(gpu:0), stop_gradient=True,
            #        [[0.        , 0.44721359, 0.89442718],
            #         [0.42426404, 0.56568539, 0.70710671]])

            y = F.normalize(x, p=1.5)
            print(y)
            # Tensor(shape=[2, 3], dtype=float32, place=Place(gpu:0), stop_gradient=True,
            #        [[0.        , 0.40862012, 0.81724024],
            #         [0.35684016, 0.47578689, 0.59473360]])

            y = F.normalize(x, axis=0)
            print(y)
            # Tensor(shape=[2, 3], dtype=float32, place=Place(gpu:0), stop_gradient=True,
            #        [[0.        , 0.24253564, 0.37139067],
            #         [1.        , 0.97014254, 0.92847669]])
    )dtypeTFaxisporderkeepdimepsilonp	normalizexfloat16float32float64r   r   zCAxis must be 0 or -1 when x is a 1-D tensor, but received axis = {})r   r   r   r   p_normXZOuttypeinputsoutputsattrs)shapeZ
fill_valuer   nameN)r!   )r   fluidZdygraphbaseZto_variabler   r   r!   floatmaximumr   r   Zelementwise_maxr   intr   lenr(   
ValueErrorformatr   locals"create_variable_for_type_inference	append_opblockZ
create_varpaddlefulldivide)	r   r   r   r   r*   epsoutr'   helper r=   ID:\Projects\ConvertPro\env\Lib\site-packages\paddle/nn/functional/norm.pyr   %   sT   3r   F?h㈵>NCHWc                 C   s  t | jdksJ d|}|}g d}||vrtd||d dkr&dnd}|	d	kr2| }	d
}n|	 }t rVt| |||||||| |	|d
\}}}}}}tj|d	dS t	 rd|d|d| d|dd
dd
d|	d|f}t
j| ||||d	||g|R  \}}}}}}tj|d	dS t| dg dd ||| |d
d
|	|d}| g|g|g|g|gd}td!i t }| jdkr| jnd}|j|dd}|j|dd}|| j}|g|g|g|g|gd}|s|r|j| jdd}|g|d< |jd|||d  ||S )"a  
    Applies Batch Normalization as described in the paper Batch Normalization: Accelerating Deep Network Training by Reducing Internal Covariate Shift .

    nn.functional.batch_norm is uesd for nn.BatchNorm1D, nn.BatchNorm2D, nn.BatchNorm3D. Please use above API for BatchNorm.

    Parameters:
        x(Tesnor): input value. It's data type should be float32, float64.
        running_mean(Tensor): running mean.
        running_var(Tensor): running variance.
        weight(Tensor): The weight tensor of batch_norm, can not be None.
        bias(Tensor): The bias tensor of batch_norm can not be None.
        epsilon(float, optional): The small value added to the variance to prevent division by zero. Default: 1e-5.
        momentum(float, optional): The value used for the moving_mean and moving_var computation. Default: 0.9.
        training(bool, optional): True means train mode which compute by batch data and track global mean and var during train period. False means inference mode which compute by global mean and var which calculated by train period. Default False.
        data_format(str, optional): Specify the input data format, may be "NC", "NCL", "NCHW", "NCDHW", "NLC", "NHWC" or "NDHWC". Default "NCHW".
        use_global_stats(bool|None, optional): Whether to use global mean and variance. If set to False, use the statistics of one mini-batch, if set to True, use the global statistics, if set to None, use global statistics in the test phase and use the statistics of one mini-batch in the training phase. Default: None.
        name(str, optional): Name for the BatchNorm, default is None. For more information, please refer to :ref:`api_guide_Name`..

    Returns:
        None

    Examples:
        .. code-block:: python

            import paddle

            x = paddle.arange(12, dtype="float32").reshape([2, 1, 2, 3])
            print(x)
            # Tensor(shape=[2, 1, 2, 3], dtype=float32, place=Place(gpu:0), stop_gradient=True,
            #        [[[[0. , 1. , 2. ],
            #           [3. , 4. , 5. ]]],

            #         [[[6. , 7. , 8. ],
            #           [9. , 10., 11.]]]])

            running_mean = paddle.to_tensor([0], dtype="float32")
            running_variance = paddle.to_tensor([1], dtype="float32")
            weight = paddle.to_tensor([2], dtype="float32")
            bias = paddle.to_tensor([1], dtype="float32")

            batch_norm_out = paddle.nn.functional.batch_norm(x, running_mean,
                                                        running_variance, weight, bias)
            print(batch_norm_out)
            # Tensor(shape=[2, 1, 2, 3], dtype=float32, place=Place(gpu:0), stop_gradient=True,
            #        [[[[1.         , 2.99998999 , 4.99997997 ],
            #           [6.99996948 , 8.99995995 , 10.99994946]]],

            #         [[[12.99993896, 14.99992943, 16.99991989],
            #           [18.99990845, 20.99989891, 22.99988937]]]])
    r   zinput dim must be larger than 1)ZNCNCLrA   NCDHWNLCNHWCNDHWCz^data_format must be one of 'NC', 'NCL', 'NCHW', 'NCDHW', 'NLC', 'NHWC', 'NDHWC' but receive {}r   CrA   rE   NFZactmomentumr   is_testdata_layout
use_mkldnnfuse_with_reluuse_global_statstrainable_statisticsinputr   Z	BatchNorm)rI   r   rJ   rK   rL   rM   rN   rO   )r"   ScaleBiasMeanVariance
batch_normr   r   Tr   Zstop_gradient)YZMeanOutZVarianceOut	SavedMeanSavedVarianceZReserveSpacer#   )rU   )r0   r(   r1   r2   r   r   rU   r
   _append_activation_in_dygraphr   r   r   r   r3   r   r4   r5   append_activation)r   running_meanrunning_varweightbiasZtrainingrI   r   data_formatrN   r*   mean_outvariance_outZtrue_data_formatrO   Zbatch_norm_out_r'   r%   r<   Zparam_dtype
saved_meansaved_variancer&   Zreserve_spacer=   r=   r>   rU      s   ?	

rU   c              	   C   s  t | j}t|}t|tjr|g}nt|trt |}n	t|t s&tdt|}|| }	||k s:||	d |krRt|}
td|
 d |
dd  d t| t	 rit
| ||||	d\}}}tj|ddS t rt| ||d	|d
|	\}}}tj|ddS t| dg dd t }| g|d< |r|g|d< |r|g|d< ||	d}tdi t }| j}|j|dd}|j|dd}||}|jd||||d||	dd ||S )aq  
    see more detail in paddle.nn.LayerNorm

    Parameters:
        x(Tensor): Input Tensor. It's data type should be float32, float64.
        normalized_shape(int|list|tuple): Input shape from an expected input of
            size :math:`[*, normalized_shape[0], normalized_shape[1], ..., normalized_shape[-1]]`.
            If it is a single integer, this module will normalize over the last dimension
            which is expected to be of that specific size.
        epsilon(float, optional): The small value added to the variance to prevent
            division by zero. Default: 1e-05.
        weight(Tensor, optional): The weight tensor of batch_norm. Default: None.
        bias(Tensor, optional): The bias tensor of batch_norm. Default: None.
        name(str, optional): Name for the LayerNorm, default is None. For more information, please refer to :ref:`api_guide_Name`..

    Returns:
        None

    Examples:

        .. code-block:: python

          import paddle

          x = paddle.rand((2, 2, 2, 3))
          layer_norm_out = paddle.nn.functional.layer_norm(x, x.shape[1:])
          print(layer_norm_out)
    z@`normalized_shape` should be int, list of ints or tuple of ints.NzGiven normalized_shape is z , expected input with shape [*, r   z, but got input shape FrH   r   begin_norm_axisrP   r   Z	LayerNormr"   rQ   rR   )r   rf   
layer_normTrV   )rW   rS   rT   r#   )rg   )listr(   r0   
isinstancenumbersIntegraltupler1   strr   r   rg   r
   rZ   r   r   r   dictr   r3   r   r4   r5   r[   )r   Znormalized_shaper^   r_   r   r*   Zinput_shapeZ
input_ndimZnormalized_ndimrf   Zstr_normalized_shapeZpre_actrc   r%   r'   r<   r   ra   rb   Zlayer_norm_outr=   r=   r>   rg   N  s   




	
	





rg   Tc
                 C   s   t  rt| |||}
|
S t r"t| ||d|d|d|	\}
}}|
S t| dddgd |||d}|r?|r?| g|g|gd	}nd
| gi}tdi t }|j| j	dd}|j| j	dd}|| j	}|g|g|gd}|j
d|||d |S )a  
    See more detail in nn.layer.InstanceNorm2D.

    Parameters:
        x(Tensor): Input Tensor. It's data type should be float32, float64.
        running_mean(Tensor, optional): running mean. Default None.
        running_var(Tensor, optional): running variance. Default None.
        weight(Tensor, optional): The weight tensor of instance_norm. Default: None.
        bias(Tensor, optional): The bias tensor of instance_norm. Default: None.
        eps(float, optional): A value added to the denominator for numerical stability. Default is 1e-5.
        momentum(float, optional): The value used for the moving_mean and moving_var computation. Default: 0.9.
        use_input_stats(bool, optional): Default True.
        data_format(str, optional): Specify the input data format, may be "NC", "NCL", "NCHW" or "NCDHW". Defalut "NCHW".
        name(str, optional): Name for the InstanceNorm, default is None. For more information, please refer to :ref:`api_guide_Name`..

    Returns:
        None.

    Examples:

        .. code-block:: python

          import paddle

          x = paddle.rand((2, 2, 2, 3))
          instance_norm_out = paddle.nn.functional.instance_norm(x)

          print(instance_norm_out)

    r   rI   r`   rP   r   r   ZInstanceNorm)r   rI   r`   )r"   rQ   rR   r"   instance_normTrV   )rW   rX   rY   r#   N)ro   )r   r   ro   r   r   r   r   r3   r4   r   r5   )r   r\   r]   r^   r_   Zuse_input_statsrI   r:   r`   r*   r;   rc   r'   r%   r<   rd   re   Zinstance_norm_outr&   r=   r=   r>   ro     sJ   *

ro   -C6?      ?      ?c              	   C   sv  t  st| ddgd |dvrtd|| j}t|}|dk r(td|t|D ]\}	}
|
dks@|	dkr@td	|	|
q,|d
 dkrIdnd}ddlm} |dd |dd }t	j
t	| | dd}|sdd|d |d d g}|df}|d d|d |d t||d |d   g}dddd|d |d d g}|ddf}n:|d |d d ddg}d|f}|d d|d t||d |d
   |d
 g}|d |d d ddddg}dd|f}|dkrt	jjj||d}t	jjj||dd}t	j|dd}n&t	j||d}t	jjj||dd}t	jjj||dd}t	t	j|dd|}t	j|||d}t	||}t	j| ||d}|S )a|	  
    Local Response Normalization performs a type of "lateral inhibition" by normalizing over local input regions.
    For more information, please refer to `ImageNet Classification with Deep Convolutional Neural Networks <https://papers.nips.cc/paper/4824-imagenet-classification-with-deep-convolutional-neural-networks.pdf>`_

    The formula is as follows:

    .. math::

        Output(i, x, y) = Input(i, x, y) / \left(k + \alpha \sum\limits^{\min(C-1, i + size/2)}_{j = \max(0, i - size/2)}(Input(j, x, y))^2\right)^{\beta}

    In the above equation:

    - :math:`size` : The number of channels to sum over.
    - :math:`k` : The offset (avoid being divided by 0).
    - :math:`\\alpha` : The scaling parameter.
    - :math:`\\beta` : The exponent parameter.


    Args:
        x (Tensor): The input 3-D/4-D/5-D tensor. The data type is float32.
        size (int): The number of channels to sum over.
        alpha (float, optional): The scaling parameter, positive. Default:1e-4
        beta (float, optional): The exponent, positive. Default:0.75
        k (float, optional): An offset, positive. Default: 1.0
        data_format (str, optional): Specify the data format of the input, and the data format of the output
            will be consistent with that of the input. An optional string from:
            If x is 3-D Tensor, the string could be `"NCL"` or `"NLC"` . When it is `"NCL"`,
            the data is stored in the order of: `[batch_size, input_channels, feature_length]`.
            If x is 4-D Tensor, the string could be  `"NCHW"`, `"NHWC"`. When it is `"NCHW"`,
            the data is stored in the order of: `[batch_size, input_channels, input_height, input_width]`.
            If x is 5-D Tensor, the string could be  `"NCDHW"`, `"NDHWC"` . When it is `"NCDHW"`,
            the data is stored in the order of: `[batch_size, input_channels, input_depth, input_height, input_width]`.
        name (str, optional): Name for the operation (optional, default is None). For more information,
            please refer to :ref:`api_guide_Name`.

    Returns:
        A tensor storing the transformation result with the same shape and data type as input.


    Examples:

    .. code-block:: python

        import paddle

        x = paddle.rand(shape=(3, 3, 112, 112), dtype="float32")
        y = paddle.nn.functional.local_response_norm(x, size=5)
        print(y.shape)  # [3, 3, 112, 112]
    r   r   local_response_norm)rB   rD   rA   rE   rC   rF   zPdata_format should be in one of [NCL, NCHW, NCDHW, NLC, NHWC, NDHWC], but got {}r   zAExpected 3D or higher dimensionality input, but got {} dimensionsr   zRExpected every dim's size to be larger than 0, but the size of the {}-th dim is {}r    rG   TF)reducec                 S   s   | | S )Nr=   )r   yr=   r=   r>   <lambda>l  s    z%local_response_norm.<locals>.<lambda>r   N)r   r   )pad)Zkernel_sizeZstride)r(   rC   )rw   r`   )scaler_   r)   )r   r   r1   r2   r(   r0   	enumerate	functoolsrt   r7   Z	unsqueezemultiplyr/   nnZ
functionalrw   Z
avg_pool2dZsqueezeZreshapeZ
avg_pool3drx   powr9   )r   sizealphabetakr`   r*   sizesdimiszZchannel_lastrt   Z	sum_sizesdivZpad4d_shapeZpool2d_shapeZreshape_shapeZpad5d_shapeZpool3d_shaperesr=   r=   r>   rs     s   4
rs   )r   r   r   N)Fr?   r@   rA   NN)NNr@   N)	NNNNTr?   r@   rA   N)rp   rq   rr   rA   N)r7   Zpaddle.fluidr+   Zfluid.data_feederr   r   Zfluid.layer_helperr   Z	frameworkr   Zinitializerr   r	   r
   rj   r   r   r   Zpaddle.fluid.frameworkr   r   r   r   __all__r   rU   rg   ro   rs   r=   r=   r=   r>   <module>   sH   
i
 H
w
Z