From 5f1d2cb9cf7823d08eeed556349736619f61bc95 Mon Sep 17 00:00:00 2001 From: yangyaming Date: Mon, 22 Jan 2018 14:44:22 +0800 Subject: [PATCH] Fix typo. --- python/paddle/v2/fluid/layers/nn.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/paddle/v2/fluid/layers/nn.py b/python/paddle/v2/fluid/layers/nn.py index 10a7dd4b078..3f309852dcb 100644 --- a/python/paddle/v2/fluid/layers/nn.py +++ b/python/paddle/v2/fluid/layers/nn.py @@ -1977,7 +1977,7 @@ def row_conv(input, future_context_size, param_attr=None, act=None): """Row Conv Operator. This layer will apply lookahead convolution to **input**. The input variable should be a 2D LoDTensor with shape [T, D]. Parameters with shape [future_context_size + 1, D] will be created. The math - equation of row convolution is as following: + equation of row convolution is as follows: .. math:: Out_{i} = \sum_{j = i} ^ {i + \\tau} X_{j} \odot W_{i - j} -- GitLab