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
参数在什么意义上作为批量大小有意义?为什么会有批次?
对我来说似乎有点不必要 - 是否有任何单个文档指定语法,阐明新/旧/不赞成/不支持的语法,指定文件扮演的角色(网络架构规范,网络培训参数,其他?并解开混乱?