Skip to content

Commit 57e500f

Browse files
committed
fix the convtranspose
1 parent 353f006 commit 57e500f

File tree

1 file changed

+1
-1
lines changed
  • x2paddle/op_mapper/dygraph/onnx2paddle/opset9

1 file changed

+1
-1
lines changed

x2paddle/op_mapper/dygraph/onnx2paddle/opset9/opset.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1793,7 +1793,7 @@ def ConvTranspose(self, node):
17931793
inputs_dict = {'x': val_x if isinstance(val_x, str) else val_x.name}
17941794
layer_attrs = {
17951795
"in_channels": num_in_channels,
1796-
"out_channels": num_out_channels,
1796+
"out_channels": num_out_channels * num_groups,
17971797
"kernel_size": kernel_shape,
17981798
"stride": strides,
17991799
"dilation": dilations,

0 commit comments

Comments
 (0)