o
    #j~                     @   s  d dl Z d dlmZ d dlmZmZ d dlmZmZ d dl	m
Z
 d dlmZ g Ze 									d.d
dZd/ddZd0ddZe d1ddZdd Zdd Zd1ddZd2ddZd1ddZd3dd Zd1d!d"Zd#d$ Zd1d%d&Zd4d'd(Zd5d*d+Ze d1d,d-ZdS )6    N)VarDesc)
check_typecheck_variable_and_dtype)Variablein_dygraph_mode)LayerHelper)templatedoc      Tc
                 C   s   t  rJ dt| dddgd tdi t }
|
 }|| jd  |g}|
j|
j||d}|
|}|du r>t	|d	  }|
j
d| g|gd
d|i|||dd |
|}|
|S )a  

    Note:
        Only receives Tensor as input. If your input is Tensor, please use conv2d Op.(base.layers.** :ref:`api_paddle_nn_functional_conv2d` ).

    This operator receives input sequences with variable length and other convolutional
    configuration parameters(num_filters, filter_size) to apply the convolution operation.
    It fills all-zero padding data on both sides of the sequence by default to ensure that
    the output is the same length as the input. You can customize the padding behavior by
    configuring the parameter :attr:`padding\_start` .

    **Warning:** the parameter :attr:`padding` take no effect and will be deprecated in the future.

    .. code-block:: text

            Here we will illustrate the details of the padding operation:
            For a mini-batch of 2 variable lengths sentences, containing 3, and 1 time-steps:
            Assumed input (X) is a [4, N] float Tensor, and for the sake of simplicity, we assume N=2.
            input.data = [[1, 1],
                          [2, 2],
                          [3, 3],
                          [4, 4]]

            This is to say that input (X) has 4 words and the dimension of each word
            representation is 2.

            * Case1:

                If padding_start is -1 and filter_size is 3.
                The length of padding data is calculated as follows:
                up_pad_len = max(0, -padding_start) = 1
                down_pad_len = max(0, filter_size + padding_start - 1) = 1

                The output of the input sequence after padding is:
                data_aftet_padding = [[0, 0, 1, 1, 2, 2],
                                      [1, 1, 2, 2, 3, 3],
                                      [2, 2, 3, 3, 0, 0],
                                      [0, 0, 4, 4, 0, 0]]

                It will be multiplied by the filter weight to get the final output.
                Assume num_filters = 3
                output.data = [[ 0.3234, -0.2334,  0.7433],
                               [ 0.5646,  0.9464, -0.1223],
                               [-0.1343,  0.5653,  0.4555],
                               [ 0.9954, -0.1234, -0.1234]]
                output.shape = [4, 3]     # 3 = num_filters
                output.lod = [[0, 3, 4]]  # Remain the same


    Args:
        input (Tensor): Tensor with shape :math:`(M, K)`, where M is the total time-step of mini-batch
            and K is hidden_size of input. Only lod_level of 1 is supported. The data type should be float32 or
            float64.
        num_filters (int): the number of filters.
        filter_size (int): the height of filter. Specified filter width is not supported, the width is
            hidden_size by default. Default: 3.
        filter_stride (int, optional): stride of the filter. Currently only supports :attr:`stride` = 1.
        padding (bool, optional): the parameter :attr:`padding` take no effect and will be discarded in the
            future. Currently, it will always pad input to make sure the length of the output is
            the same as input whether :attr:`padding` is set true or false. Because the length of
            input sequence may be shorter than :attr:`filter\_size`, which will cause the convolution
            result to not be computed correctly. These padding data will not be trainable or updated
            while training. Default: True.
        padding_start (int): It is used to indicate the start index for padding the input
            sequence, which can be negative. The negative number means to pad
            :attr:`|padding_start|` time-steps of all-zero data at the beginning of each instance.
            The positive number means to skip :attr:`padding_start` time-steps of each instance,
            and it will pad :math:`filter\_size + padding\_start - 1` time-steps of all-zero data
            at the end of the sequence to ensure that the output is the same length as the input.
            If set None, the same length :math:`\\frac{filter\_size}{2}` of data will be filled
            on both sides of the sequence. If set 0, the length of :math:`filter\_size - 1` data
            is padded at the end of each input sequence. Default: None.
        bias_attr (ParamAttr): To specify the bias parameter property. Default: None, which means the
            default bias parameter property is used. See usage for details in :ref:`api_paddle_ParamAttr` .
        param_attr (ParamAttr): To specify the weight parameter property. Default: None, which means the
            default weight parameter property is used. See usage for details in :ref:`api_paddle_ParamAttr` .
        act (str): Activation to be applied to the output of this layer, such as tanh, softmax,
            sigmoid, relu. For more information, please refer to :ref:`api_guide_activations_en` . Default: None.
        name (str, optional): The default value is None.  Normally there is no need for user to set this property.
            For more information, please refer to :ref:`api_guide_Name` .

    Returns:
        Tensor: Tensor with the same length as input. The data type is float32 or float64, which is same as input.

    Examples:

        .. code-block:: python

            >>> import paddle
            >>> paddle.enable_static()

            >>> x = paddle.static.data(name='x', shape=[-1, 10], dtype='float32', lod_level=1)
            >>> x_conved = paddle.static.nn.sequence_conv(input=x, num_filters=2, filter_size=3, padding_start=-1)
    4sequence layer is not supported in dygraph mode yet.inputfloat32float64sequence_convr
   )attrshapedtypeN   )XFilterOut)ZcontextStrideZcontextStartZcontextLengthtypeinputsoutputsattrs)r   )r   r   r   localsinput_dtyper   Zcreate_parameter
param_attr"create_variable_for_type_inferenceint	append_opZappend_bias_opZappend_activation)r   Znum_filtersZfilter_sizeZfilter_stridepaddingZpadding_startZ	bias_attrr   Zactnamehelperr   Zfilter_shapeZfilter_paramZpre_biasZpre_act r%   ^/var/www/html/Deteccion_Ine/venv/lib/python3.10/site-packages/paddle/static/nn/sequence_lod.pyr      s:   m


