From 42c81e526ca9f8dda890acc8996cc1ef9a85d593 Mon Sep 17 00:00:00 2001 From: Xun Deng Date: Tue, 18 Aug 2020 15:53:26 -0400 Subject: [PATCH] fixed indentation in Softplus comments --- mindspore/nn/probability/bijector/softplus.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mindspore/nn/probability/bijector/softplus.py b/mindspore/nn/probability/bijector/softplus.py index 105beb061b..ee86aa2133 100644 --- a/mindspore/nn/probability/bijector/softplus.py +++ b/mindspore/nn/probability/bijector/softplus.py @@ -25,7 +25,7 @@ class Softplus(Bijector): This Bijector performs the operation, where k is the sharpness factor. .. math:: - Y = \frac{\log(1 + e ^ {kX})}{k} + Y = \frac{\log(1 + e ^ {kX})}{k} Args: sharpness (float): scale factor. Default: 1.0.