group_equivariant_capsules_pytorch
group_equivariant_capsules_pytorch copied to clipboard
Pytorch implementation of Group Equivariant Capsule Networks
When I run setup.py, it gives the message that installation is complete. However, import does not work. I get the message File "examples/mnist.py", line 10, in from group_capsules.utils import grid,...
@mrjel Hi,thanks for sharing this wonderful repo.I'm a beginner to the Capsule Network. When I run the affnist.py,I got something wrong. It was about the mismatching of the data format.(The...
Hi. After some workarounds, when I tried using your code, I found that the splineconv declaration does not accept the norm argument. I received the following error: __init__() got an...
Hello @mrjel : I cloned your code to my cpu-only computer. I follow the instructions in your readme.md. when I run the mnist example, I got a RuntimeError. Here is...
Hi, thanks for sharing this wonderful repo. I found that there is a function space_to_depth defined as follows: def space_to_depth(input, block_size): block_size = int(block_size) block_size_sq = block_size * block_size output...