1

我有安装了 Python 2.7 和 3.5 的 Ubuntu 16.04。我从存储库中获得了 Caffe 并成功编译,所有测试都通过了。

当我在终端工作时,我可以导入 caffe 模块,它有“io”:

>>> import caffe
>>> caffe.io
<module 'caffe.io' from 'caffe/io.pyc'>

但是当我使用 PyCharm 时,“io”不存在:

    model = caffe.io.caffe_pb2.NetParameter()
AttributeError: 'module' object has no attribute 'io'

我试图运行的代码示例在这里https://github.com/google/deepdream/blob/master/dream.ipynb

4

1 回答 1

0

原因是本地 caffe.py 文件。感谢@martijn-pieters 的评论

于 2016-08-15T14:38:24.280 回答