Neural network 如何在prototxt文件中编写注释?

Neural network 如何在prototxt文件中编写注释?,neural-network,deep-learning,caffe,protocol-buffers,Neural Network,Deep Learning,Caffe,Protocol Buffers,我找不到如何在prototxt文件中编写注释 有没有办法在prototxt文件中添加注释,怎么做 谢谢您可以通过添加#字符进行评论:该行后面的所有内容都是评论: layer { name: "aLayerWithComments" # I picked this cool name by myself type: "ReLU" bottom: "someData" # this is the output of the layer below top: "someData" #

我找不到如何在prototxt文件中编写注释

有没有办法在prototxt文件中添加注释,怎么做


谢谢

您可以通过添加
#
字符进行评论:该行后面的所有内容都是评论:

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...
(谷歌的第一个链接)有带注释的示例