我正在通过其python界面关注训练caffe的ipython笔记本示例。但是caffe模块似乎不包含tutorial
中描述的模块当我进入
import caffe
from caffe import layers as L
我收到错误:
ImportError Traceback (most recent call last)
<ipython-input-5-7cbb5661b7a7> in <module>()
----> 1 from caffe import layers as L
ImportError: cannot import name layers
当我做dir(caffe)时,我得到了:
['Classifier',
'Detector',
'Layer',
'Net',
'SGDSolver',
'TEST',
'TRAIN',
'__builtins__',
'__doc__',
'__file__',
'__name__',
'__package__',
'__path__',
'_caffe',
'classifier',
'detector',
'get_solver',
'io',
'proto',
'pycaffe',
'set_device',
'set_mode_cpu',
'set_mode_gpu']
因此它不包含名为“layers”的模块。
教程是否过时了?是否有适用于我的caffe版本的更新版本?