Alexnet中deploy.prototxt与train_val.prototxt的对比

一般模型中会包含如下几个文件:
Alexnet中deploy.prototxt与train_val.prototxt的对比_第1张图片
其中,train_val.prototxt 文件是网络配置文件。该文件是在训练的时候用的。deploy.prototxt文件是在测试时使用的文件。solver.prototxt文件是网络求解文件。

deploy.prototxt文件是在train_val.prototxt 文件最大的不同是train_val.prototxt 中每一个卷积层中会有weight_filler和bias_filler对weight和bias进行初始化。

以下为train_val.prototxt 和deploy.prototxt文件的对比结果:
Alexnet中deploy.prototxt与train_val.prototxt的对比_第2张图片
Alexnet中deploy.prototxt与train_val.prototxt的对比_第3张图片
Alexnet中deploy.prototxt与train_val.prototxt的对比_第4张图片
这里写图片描述
Alexnet中deploy.prototxt与train_val.prototxt的对比_第5张图片
Alexnet中deploy.prototxt与train_val.prototxt的对比_第6张图片
Alexnet中deploy.prototxt与train_val.prototxt的对比_第7张图片
Alexnet中deploy.prototxt与train_val.prototxt的对比_第8张图片
Alexnet中deploy.prototxt与train_val.prototxt的对比_第9张图片
Alexnet中deploy.prototxt与train_val.prototxt的对比_第10张图片
Alexnet中deploy.prototxt与train_val.prototxt的对比_第11张图片

你可能感兴趣的:(Deep,Learning,caffe)