-
Notifications
You must be signed in to change notification settings - Fork 128
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Training error 'module' object has no attribute 'downsample' #28
Comments
I also encountered this situation, and I changed the source code as follows: |
I got After change to Any idea? |
I solved the same issue by switching to theano 0.8.2 |
I solved this issue in theano 1.0.1 by replacing the following statements: op = T.signal.downsample.DownsampleFactorMax((ds[1], ds[2]), ignore_border) with these: op = T.signal.pool.Pool(ignore_border) And the other call to DownsampleFactorMax in the same way. |
This is apparently caused by Theano moving |
When I am trying to run the train.py file for training, I am getting the error 'module' object has no attribute 'downsample'
I read that downsample in theano.tensor.signal import downsample has been moved to pool module.
But which function is equivalent in pool is equivalent to DownsampleFactorMax in downsample.
Please help ASAP.
The text was updated successfully, but these errors were encountered: