File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -78,8 +78,13 @@ def simple_img_conv_pool(input,
78
78
the first half of the filters is only connected to the first half
79
79
of the input channels, while the second half of the filters is only
80
80
connected to the second half of the input channels. Default: groups=1
81
- param_attr (ParamAttr): The parameters to the Conv2d Layer. Default: None
82
- bias_attr (ParamAttr): Bias parameter for the Conv2d layer. Default: None
81
+ param_attr (ParamAttr): The parameter attribute for learnable parameters/weights
82
+ of conv2d. If it is set to None, the parameter is initialized with
83
+ :math:`Normal(0.0, std)`, and the :math:`std` is :math:`(\\ frac{2.0 }{filter\_elem\_num})^{0.5}`.
84
+ Default: None.
85
+ bias_attr (ParamAttr): The parameter attribute for the bias of conv2d.
86
+ If it is set to False, no bias will be added to the output units.
87
+ If it is set to None, the bias is initialized zero. Default: None.
83
88
act (str): Activation type for Conv2d. Default: None
84
89
use_cudnn (bool): Use cudnn kernel or not, it is valid only when the cudnn
85
90
library is installed. Default: True
You can’t perform that action at this time.
0 commit comments