类
Blob
Blob是一个4维{num, channels, height, width}的数据结构类,实际采用连续的一维数组来存储。
Layer
在layer类中使用的参数LayerParameter是通过ProtoBuf生成的类(一个message)定义在文件src/caffe/proto/caffe.proto
,
Net
Net类中定义整个模型,对于模型中layer的存储采用的是vector
|
|
在该类中还对每一层的中间结果进行了存储
|
|
Blob是一个4维{num, channels, height, width}的数据结构类,实际采用连续的一维数组来存储。
在layer类中使用的参数LayerParameter是通过ProtoBuf生成的类(一个message)定义在文件src/caffe/proto/caffe.proto
,
Net类中定义整个模型,对于模型中layer的存储采用的是vector
|
|
在该类中还对每一层的中间结果进行了存储
|
|