DeConvNet icon indicating copy to clipboard operation
DeConvNet copied to clipboard

import downsample error

Open elwell67 opened this issue 8 years ago • 0 comments

The new version of theano has removed/renamed the max_pool_2d, resulting in an error in Layers.py

To resolve, change

"from theano.tensor.signal import downsample" to "from theano.tensor.signal import pool"

Then, replace all instances of "downsample.max_pool_2d" with "pool.pool2d"

elwell67 avatar Sep 08 '17 16:09 elwell67