From 3bd8ff7eddc76b3b5f2c2d0501c1f9c2d0bc8cb5 Mon Sep 17 00:00:00 2001 From: Ryosuke Okuta Date: Thu, 24 Aug 2017 01:40:29 +0900 Subject: [PATCH] Merge pull request #3178 from niboshi/doc-clipped-relu 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 \