r   Fc                 C   sd   t  rJ dtdi t }t| dddgd | }||}|jdd| id|id|id	 |S )aY  

    Note:
        The input type of the OP must be Tensor. For Tensor, use:** :ref:`api_paddle_nn_functional_softmax`

    A LoD-tensor can be regarded as several sequences, and this op apply softmax algo on each sequence.
    The shape of input Tensor can be :math:`[N, 1]` or :math:`[N]`, where :math:`N`
    is the sum of the length of all sequences. Recommended usage: :math:`[N]`.

    For i-th sequence in a mini-batch:

    .. math::

        Out(X[lod[i]:lod[i+1]], :) = \\frac{\exp(X[lod[i]:lod[i+1], :])}{\sum(\exp(X[lod[i]:lod[i+1], :]))}

    For example, for a LoD-Tensor with 6 sequences ([3, 2, 4, 1, 2, 3] - sequence length list in order),
    the lod in the runtime is [[0, 3, 5, 9, 10, 12, 15]],
    then softmax will be computed among :math:`X[0:3,:],X[3:5,:],X[5:9,:],X[9:10,:],X[10:12,:],X[12:15,:]`,
    and :math:`N` turns out to be 15.

    .. code-block:: text

        *Case 1:

            Given:
                input.data = [0.7, 1, 0.6,
                              1.5, 1.1,
                              1.2, 0.2, 0.6, 1.9,
                              3.1,
                              2.5, 0.8,
                              0.1, 2.4, 1.3]
                input.lod = [[0, 3, 5, 9, 10, 12, 15]]
            then:
                 output.data = [0.30724832, 0.41474187, 0.2780098,
                                0.59868765, 0.40131235,
                                0.2544242, 0.09359743, 0.13963096, 0.5123474,
                                1.,
                                0.84553474, 0.15446526,
                                0.06995796, 0.69777346, 0.23226859]
                 output.lod = [[0, 3, 5, 9, 10, 12, 15]]


    Args:
        input (Tensor):A Tensor with shape of  :math:`[N, 1]` or  :math:`[N]`, Recommended usage: :math:`[N]`.
                         Supported data types: float32, float64.
        use_cudnn (bool, optional): Use cudnn kernel or not. Effective only when the cudnn version of the paddle
                                    library is installed and GPU is used for training or reasoning. Default: False.
        name (str, optional): The default value is None. Normally there is no need for user to set this property.
                              For more information, please refer to :ref:`api_guide_Name`

    Returns:
        Tensor: A LoD-Tensor which has the same shape and data type with input.

    Examples:

        .. code-block:: python

            >>> import paddle
            >>> paddle.enable_static()

            >>> x = paddle.static.data(name='x', shape=[7, 1],
                              dtype='float32', lod_level=1)
            >>> x_sequence_softmax_1 = paddle.static.nn.sequence_softmax(input=x)

            >>> y = paddle.static.data(name='y', shape=[7],
            ...     dtype='float32', lod_level=1)
            >>> x_sequence_softmax_2 = paddle.static.nn.sequence_softmax(input=y)
    r   sequence_softmaxr   r   r   r   r   	use_cudnnr   N)r'   r   r   r   r   r   r   r!   )r   r(   r#   r$   r   Zsoftmax_outr%   r%   r&   r'      s"   F
r'           c                 C   s   t  rJ dt| dddgd tdi t }| }||}||}|jdd| i||d| ||dd	 |d
krAd|_|S )a  

    Note:
        Only receives Tensor as input. If your input is Tensor, please use pool2d Op.(static.nn.** :ref:`api_paddle_nn_functional_avg_pool2d` or :ref:`api_paddle_nn_functional_max_pool2d` ).

    This operator only supports Tensor as input. It will apply specified pooling
    operation on the input Tensor. It pools features of all time-steps of each
    sequence at the last lod_level using :attr:`pool_type` mentioned in the parameters,
    such as sum, average, sqrt, etc.

    It supports six pool_type:

    - average: :math:`Out[i] = \\frac{\sum_i X_i}{N}`
    - sum:     :math:`Out[i] = \sum_jX_{ij}`
    - sqrt:    :math:`Out[i] = \\frac{\sum_jX_{ij}}{\sqrt{len(X_i)}}`
    - max:     :math:`Out[i] = max(X_i)`
    - last:    :math:`Out[i] = X_{N_i}`
    - first:   :math:`Out[i]` = X_0

    where :math:`N_i` is the length of i-th input sequence.

    .. code-block:: text

        Case 1:
        input is a 1-level Tensor and pad_value = 0.0:
            input.lod = [[0, 2, 5, 7, 7]]
            input.data = [[1.], [3.], [2.], [4.], [6.], [5.], [1.]]
            input.shape = [7, 1]

        output is Tensor:
            out.shape = [4, 1]
            with condition out.shape[0] == len(x.lod[-1]) == 4

        for different pool_type:
            average: out.data = [[2.], [4.], [3.], [0.0]], where 2.=(1. + 3.)/2, 4.=(2. + 4. + 6.)/3, 3.=(5. + 1.)/2
            sum    : out.data = [[4.], [12.], [6.], [0.0]], where 4.=1. + 3., 12.=2. + 4. + 6., 6.=5. + 1.
            sqrt   : out.data = [[2.82], [6.93], [4.24], [0.0]], where 2.82=(1. + 3.)/sqrt(2), 6.93=(2. + 4. + 6.)/sqrt(3), 4.24=(5. + 1.)/sqrt(2)
            max    : out.data = [[3.], [6.], [5.], [0.0]], where 3.=max(1., 3.), 6.=max(2., 4., 6.), 5.=max(5., 1.)
            last   : out.data = [[3.], [6.], [1.], [0.0]], where 3.=last(1., 3.), 6.=last(2., 4., 6.), 1.=last(5., 1.)
            first  : out.data = [[1.], [2.], [5.], [0.0]], where 1.=first(1., 3.), 2.=first(2., 4., 6.), 5.=first(5., 1.)

            and all above [0.0] at last of out.data is padding data.

        Case 2:
        input is a 2-level Tensor containing 3 sequences with length info [2, 0, 3],
        where 0 means empty sequence.
        The first sequence contains 2 subsequence with length info [1, 2];
        The last sequence contains 3 subsequence with length info [1, 0, 3].
            input.lod = [[0, 2, 2, 5], [0, 1, 3, 4, 4, 7]]
            input.data = [[1.], [3.], [2.], [4.], [6.], [5.], [1.]]
            input.shape = [7, 1]

        If pool_typ = sum, it will apply pooling on last lod_level [0, 1, 3, 4, 4, 7]. pad_value = 0.0
        output is Tensor:
            out.shape= [5, 1]
            out.lod = [[0, 2, 2, 5]]
            where out.shape[0] == len(x.lod[-1]) == 5
            sum: out.data = [[1.], [5.], [4.], [0.0], [12.]]
            where 1.=1., 5.=3. + 2., 4.=4., 0.0=pad_value, 12.=6. + 5. + 1.

    Args:
        input (variable): Tensor with lod_level no more than 2. The data type should be float32 or float64.
        pool_type (str): The pooling type that supports average, sum, sqrt, max, last or first.
        is_test (bool): Only works when :attr:`pool_type` is max. If set False, a temporary Tenosr maxIndex is
            created to record the index information corresponding to the maximum value, which is used for backward
            gradient calculation in the training phase. Default: False.
        pad_value (float): Used to pad the pooling result for empty input sequence. Default: 0.0

    Returns:
        Tensor: Tensor after pooling with data type float32 or float64.

    Examples:

        .. code-block:: python

            >>> import paddle
            >>> paddle.enable_static()

            >>> x = paddle.static.data(name='x', shape=[None, 10], dtype='float32', lod_level=1)
            >>> avg_x = paddle.static.nn.sequence_pool(input=x, pool_type='average')
            >>> sum_x = paddle.static.nn.sequence_pool(input=x, pool_type='sum')
            >>> sqrt_x = paddle.static.nn.sequence_pool(input=x, pool_type='sqrt')
            >>> max_x = paddle.static.nn.sequence_pool(input=x, pool_type='max')
            >>> last_x = paddle.static.nn.sequence_pool(input=x, pool_type='last')
            >>> first_x = paddle.static.nn.sequence_pool(input=x, pool_type='first')
    r   r   r   r   sequence_poolr   )r   ZMaxIndex)Zpooltypeis_test	pad_valuer   maxTN)r+   )	r   r   r   r   r   r   r!   upperstop_gradient)r   	pool_typer,   r-   r$   r   Zpool_outZ	max_indexr%   r%   r&   r+      s.   X

