Skip to content

Commit

Permalink
https://github.com/Microsoft/MMdnn/issues/463
Browse files Browse the repository at this point in the history
  • Loading branch information
bkblanton committed Oct 27, 2018
1 parent b3bc509 commit 11fcc9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mmdnn/conversion/onnx/shape_inference.py
Expand Up @@ -12,7 +12,7 @@ def AveragePool(shape, auto_pad = None, kernelShape = None, pads = None, strides
dim = len(kernelShape)

if pads is None:
pads = [0 for _ in range(dim * 2)]
pads = [1 for _ in range(dim * 2)]
if strides is None:
strides = [1 for _ in range(dim)]

Expand Down

0 comments on commit 11fcc9e

Please sign in to comment.