美文网首页程序员
解决 AttributeError: 'module' obje

解决 AttributeError: 'module' obje

作者: Jiacch | 来源:发表于2017-10-01 22:43 被阅读0次

Keras报错 - AttributeError: 'module' object has no attribute 'convolution' 解决记录

在OSX上第一次使用pip安装如下的whl,在tensorflow中运行正常,但是在keras中运行程序会抱 AttributeError: 'module' object has no attribute 'convolution'的错误。

pip install https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.11.0rc0-py2-none-any.whl

参考网友回答,安装相应的包没有解决相应问题。

于是通过pip uninstall 删除安装的tennsorflow包后,直接使用pip命令安装。此时在keras中运行正常。

pip install --upgrade tensorflow

相关文章

网友评论

    本文标题:解决 AttributeError: 'module' obje

    本文链接:https://www.haomeiwen.com/subject/mhbaextx.html