neural-storyteller
neural-storyteller copied to clipboard
UserWarning: downsample module has been moved to the theano.tensor.signal.pool module. "downsample module has been moved to the theano.tensor.signal.pool module.")
How i can solve this problem?
This link helped https://github.com/Theano/Theano/issues/4337 Same issue [theano v.0.9.0dev1.dev-2...]; changed
from theano.tensor.signal import downsample ... pooled_out = downsample.max_pool_2d( ... ) to
from theano.tensor.signal import pool ... pooled_out = pool.pool_2d( ... ) Works!