Skip to content

Commit

Permalink
merged pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabri95 committed Oct 23, 2020
2 parents f04a98b + c28270f commit f1e1d90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ api:

github:
@make html
@cp -a build/html/. ../docs
@cp -a build/html/. ../e2cnn-docs


# Catch-all target: route all unknown targets to Sphinx using the new
Expand Down
2 changes: 1 addition & 1 deletion e2cnn/nn/modules/r2_conv/r2convolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ def forward(self, input: GeometricTensor):

# use it for convolution and return the result

if self.padding_mode != 'zeros':
if self.padding_mode == 'zeros':
output = conv2d(input.tensor, filter,
stride=self.stride,
padding=self.padding,
Expand Down

0 comments on commit f1e1d90

Please sign in to comment.