I tried to use lutorypy with pytorch together, but there is coredump for MaxPool2d layer.
Would you like to fix it, please?
1 import lutorpy as lua
2 import torch as pt
3 print 'start test'
4 m = pt.nn.MaxPool2d(3, stride=2)
5 input = pt.autograd.Variable(pt.randn(20, 16, 50, 32))
6 pt_output = m(input)
7 print 'finish test'