diff --git a/src/qonnx/custom_op/channels_last/conv.py b/src/qonnx/custom_op/channels_last/conv.py index b0ff237b..9c11d0d3 100644 --- a/src/qonnx/custom_op/channels_last/conv.py +++ b/src/qonnx/custom_op/channels_last/conv.py @@ -54,7 +54,7 @@ def get_nodeattr_types(self): "dilations": ("ints", True, []), # amount of padding to be inserted before/after each non-dummy spatial dim # i.e. [H_begin, W_begin, H_end, W_end] - "pads": ("ints", True, [0, 0, 0, 0]), # default: no padding + "pads": ("ints", False, [0, 0, 0, 0]), # default: no padding "group": ("i", True, 1), }