r+   c                 C   s   t  rJ dtdi t }t| dtd t| D ]\}}t|dt| d g dd q|j|	 d}|j
dd	| id
|gid |S )a  

    Note:
        Only receives Tensor as input. If your input is Tensor, please use concat Op.(static.nn.** :ref:`api_paddle_concat` ).

    This operator only supports Tensor as input. It concatenates the multiple Tensor from input by the LoD information,
    and outputs the concatenated Tensor.

    .. code-block:: text

        input is a list of Tensor:
            input = [x1, x2]
        where:
            x1.lod = [[0, 3, 5]]
            x1.data = [[1], [2], [3], [4], [5]]
            x1.shape = [5, 1]

            x2.lod = [[0, 2, 4]]
            x2.data = [[6], [7], [8], [9]]
            x2.shape = [4, 1]
        and should satisfy: len(x1.lod[0]) == len(x2.lod[0])

        output is Tensor:
            out.lod = [[0, 3+2, 5+4]]
            out.data = [[1], [2], [3], [6], [7], [4], [5], [8], [9]]
            out.shape = [9, 1]

    Args:
        input(list of Tensor): List of Tensor to be concatenated. The length of each Tensor should be same.
            The data type can be float32, float64 or int64.
        name(str, optional): The default value is None.  Normally there is no need for user to set this property.
            For more information, please refer to :ref:`api_guide_Name` .

    Returns:
        Tensor: Output the concatenated Tensor. The data type is same as input.

    Examples:
        .. code-block:: python

            >>> import paddle
            >>> paddle.enable_static()

            >>> x = paddle.static.data(name='x', shape=[-1, 10], dtype='float32', lod_level=1)
            >>> y = paddle.static.data(name='y', shape=[-1, 10], dtype='float32', lod_level=1)
            >>> out = paddle.static.nn.sequence_concat(input=[x, y])
    r   sequence_concatr   z-paddle.static.nn.sequence_lod.sequence_concatzinput[])int64r   r   r   r   r   r   r   r   N)r2   )r   r   r   r   list	enumerater   strr   r   r!   )r   r#   r$   iZinput_xoutr%   r%   r&   r2   r  s(   1r2   c                 C      t | dddgd t| ddS )a  

    Only supports Tensor as input. Given the input Tensor, it will
    select first time-step feature of each sequence as output.

    .. code-block:: text

       Case 1:
        input is 1-level Tensor:
            input.lod = [[0, 2, 5, 7]]
            input.data = [[1.], [3.], [2.], [4.], [6.], [5.], [1.]]
            input.shape = [7, 1]

        output is a Tensor:
            out.shape = [3, 1]
            out.shape[0] == len(x.lod[-1]) == 3
            out.data = [[1.], [2.], [5.]], where 1.=first(1., 3.), 2.=first(2., 4., 6.), 5.=first(5., 1.)

        Case 2:
        input is a 2-level Tensor containing 3 sequences with length info [2, 0, 3],
        where 0 means empty sequence.
        The first sequence contains 2 subsequence with length info [1, 2];
        The last sequence contains 3 subsequence with length info [1, 0, 3].
            input.lod = [[0, 2, 2, 5], [0, 1, 3, 4, 4, 7]]
            input.data = [[1.], [3.], [2.], [4.], [6.], [5.], [1.]]
            input.shape = [7, 1]

        It will apply pooling on last lod_level [0, 1, 3, 4, 4, 7]. pad_value = 0.0
        output is a Tensor:
            out.shape= [5, 1]
            out.lod = [[0, 2, 2, 5]]
            out.shape[0] == len(x.lod[-1]) == 5
            out.data = [[1.], [3.], [4.], [0.0], [6.]]
            where 1.=first(1.), 3.=first(3., 2.), 4.=first(4.), 0.0 = pad_value, 6.=first(6., 5., 1.)

    Args:
        input(Tensor): Tensor with lod_level no more than 2. The data type should be float32 or float64.

    Returns:
        Tensor: Tensor consist of the sequence's first step vector. The data type is float32 or float64.

    Examples:

        .. code-block:: python

            >>> import paddle
            >>> paddle.enable_static()

            >>> x = paddle.static.data(name='x', shape=[None, 10], dtype='float32', lod_level=1)
            >>> x_first_step = paddle.static.nn.sequence_first_step(input=x)
    r   r   r   sequence_first_stepfirstr   r1   r   r+   r   r%   r%   r&   r=     s   4r=   c                 C   r<   )ai  

    Only supports Tensor as input. Given the input Tensor, it will
    select last time-step feature of each sequence as output.

    .. code-block:: text

        Case 1:
        input is 1-level Tensor:
            input.lod = [[0, 2, 5, 7]]
            input.data = [[1.], [3.], [2.], [4.], [6.], [5.], [1.]]
            input.shape = [7, 1]

        output is a Tensor:
            out.shape = [3, 1]
            out.shape[0] == len(x.lod[-1]) == 3
            out.data = [[3.], [6.], [1.]], where 3.=last(1., 3.), 6.=last(2., 4., 6.), 1.=last(5., 1.)

        Case 2:
        input is a 2-level Tensor containing 3 sequences with length info [2, 0, 3],
        where 0 means empty sequence.
        The first sequence contains 2 subsequence with length info [1, 2];
        The last sequence contains 3 subsequence with length info [1, 0, 3].
            input.lod = [[0, 2, 2, 5], [0, 1, 3, 4, 4, 7]]
            input.data = [[1.], [3.], [2.], [4.], [6.], [5.], [1.]]
            input.shape = [7, 1]

        It will apply pooling on last lod_level [0, 1, 3, 4, 4, 7]. pad_value = 0.0
        output is a Tensor:
            out.shape= [5, 1]
            out.lod = [[0, 2, 2, 5]]
            out.shape[0] == len(x.lod[-1]) == 5
            out.data = [[1.], [2.], [4.], [0.0], [1.]]
            where 1.=last(1.), 2.=last(3., 2.), 4.=last(4.), 0.0 = pad_value, 1=last(6., 5., 1.)


    Args:
        input(Tensor): Tensor with lod_level no more than 2. The data type should be float32.

    Returns:
        Tensor: Tensor consist of the sequence's last step vector. The data type is float32.

    Examples:

        .. code-block:: python

            >>> import paddle
            >>> paddle.enable_static()

            >>> x = paddle.static.data(name='x', shape=[None, 10], dtype='float32', lod_level=1)
            >>> x_last_step = paddle.static.nn.sequence_last_step(input=x)
    r   r   r   sequence_last_steplastr?   r@   rA   r%   r%   r&   rB     s   5rB   c                 C   s   t  rJ dtdi t }t| dg dd t|dddgd t|dddgd | }||}d	|_d	|_|jd| ||d
