From 4f43e981c1a1a4bc4eaefa8c3c2ecccabdcb744d Mon Sep 17 00:00:00 2001 From: jerrywgz Date: Tue, 26 Feb 2019 02:50:30 +0000 Subject: [PATCH] add comment for revise, test=develop --- python/paddle/fluid/layers/nn.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/paddle/fluid/layers/nn.py b/python/paddle/fluid/layers/nn.py index b78b6d7d8ac..56e58da254b 100644 --- a/python/paddle/fluid/layers/nn.py +++ b/python/paddle/fluid/layers/nn.py @@ -1796,7 +1796,8 @@ def softmax(input, use_cudnn=False, name=None): Args: input (Variable): The input variable. use_cudnn (bool): Use cudnn kernel or not, it is valid only when the cudnn \ - library is installed. + library is installed. To improve numerical stablity, set use_cudnn to \ + False by default. Default: False name (str|None): A name for this layer(optional). If set None, the layer will be named automatically. Default: None. -- GitLab