From 26f6b03ef3bce96e18836a631a2ba634babd2f02 Mon Sep 17 00:00:00 2001 From: niboshi Date: Fri, 18 Aug 2017 16:33:54 +0900 Subject: [PATCH] Fix doc of clipped_relu --- chainer/functions/activation/clipped_relu.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chainer/functions/activation/clipped_relu.py b/chainer/functions/activation/clipped_relu.py index 0dadd69d6aeb..23669d749304 100644 --- a/chainer/functions/activation/clipped_relu.py +++ b/chainer/functions/activation/clipped_relu.py @@ -54,7 +54,7 @@ def clipped_relu(x, z=20.0): For a clipping value :math:`z(>0)`, it computes - .. math::`ClippedReLU(x, z) = \\min(\\max(0, x), z)`. + .. math:: \\text{ClippedReLU}(x, z) = \\min(\\max(0, x), z). Args: x (:class:`~chainer.Variable` or :class:`numpy.ndarray` or \