d|id |S )aa  

    **Sequence Slice Layer**

    The layer crops a subsequence from given sequence with given start
    offset and subsequence length.

    It only supports sequence data (Tensor with lod_level equal to 1).

    .. code-block:: text

              - Case:

            Given the input Tensor **input**:

                input.data = [[a1, a2], [b1, b2], [c1, c2], [d1, d2], [e1, e2]],
                input.lod = [[3, 2]],
                input.dims = (5, 2),

            with offset.data = [[0], [1]] and length.data = [[2], [1]],

            the output Tensor will be

                out.data = [[a1, a2], [b1, b2], [e1, e2]],
                out.lod = [[2, 1]],
                out.dims = (3, 2).

    Note:
          The first dimension size of **input**, **offset** and **length**
          should be equal. The **offset** should start from 0.

    Args:
        input(Tensor): Tensor, The input Tensor which consists of the complete
                         sequences.The data type can be float32, float64, int32 or int64
        offset(Tensor): Tensor, The offset to slice each sequence. The data
                         type is int32 or int64.
        length(Tensor): Tensor, The length of each subsequence. The data
                         type is int32 or int64.
        name(str|None): The default value is None.  Normally there is no need
                        for user to set this property.  For more information,
                        please refer to :ref:`api_guide_Name`

    Returns:
        Tensor: The output subsequences.

    Examples:

        .. code-block:: python

            >>> import paddle
            >>> paddle.enable_static()

            >>> import numpy as np
            >>> seqs = paddle.static.data(name='x', shape=[10, 5],
            ...                  dtype='float32', lod_level=1)
            >>> offset = paddle.assign(np.array([[0, 1]]).astype("int32"))
            >>> length = paddle.assign(np.array([[2, 1]]).astype("int32"))
            ... subseqs = paddle.static.nn.sequence_slice(input=seqs, offset=offset,
            ...                                       length=length)
    r   sequence_slicer   r   r   int32r4   offsetrF   r4   lengthT)r   ZOffsetLengthr   r6   N)rD   r   r   r   r   r   r   r0   r!   )r   rG   rH   r#   r$   r   r;   r%   r%   r&   rD   .  s6   >

