I found that it writes "layers" in the "imagenet_finetune_overfeat_train.prototxt" while in other caffe net prototxt file it writes "layer". I don't know what's the difference about "layer" and "layers". For example,
in the caffe official documents, it shows:
layer { name: "relu1" type: "ReLU" bottom: "ip1" top: "ip1" }
but in the imagenet_finetune_overfeat_train.prototxt, it shows
layers { name: "relu3" type: RELU bottom: "conv3" top: "conv3" }
I really want to know what's the difference between them. Any thoughts would be greatly appreciated!
Thanks.