You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -1459,9 +1459,7 @@ class GRUUnit(layers.Layer):
1459
1459
and concatenation of :math:`u_t`, :math:`r_t` and :math:`m_t`.
1460
1460
1461
1461
Args:
1462
-
input (Variable): The fc transformed input value of current step.
1463
1462
name_scope (str): See base class.
1464
-
hidden (Variable): The hidden value of gru unit from previous step.
1465
1463
size (integer): The input dimension value.
1466
1464
param_attr(ParamAttr|None): The parameter attribute for the learnable
1467
1465
hidden-hidden weight matrix. Note:
@@ -2064,8 +2062,6 @@ class Conv2DTranspose(layers.Layer):
2064
2062
library is installed. Default: True.
2065
2063
act (str): Activation type, if it is set to None, activation is not appended.
2066
2064
Default: None.
2067
-
name(str|None): A name for this layer(optional). If set None, the layer
2068
-
will be named automatically. Default: True.
2069
2065
2070
2066
Returns:
2071
2067
Variable: The tensor variable storing the convolution transpose result.
@@ -2213,8 +2209,6 @@ class SequenceConv(layers.Layer):
2213
2209
is not set, the parameter is initialized with Xavier. Default: None.
2214
2210
act (str): Activation type, if it is set to None, activation is not appended.
2215
2211
Default: None.
2216
-
name (str|None): A name for this layer(optional). If set None, the layer
2217
-
will be named automatically. Default: None.
2218
2212
2219
2213
Returns:
2220
2214
Variable: output of sequence_conv
@@ -2291,7 +2285,8 @@ class RowConv(layers.Layer):
2291
2285
act (str): Non-linear activation to be applied to output variable.
2292
2286
2293
2287
Returns:
2294
-
the output(Out) is a LodTensor, which supports variable time-length input sequences. The underlying tensor in this LodTensor is a matrix with shape T x N, i.e., the same shape as X.
2288
+
the output(Out) is a LodTensor, which supports variable time-length input sequences.
2289
+
The underlying tensor in this LodTensor is a matrix with shape T x N, i.e., the same shape as X.
0 commit comments