rD   c                 C   sj   t  rJ dt| dg dd tdi t }|jdd}||}|jd| |dd|id|id	 |S )a  

        Sequence Expand Layer. This layer will expand the input variable ``x`` \
        according to specified level ``ref_level`` lod of ``y``. Please note that \
        the lod level of ``x`` is at most 1. If the lod level of ``x`` is 1, than \
        the size of lod of ``x`` must be equal to the length of ``ref_level`` lod \
        of ``y``. If the lod level of ``x`` is 0, then the first dim of ``x`` should \
        be equal to the size of ``ref_level`` of ``y``. The rank of **x** is at least 2. \
        When rank of ``x`` is greater than 2, then it would be viewed as a 2-D tensor.

    Note:

        Please note that the input ``x`` should be Tensor or Tensor, \
        and input ``y`` must be Tensor.

    **Following examples will explain how sequence_expand works:**

    .. code-block:: text

        Case 1

        Consider 2 sequences [a][b] and [c][d], now we want to expand them to [a][b], [a][b], [c][d] and [c][d].
        Sequence [a][b] expand twice and [c][d] expands twice, so the lod which according to is [2, 2].

        Input x is a 1-level Tensor:
            x.lod  = [[2,        2]]    #lod based on length may be easier to understand
            x.data = [[a], [b], [c], [d]]
            x.dims = [4, 1]

        input y is a Tensor:
            y.lod = [[2,    2],    #the 0th level lod, according to this level
                     [3, 3, 1, 1]] #the 1st level lod, it has nothing to do with this level

        ref_level: 0

        then output is a 1-level Tensor out:
            out.lod =  [[2,        2,        2,        2]]    #lod based on offset
            out.data = [[a], [b], [a], [b], [c], [d], [c], [d]]
            out.dims = [8, 1]


        Case 2

        Consider 3 sequences [a], [b], [c], now we want to expand them to [a][a], [c][c][c].
        It's obvious that the lod info of expanded sequences is [2, 0, 3].

        x is a Tensor:
            x.data = [[a], [b], [c]]
            x.dims = [3, 1]

        y is a Tensor:
            y.lod = [[2, 0, 3]]

        ref_level: -1

        then output is a 1-level Tensor:
            out.data = [[a], [a], [c], [c], [c]]
            out.dims = [5, 1]

    Args:
        x (Tensor): The input variable which is a Tensor or Tensor, with the \
            dims ``[M, K]``. The lod level is at most 1. The data type should be \
            float32, float64, int32 or int64.
        y (Tensor): The input variable which is a Tensor, the lod level is \
            at least 1.
        ref_level (int): Lod level of ``y`` to be referred by ``x``. If set to -1, \
                         refer the last level of lod.
        name(str, optional): For detailed information, please refer \
            to :ref:`api_guide_Name`. Usually name is no need to set and \
            None by default.

    Returns:
            Tensor, The expanded variable which is a Tensor, with dims ``[N, K]``. \
            ``N`` depends on the lod info of ``x`` and ``y``. \
            The data type is same as input.

    Examples:
        .. code-block:: python

            >>> import paddle
            >>> from paddle import base
            >>> paddle.enable_static()
            >>> import numpy as np

            >>> x = paddle.static.data(name='x', shape=[4, 1], dtype='float32')
            >>> y = paddle.static.data(name='y', shape=[8, 1],
            ...             dtype='float32', lod_level=1)
            >>> out = paddle.static.nn.sequence_expand(x=x, y=y, ref_level=0)

            >>> exe = paddle.static.Executor(base.CPUPlace())
            >>> place = paddle.CPUPlace()

            >>> np_data = np.array([[1], [2], [3], [4]]).astype('float32')
            >>> x_lod_tensor = base.create_lod_tensor(np_data, [[2, 2]], place)
            >>> print(x_lod_tensor)
            - lod: {{0, 2, 4}}
            - place: Place(cpu)
            - shape: [4, 1]
            - layout: NCHW
            - dtype: float32
            - data: [1 2 3 4]

            >>> np_data = np.array([[1], [2], [3], [4], [5], [6], [7], [8]]).astype('float32')
            >>> y_lod_tensor = base.create_lod_tensor(np_data, [[2, 2], [3,3,1,1]], place)
            >>> print(y_lod_tensor)
            - lod: {{0, 2, 4}{0, 3, 6, 7, 8}}
            - place: Place(cpu)
            - shape: [8, 1]
            - layout: NCHW
            - dtype: float32
            - data: [1 2 3 4 5 6 7 8]

            >>> out_main = exe.run(base.default_main_program(),
            ...                 feed={'x': x_lod_tensor, 'y': y_lod_tensor},
            ...                 fetch_list=[out], return_numpy=False)
            >>> print(out_main[0])
            - lod: {{0, 2, 4, 6, 8}}
            - place: Place(cpu)
            - shape: [8, 1]
            - layout: NCHW
            - dtype: float32
            - data: [1 2 1 2 3 4 3 4]
    r   xrE   sequence_expandZinput_param_namer   Yr   	ref_levelr   N)rM   )r   r   r   r   r   r   r!   )rL   yrQ   r#   r$   r   tmpr%   r%   r&   rM     s"   }
rM   c                 C   sr   t  rJ dt| dg dd t|dtd tdi t }|jdd}||}|jd| |dd|id	 |S )aM  

        Sequence Expand As Layer. This OP will expand the input variable ``x`` \
        according to the zeroth level lod of ``y``. Current implementation requires \
        the level number of ``y``'s lod must be 1, and the first dimension of \
        ``x`` should be equal to the size of ``y``'s zeroth level lod, thus \
        the expanded Tensor has the same lod info as ``y``. The expanded result \
        has nothing to do with ``x``'s lod, so the lod of Input(X) is not considered.

    Note:
        Please note that the input ``x`` should be Tensor or Tensor, \
        and input ``y`` must be Tensor.

    Following examples will explain how sequence_expand_as works:

    .. code-block:: text

        Case 1:

        Consider 4 sequences [a], [b], [c], [d], now we want to expand them to [a][a][a], [b][b][b], [c] and [d].
        It's obvious that the lod info of expanded sequences is [0, 3, 6, 7, 8].
        Given a 1-level Tensor ``x``:
            x.data = [[a], [b], [c], [d]]
            x.dims = [4, 1]
        and input ``y``
            y.lod = [[3, 3, 1, 1]] #lod based on length may be easier to understand

        then we get 1-level Tensor out:
            Out.lod =  [[0,            3,              6,  7,  8]] #based on offset
            Out.data = [[a], [a], [a], [b], [b], [b], [c], [d]]
            Out.dims = [8, 1]


        Case 2:

        Given a common Tensor ``x``:
            x.data = [[a, b], [c, d], [e, f]]
            x.dims = [3, 2]
        and input ``y``:
            y.lod = [[0, 2, 3, 6]]

        then we get a 1-level Tensor:
            out.lod =  [[0,             2,     3,                    6]]
            out.data = [[a, b], [a, b] [c, d], [e, f], [e, f], [e, f]]
            out.dims = [6, 2]

    Args:
        x (Tensor): The input variable which is a Tensor or Tensor, with the \
            dims ``[M, K]``. The data type should be float32, float64, int32 \
            or int64.
        y (Tensor): The input variable which is a Tensor with 1-level lod.
        name (str, optional): For detailed information, please refer \
            to :ref:`api_guide_Name`. Usually name is no need to set and \
            None by default.

    Returns:
            Tensor, The expanded variable which is a Tensor with the dims ``[N, K]``. \
            ``N`` depends on the lod of ``y``, and the lod level must be 1. \
            The data type is same as input.

    Examples:
        .. code-block:: python

            >>> import paddle
            >>> import paddle.base as base
            >>> paddle.enable_static()
            >>> import numpy as np

            >>> x = paddle.static.data(name='x', shape=[4, 1], dtype='float32')
            >>> y = paddle.static.data(name='y', shape=[8, 1], dtype='float32', lod_level=1)
            >>> out = paddle.static.nn.sequence_expand_as(x=x, y=y)

            >>> exe = base.Executor(base.CPUPlace())
            >>> place = base.CPUPlace()

            >>> np_data = np.array([[1], [2], [3], [4]]).astype('float32')
            >>> x_lod_tensor = base.create_lod_tensor(np_data, [[2, 2]], place)
            >>> print(x_lod_tensor)
            - lod: {{0, 2, 4}}
            - place: Place(cpu)
            - shape: [4, 1]
            - layout: NCHW
            - dtype: float32
            - data: [1 2 3 4]

            >>> np_data = np.array([[1], [2], [3], [4], [5], [6], [7], [8]]).astype('float32')
            >>> y_lod_tensor = base.create_lod_tensor(np_data, [[3,3,1,1]], place)
            >>> print(y_lod_tensor)
            - lod: {{0, 3, 6, 7, 8}}
            - place: Place(cpu)
            - shape: [8, 1]
            - layout: NCHW
            - dtype: float32
            - data: [1 2 3 4 5 6 7 8]

            >>> out_main = exe.run(base.default_main_program(),
            ...                 feed={'x': x_lod_tensor, 'y': y_lod_tensor},
            ...                 fetch_list=[out], return_numpy=False)
            >>> print(out_main[0])
            - lod: {{0, 3, 6, 7, 8}}
            - place: Place(cpu)
            - shape: [8, 1]
            - layout: NCHW
            - dtype: float32
            - data: [1 1 1 2 2 2 3 4]
    r   rL   rE   sequence_expand_asrR   rN   rO   r   r6   N)rT   )	r   r   r   r   r   r   r   r   r!   )rL   rR   r#   r$   r   rS   r%   r%   r&   rT     s   l
