ImportError: No module named downsample

前端 未结 4 633
孤独总比滥情好
孤独总比滥情好 2021-02-10 06:05

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.

4条回答
  •  南旧
    南旧 (楼主)
    2021-02-10 06:55

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

    from theano.tensor.signal.pool import pool_2d
    

    After changing delete your theano cache with the command:

    theano-cache purge
    

提交回复
热议问题