From 9fa5f8cfff06e03cea4d595877be196dd999bb76 Mon Sep 17 00:00:00 2001 From: chengduozh Date: Wed, 17 Oct 2018 14:42:01 +0800 Subject: [PATCH] fix seq_conv doc test=develop --- python/paddle/fluid/layers/nn.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/paddle/fluid/layers/nn.py b/python/paddle/fluid/layers/nn.py index 5b56811380f..e804716fc9f 100644 --- a/python/paddle/fluid/layers/nn.py +++ b/python/paddle/fluid/layers/nn.py @@ -1280,7 +1280,9 @@ def sequence_conv(input, bias_attr (ParamAttr): The parameter attribute for the bias of this layer. If it is set to False, no bias will be added to the output units. If it is set to None, the bias is initialized zero. Default: None. - param_attr (ParamAttr|None): attributes for parameter + param_attr (ParamAttr): The parameter attribute for learnable parameters/weights + of this layer. If it is set to None, the parameter is initialized with + Xavier. Default: None. act (str): the activation type Returns: -- GitLab