rT   c                 C   s   t  rJ dtdi t }t| dg dd t|dg dd |jdd}||}|tjj}d|_	d|_	|d	u r?d
}|j
d| |d||dd|id ||fS )aJ  

        This layer padding the sequences in a same batch to a common length (according
        to ``maxlen``). The padding value is defined by ``pad_value``, and will be
        appended to the tail of sequences. The result is a Python tuple ``(Out, Length)``:
        the Tensor ``Out`` is the padded sequences, and Tensor ``Length`` is
        the length information of input sequences. For removing padding data (unpadding operation), See :ref:`api_paddle_static_nn_sequence_unpad`.

    Note:
        Please note that the input ``x`` should be Tensor.

    .. code-block:: text

        Case 1:
        Given input 1-level Tensor x:
            x.lod = [[0,  2,   5]]
            x.data = [[a],[b],[c],[d],[e]]
        pad_value:
            pad_value.data = [0]
        maxlen = 4

        the output tuple (Out, Length):
            Out.data = [[[a],[b],[0],[0]],[[c],[d],[e],[0]]]
            Length.data = [2, 3]      #Original sequences length

        Case 2:
        Given input 1-level Tensor x:
            x.lod =  [[0,             2,                     5]]
            x.data = [[a1,a2],[b1,b2],[c1,c2],[d1,d2],[e1,e2]]
        pad_value:
            pad_value.data = [0]
        default maxlen = None, (the virtual value is 3, according to the shape of x)

        the output tuple (Out, Length):
            Out.data = [[[a1,a2],[b1,b2],[0,0]],[[c1,c2],[d1,d2],[e1,e2]]]
            Length.data = [2, 3]

        Case 3:
        Given input 1-level Tensor x:
            x.lod =  [[0,             2,                     5]]
            x.data = [[a1,a2],[b1,b2],[c1,c2],[d1,d2],[e1,e2]]
        pad_value:
            pad_value.data = [p1,p2]
        default maxlen = None, (the virtual value is 3)

        get tuple (Out, Length):
            Out.data = [[[a1,a2],[b1,b2],[p1,p2]],[[c1,c2],[d1,d2],[e1,e2]]]
            Length.data = [2, 3]



    Args:
        x (Tensor): Input 1-level Tensor with dims ``[M, K]``. The batch \
            size is described by lod infor (the number of sequences ). \
            The data type should be float32, float64, int8, int32 or int64.
        pad_value (Tensor): Padding value. It can be a scalar or a 1D tensor \
            with length ``K``. If it's a scalar, it will be automatically broadcasted \
            to a Tensor. The data type should be as same as ``x``.
        maxlen (int, optional): The length of padded sequences, None by default. \
            When it is None, all sequences will be padded up to the length of the \
            longest one among them; when it a certain positive value, it must be \
            greater than the length of the longest original sequence.
        name (str, optional): For detailed information, please refer \
            to :ref:`api_guide_Name`. Usually name is no need to set and \
            None by default.

    Returns:
            tuple, A Python tuple (Out, Length): the 1st is a 0 level Tensor \
            ``Out``, with the shape ``[batch_size, maxlen, K]``; the second is the original \
            sequences length infor ``Length``, which should be a 0-level 1D Tensor. \
            The size of ``Length`` is equal to batch size, and the data type is int64.

    Examples:
        .. code-block:: python

            >>> import paddle
            >>> paddle.enable_static()
            >>> import paddle.base as base
            >>> import numpy

            >>> x = paddle.static.data(name='x', shape=[10, 5], dtype='float32', lod_level=1)
            >>> pad_value = paddle.assign(
            ...     numpy.array([0.0], dtype=numpy.float32))
            >>> out = paddle.static.nn.sequence_pad(x=x, pad_value=pad_value)
    r   sequence_padrL   rE   z*paddle.static.nn.sequence_lod.sequence_padr-   rN   TNrK   )r   ZPadValue)r   rI   Zpadded_lengthr   )rU   )r   r   r   r   r   r   r   ZVarTypeZINT64r0   r!   )rL   r-   maxlenr#   r$   r   r;   rH   r%   r%   r&   rU     s>   X
rU   c                 C   sz   t  rJ dtdi t }t| dg dd t|ddgd |jdd}||}d	|_|jd| |d
d|id |S )a  

    Note:
        The input of the OP is Tensor and the output is Tensor.  For padding operation, See:**  :ref:`api_paddle_static_nn_sequence_pad`

    Remove the padding data from the input based on the length information and returns a Tensor.

    .. code-block:: text

        Case 1:

        Given input Tensor **x**:
            x.data = [[ 1.0,  2.0,  3.0,  4.0,  5.0],
                      [ 6.0,  7.0,  8.0,  9.0, 10.0],
                      [11.0, 12.0, 13.0, 14.0, 15.0]],

        in which there are 3 sequences padded to length 5, and the actual length
        specified by input Tensor **length**:

            length.data = [2, 3, 4],

        after unpadding, the output Tensor will be:

            out.data = [[1.0, 2.0, 6.0, 7.0, 8.0, 11.0, 12.0, 13.0, 14.0]]
            out.lod = [[0, 2, 5, 9]]

    Args:
        x(Tensor): A Tensor which contains padding data, and its shape size can not be less than 2.
                     Supported data types: float32, float64, int32, int64.
        length(Tensor): A 1D Tensor that stores the actual length of each sample, and the Tensor
                          has the same shape with the 0th dimension of the X . Supported data types: int64.
        name(str|None):  The default value is None.  Normally there is no need for user to set this property.
                         For more information, please refer to :ref:`api_guide_Name`

    Returns:
        Tensor: A Tensor whose recursive sequence length is consistent with the information of the length parameter and it has the same data type with input.

    Examples:
        .. code-block:: python

            >>> import paddle
            >>> paddle.enable_static()
            >>> import paddle.base as base
            >>> import numpy

            >>> # pad data
            >>> x = paddle.static.data(name='x', shape=[10, 5], dtype='float32', lod_level=1)
            >>> pad_value = paddle.assign(numpy.array([0.0], dtype=numpy.float32))
            >>> pad_data, len = paddle.static.nn.sequence_pad(x=x, pad_value=pad_value)

            >>> # unpad data
            >>> unpad_data = paddle.static.nn.sequence_unpad(x=pad_data, length=len)
    r   sequence_unpadrL   rE   z,paddle.static.nn.sequence_lod.sequence_unpadrH   r4   rN   T)r   rI   r   r6   N)rW   rJ   )rL   rH   r#   r$   r   r;   r%   r%   r&   rW     s4   8
rW   c                 C   sd   t  rJ dtdi t }t| dg dd || }|jdd| gid|gid|id	 |S )a  

    Note:
        Only receives Tensor as input. If your input is Tensor, please use reshape Op.(static.nn.** :ref:`api_paddle_reshape` ).

    Only supports Tensor as input. Given :attr:`new_dim` ,
    it will compute new shape according to original length of each sequence,
    original dimensions and :attr:`new_dim` . Then it will output a new Tensor
    containing :attr:`new_dim` . Currently it only supports 1-level Tensor.
    Please make sure that (original length * original dimensions) can be divided
    by the :attr:`new_dim` with no remainder for each sequence.

    .. code-block:: text

        input is a Tensor:
            input.lod  = [[0, 2, 6]]
            input.data = [[1,  2], [3,  4],
                          [5,  6], [7,  8],
                          [9, 10], [11, 12]]
            input.shape = [6, 2]

        set new_dim = 4
        out is a Tensor:
            out.lod  = [[0, 1, 3]]
            out.data = [[1,  2,  3,  4],
                        [5,  6,  7,  8],
                        [9, 10, 11, 12]]
            out.shape = [3, 4]


    Args:

       input (Tensor): 1-level Tensor with shape :math:`[M, K]` . The data type should
            be int32, int64, float32 or float64.
       new_dim (int): New dimension that the input Tensor is reshaped to.

    Returns:
        Tensor: Reshaped Tensor according to new dimension. The data type is same as input.

    Examples:
        .. code-block:: python

            >>> import paddle
            >>> paddle.enable_static()

            >>> x = paddle.static.data(name='x', shape=[None, 16], dtype='float32', lod_level=1)
            >>> x_reshaped = paddle.static.nn.sequence_reshape(input=x, new_dim=4)
    r   sequence_reshaper   rE   zstatic.nn.sequence_reshaper   r   new_dimr   N)rX   )r   r   r   r   r   r   r!   )r   rY   r$   r;   r%   r%   r&   rX   b  s&   2rX   c                 C   s   t  rJ dtdi t }t| dg dd t|dddgd t|dg dd | }||}|jd| ||d	d
