我正在关注 ipython notebook 示例,通过其 python 接口训练 caffe。但是 caffe 模块似乎不包含教程中描述的模块
当我进入
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']
所以它不包含名为“层”的模块。
该教程是否已过时?是否有适用于我的 caffe 版本的更新版本?