Python module caffe.io doesn't work

890 Views Asked by At

I have Ubuntu 16.04 with installed Python 2.7 and 3.5. I've got Caffe from repository and successfully compiled, all tests are passed.

When I work in Terminal I can import caffe module and it has "io":

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

But when I use PyCharm "io" is absent:

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

Code example that I'm trying to run is here https://github.com/google/deepdream/blob/master/dream.ipynb

1

There are 1 best solutions below

0
On

The reason is local caffe.py file. thanks @martijn-pieters for your comment