|id |S )a  

    Note:
        The index and updates parameters of the OP must be Tensor.

    Plus the updates data to the corresponding input according to the index.

    The updated algorithm is as follows: output[instance_index][index [pos]] = input[instance_index][index [pos]] +  updates[pos],
    where instance_idx is the K sample corresponding to pos in batch.

    The value of output[i][j] depends on whether j can be found in the i+1th interval of the index. If found,
    out[i][j] = input[i][j] + update[m] [n], otherwise, out[i][j] = input[i][j].

    For example, in the following example, the lod information for index is divided into three sequences. Among
    them, because the element 0 can be found in the first interval of the index, it is updated with the value of
    the corresponding position of the updates, out[0][0] = input[0][0]+updates[0][0] . Because element 1 cannot
    be found in the third interval of index, out[2][1] = input[2][1].

    .. code-block:: text

        *Case 1:

            Given:
                input.data = [[1.0, 1.0, 1.0, 1.0, 1.0, 1.0],
                              [1.0, 1.0, 1.0, 1.0, 1.0, 1.0],
                              [1.0, 1.0, 1.0, 1.0, 1.0, 1.0]]
                              input.dims = [3, 6]

                index.data = [[0], [1], [2], [5], [4], [3], [2], [1], [3], [2], [5], [4]]
                index.lod =  [[0,        3,                       8,                 12]]

                updates.data = [[0.3], [0.3], [0.4], [0.1], [0.2], [0.3], [0.4], [0.0], [0.2], [0.3], [0.1], [0.4]]
                updates.lod =  [[  0,            3,                                 8,                         12]]

            Then:
                out.data = [[1.3, 1.3, 1.4, 1.0, 1.0, 1.0],
                            [1.0, 1.0, 1.4, 1.3, 1.2, 1.1],
                            [1.0, 1.0, 1.3, 1.2, 1.4, 1.1]]
                out.dims = X.dims = [3, 6]

    Args:
        input (Tensor): A Tensor with shape of  :math:`[N, k_1... k_n]`. Supported data types: float32, float64, int32, int64.
        index (Tensor):  A Tensor contains index information. Its LoD level must be 1 and its data type can be int32 or int64.
        updates (Tensor): A Tensor contains updates information. It has the same  LoD level with the index and has the
                            same data type  with the input. Supported data types: float32, float64, int32, int64.
        name (str, optional): The default value is None.  Normally there is no need for user to set this property.  For more information,
                              please refer to :ref:`api_guide_Name`

    Returns:
        Tensor: A Tensor which has been updated. It has the same shape and data type with input.

    Examples:

        .. code-block:: python

            >>> import paddle
            >>> paddle.enable_static()

            >>> input = paddle.static.data(name="x", shape=[None, 3, 6], dtype='float32' )
            >>> index = paddle.static.data(name='index', shape=[12, 1],  dtype='int64', lod_level=1)
            >>> updates = paddle.static.data(name='updates', shape=[12, 1], dtype='float32', lod_level=1)
            >>> output = paddle.static.nn.sequence_scatter(input, index, updates)

    r   sequence_scatterr   rE   indexrF   r4   updates)r   ZIdsZUpdatesr   r6   N)rZ   r)   )r   r[   r\   r#   r$   r   r;   r%   r%   r&   rZ     s8   B

rZ   c                 C   sf   t  rJ dt| dddgd tdi t }|j| dd}|jdd| id	|i||d
d |S )a  

    Generate a new sequence for the input index sequence with \
        shape ``[d_1, win_size]``, which enumerates all the \
        sub-sequences with length ``win_size`` of the input with \
        shape ``[d_1, 1]``, and padded by ``pad_value`` if necessary in generation.

    Please note that the `input` must be Tensor.

    .. code-block:: text

        Input x:
            x.lod = [[0, 3, 5]]
            x.data = [[1], [2], [3], [4], [5]]
            x.dims = [5, 1]

        Attrs:
            win_size = 2
            pad_value = 0

        Output:
            out.lod = [[0, 3, 5]]
            out.data = [[1, 2], [2, 3], [3, 0], [4, 5], [5, 0]]
            out.dims = [5, 2]


    Args:
        input (Tensor): The input variable which is a index sequence, \
            which should be a Tensor with shape ``[d_1, 1]`` and 1-level lod info. \
            The data type should be int32 or int64.
        win_size (int): The window size for enumerating all sub-sequences.
        pad_value (int, optional): The padding value, default 0.
        name(str, optional): For detailed information, please refer \
            to :ref:`api_guide_Name`. Usually name is no need to set and \
            None by default.

    Returns:
            Tensor, The enumerate sequence variable which is a Tensor with \
            shape ``[d_1, win_size]`` and 1-level lod info. \
            The data type is same as ``input``.

    Examples:
        .. code-block:: python

            >>> import paddle
            >>> paddle.enable_static()

            >>> x = paddle.static.data(name='x', shape=[-1, 1], dtype='int32', lod_level=1)
            >>> out = paddle.static.nn.sequence_enumerate(input=x, win_size=3, pad_value=0)
    r   r   rF   r4   sequence_enumerateT)r0   r   r   )win_sizer-   r   N)r]   )r   r   r   r   r   r   r!   )r   r^   r-   r#   r$   r;   r%   r%   r&   r]     s$   4r]   r4   c                 C   s   t jj| |||S )aR  
    **SequenceMask Layer**

    This layer outputs a mask according to the input :code:`x` and
    :code:`maxlen` with data type of :code:`dtype`.

    Supposing :code:`x` is a Tensor with shape [d_1, d_2, ..., d_n], the
    :code:`y` is a mask with shape [d_1, d_2, ..., d_n, maxlen], where:

    .. math::

        y(i_1, i_2,..., i_n, j) = (j < x(i_1, i_2,..., i_n))

    .. code-block:: text

        Case:

        Consider input:
            x = [3, 1, 1, 0]    max_len = 4

        then we get out:
            mask = [[1, 1, 1, 0],
                    [1, 0, 0, 0],
                    [1, 0, 0, 0],
                    [0, 0, 0, 0]]

    Args:
        x (Tensor): Input tensor of sequence_mask layer, \
            whose elements are integers less than :code:`maxlen`. \
            Tensor or Tensor with shape [d_1, d_2, ..., d_n].
        maxlen (int, optional): Maximum length of the sequence. If :code:`maxlen` \
                           is None, it would be replace with :math:`max(x)`.
        dtype (np.dtype|paddle.dtype|str, optional): Data type of the output, \
             ``int64`` by default.
        name(str, optional): For detailed information, please refer \
            to :ref:`api_guide_Name`. Usually name is no need to set and \
            None by default.

    Returns:
            Tensor, The output sequence mask. Tensor with shape [d_1, d_2, ..., d_n, maxlen]
            and data type of :code:`dtype`. The data type should be bool, float32, float64, int8,
            int32 or int64.

    Examples:
        .. code-block:: python

            >>> import paddle

            >>> lengths = paddle.to_tensor([10, 9, 8])
            >>> mask = paddle.nn.functional.sequence_mask(lengths)

            >>> print(mask.numpy())
            [[1 1 1 1 1 1 1 1 1 1]
             [1 1 1 1 1 1 1 1 1 0]
             [1 1 1 1 1 1 1 1 0 0]]

    )paddlennZ
functionalsequence_mask)rL   rV   r   r#   r%   r%   r&   ra   M  s   ;ra   c                 C   s\   t  rJ dtdi t }t| dg dd |j| jd}|jdd| id|ii d	 |S )a  
    Note:
        Only receives Tensor as input. If your input is Tensor, please use reverse Op.(static.nn.** :ref:`api_paddle_flip` ).

    Only supports Tensor as input. It will reverse each sequence for input Tensor.
    Currently it only supports 1-level Tensor. This operator is very useful when building a
    reverse :ref:`api_paddle_nn_RNN` network.

    .. code-block:: text

        input(x) is a Tensor:
            x.lod  = [[0, 2, 5]]
            x.data = [[1,  2,  3,  4],
                      [5,  6,  7,  8],
                      [9, 10, 11, 12],
                      [13,14, 15, 16],
                      [17,18, 19, 20]]
            x.shape = [5, 4]

        output Tensor with same shape and LoD info:
            out.lod  = [[0, 2, 5]]
            out.data = [[5,  6,  7,  8],
                        [1,  2,  3,  4],
                        [17,18, 19, 20],
                        [13,14, 15, 16],
                        [9, 10, 11, 12]]
            out.shape = [5, 4]

    Args:
        x(Tensor): Tensor with 1-level LoD info. Currently it only supports 1-level Tensor.
            The data type should be float32, float64, int8, int32 or int64.
        name(str, optional): The default value is None.  Normally there is no need for user to set this property.
            For more information, please refer to :ref:`api_guide_Name` .

    Returns:
        Tensor: Tensor reversed from input. The data type is same with input.

    Examples:
        .. code-block:: python

            >>> import paddle
            >>> paddle.enable_static()

            >>> x = paddle.static.data(name='x', shape=[None, 10], dtype='float32', lod_level=1)
            >>> x_reversed = paddle.static.nn.sequence_reverse(x)
    r   sequence_reverserL   )r   r   Zint8rF   r4   zstatic.nn.sequence_reverser5   r   rP   r   N)rb   )r   r   r   r   r   r   r!   )rL   r#   r$   r;   r%   r%   r&   rb     s&   1rb   )r	   r
   TNNNNN)FN)Fr*   )N)rK   N)NN)r   N)Nr4   N)r_   Zpaddle.base.corer   Zpaddle.base.data_feederr   r   Zpaddle.base.frameworkr   r   Zpaddle.base.layer_helperr   Z+paddle.base.layers.layer_function_generatorr   __all__r   r'   r+   r2   r=   rB   rD   rM   rT   rU   rW   rX   rZ   r]   ra   rb   r%   r%   r%   r&   <module>   sH    

WuF:
;
^ 

{
yT
E
`
F>