本文介绍了ImportError:没有名为downsample的模块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用Theano.操作系统是Ubuntu. Theano是UPTODATE.我想知道为什么我要通过from theano.tensor.signal.downsample import max_pool_2d命令获得.

I am using Theano. The OS is Ubuntu. The Theano is UPTODATE. I am wondering why I am getting by from theano.tensor.signal.downsample import max_pool_2d command.

ImportError: No module named downsample.

推荐答案

downsample模块已移至pool,因此尝试将其声明为:

The downsample module has been moved to pool, so try declaring it as:

from theano.tensor.signal.pool import pool_2d

更改后,使用以下命令删除theano缓存:

After changing delete your theano cache with the command:

theano-cache purge

这篇关于ImportError:没有名为downsample的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 16:14