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
The text was updated successfully, but these errors were encountered:
zhxiucui
changed the title
tensorlayerx.nn.Conv2DTranspose没有output_padding参数,但paddle.nn.Conv2DTranspose有
tensorlayerx.nn.ConvTranspose2d没有output_padding参数,但paddle.nn.Conv2DTranspose有
Nov 21, 2022
Uh oh!
There was an error while loading. Please reload this page.
paddle源码class paddle.nn.Conv2DTranspose(in_channels, out_channels, kernel_size, stride=1, padding=0, output_padding=0, groups=1, dilation=1, weight_attr=None, bias_attr=None, data_format='NCHW')
其中,output_padding (int|list|tuple, optional): 输出形状上一侧额外添加的大小. 默认值: 0.
tensorlayerx(paddle为backend)源码
class tensorlayerx.nn.ConvTranspose2d( out_channels=32,kernel_size=(3, 3),stride=(1, 1),act=None,padding='SAME',
data_format='channels_last',dilation=(1, 1),W_init='truncated_normal', b_init='constant', in_channels=None, name=None, # 'conv2d_transpose',
)
The text was updated successfully, but these errors were encountered: