How to write comments in prototxt files?

I cannot find how to write comments in prototxt files.

Is there a way to have comments in the prototype file like?

thanks

+7
deep-learning neural-network caffe protocol-buffers
source share
1 answer

You can comment by adding # char: everything in the line after this 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... 
+11
source share

All Articles