You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tensorlayer/layers/convolution.py
+15-12Lines changed: 15 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -1561,6 +1561,8 @@ class DepthwiseConv2d(Layer):
1561
1561
The activation function of this layer.
1562
1562
padding : str
1563
1563
The padding algorithm type: "SAME" or "VALID".
1564
+
rate: tuple of 2 int
1565
+
The dilation rate in which we sample input values across the height and width dimensions in atrous convolution. If it is greater than 1, then all values of strides must be 1.
1564
1566
W_init : initializer
1565
1567
The initializer for the weight matrix.
1566
1568
b_init : initializer or None
@@ -1574,28 +1576,29 @@ class DepthwiseConv2d(Layer):
0 commit comments