Skip to content

Commit 0d86f13

Browse files
committed
"fix math"
1 parent f2c9c33 commit 0d86f13

File tree

1 file changed

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

1 file changed

+1
-3
lines changed

python/paddle/fluid/layers/nn.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4210,9 +4210,7 @@ def lrn(input, n=5, k=1.0, alpha=1e-4, beta=0.75, name=None):
42104210
42114211
.. math::
42124212
4213-
Output(i, x, y) = Input(i, x, y) / \left( \\
4214-
k + \alpha \sum\limits^{\min(C, c + n/2)}_{j = \max(0, c - n/2)} \\
4215-
(Input(j, x, y))^2\right)^{\beta}
4213+
Output(i, x, y) = Input(i, x, y) / \\left(k + \\alpha \\sum\\limits^{\\min(C, c + n/2)}_{j = \\max(0, c - n/2)}(Input(j, x, y))^2\\right)^{\\beta}
42164214
42174215
In the above equation:
42184216

0 commit comments

Comments
 (0)