neural-storyteller icon indicating copy to clipboard operation
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.")

Open Zrufy opened this issue 8 years ago • 1 comments

How i can solve this problem?

Zrufy avatar Oct 16 '16 10:10 Zrufy

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!

navneetkrc avatar Jun 22 '17 10:06 navneetkrc