You can comment by adding the # char: everything in the line after that is a comment:
layer {
name: "aLayerWithComments" # I picked this cool name by myself
type: "ReLU"
bottom: "someData" # this is the output of the layer below
top: "someData" # same name means this is an "in-place" layer
}
# and now you can comment the entire line...
You can comment by adding the
#
char: everything in the line after that is a comment: