Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ class ExampleNetwork(ME.MinkowskiNetwork):
kernel_size=3,
stride=2,
dilation=1,
has_bias=False,
bias=False,
dimension=D),
ME.MinkowskiBatchNorm(64),
ME.MinkowskiReLU())
Expand Down
8 changes: 4 additions & 4 deletions docs/benchmark.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ conv = ME.MinkowskiConvolution(
kernel_size=7,
stride=1,
dilation=1,
has_bias=False,
bias=False,
dimension=3)
```

Expand Down Expand Up @@ -53,23 +53,23 @@ net = nn.Sequential(
kernel_size=5,
stride=1,
dilation=1,
has_bias=False,
bias=False,
dimension=3),
ME.MinkowskiConvolution(
in_channels=32,
out_channels=32,
kernel_size=2,
stride=2,
dilation=1,
has_bias=False,
bias=False,
dimension=3),
ME.MinkowskiConvolutionTranspose
in_channels=32,
out_channels=32,
kernel_size=2,
stride=2,
dilation=1,
has_bias=False,
bias=False,
dimension=3))
```

Expand Down
6 changes: 3 additions & 3 deletions examples/convolution.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def conv():
out_channels,
kernel_size=3,
stride=2,
has_bias=False,
bias=False,
dimension=D)

output = conv(input)
Expand All @@ -79,7 +79,7 @@ def conv():
out_channels,
kernel_size=3,
stride=2,
has_bias=False,
bias=False,
dimension=D)
output = conv_tr(input)

Expand Down Expand Up @@ -109,7 +109,7 @@ def conv_on_coords():
out_channels,
kernel_size=3,
stride=2,
has_bias=False,
bias=False,
dimension=D)

pool_tr = ME.MinkowskiPoolingTranspose(
Expand Down
4 changes: 2 additions & 2 deletions tests/python/chwise_conv.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def test(self):
in_channels,
kernel_size=3,
stride=1,
has_bias=False,
bias=False,
dimension=D).double()

print('Initial input: ', input)
Expand Down Expand Up @@ -90,7 +90,7 @@ def test_gpu(self):
in_channels,
kernel_size=3,
stride=1,
has_bias=False,
bias=False,
dimension=D).double().to(device)

print('Initial input: ', input)
Expand Down
4 changes: 2 additions & 2 deletions tests/python/conv_on_coords.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def test(self):
out_channels,
kernel_size=3,
stride=1,
has_bias=False,
bias=False,
dimension=D).double()

print('Initial input: ', input)
Expand Down Expand Up @@ -103,7 +103,7 @@ def test_tr(self):
out_channels,
kernel_size=3,
stride=2,
has_bias=False,
bias=False,
dimension=D).double()
print('Initial input: ', input)
print('Specified output coords: ', out_coords)
Expand Down