Skip to content

Commit 41028f5

Browse files
committed
Refine the doc.
1 parent 5f1d2cb commit 41028f5

File tree

1 file changed

+3
-3
lines changed
  • python/paddle/v2/fluid/layers

1 file changed

+3
-3
lines changed

python/paddle/v2/fluid/layers/nn.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1985,8 +1985,7 @@ def row_conv(input, future_context_size, param_attr=None, act=None):
19851985
In the above equation:
19861986
19871987
* :math:`Out_{i}`: The i-th row of output variable with shape [1, D].
1988-
* :math:`\\tau`: Future context size. Please note, the shape of
1989-
convolution kernel is [future_context_size + 1, D].
1988+
* :math:`\\tau`: Future context size.
19901989
* :math:`X_{j}`: The j-th row of input variable with shape [1, D].
19911990
* :math:`W_{i-j}`: The (i-j)-th row of parameters with shape [1, D].
19921991
@@ -1997,7 +1996,8 @@ def row_conv(input, future_context_size, param_attr=None, act=None):
19971996
19981997
Args:
19991998
input (Variable): Input variable, a 2D LoDTensor with shape [T, D].
2000-
future_context_size (int): Future context size.
1999+
future_context_size (int): Future context size. Please note, the shape
2000+
of convolution kernel is [future_context_size + 1, D].
20012001
param_attr (ParamAttr): Attributes of parameters, including
20022002
name, initializer etc.
20032003
act (str): Non-linear activation to be applied to output variable.

0 commit comments

Comments
 (0)