语法指南& Caffe原型的版本控制

时间:2018-01-18 21:15:38

标签: caffe

Caffe prototxt文件格式是否有简洁的语法指南?显然,有更新版本和更新版本 - 是否有与之相关的任何版本控制系统?

我注意到在某些版本中,您会看到(使用我的# comments):

input_dim: 80    # specifies batch size?
input_dim: 3     # specifies image data channels
input_dim: 224   # specifies image width
input_dim: 224   # specifies image height

而在其他人(实际上在deploy.prototxt文件中),您会看到:

input_param { shape: { dim: 10 dim: 3 dim: 227 dim: 227 } }

和其他地方你会看到明确的batch_size参数。但是等一下:在部署网络时,10参数在什么意义上作为批量大小有意义?为什么会有批次?

对我来说似乎有点不必要 - 是否有任何单个文档指定语法,阐明新/旧/不赞成/不支持的语法,指定文件扮演的角色(网络架构规范,网络培训参数,其他?并解开混乱?

0 个答案:

没有答案