Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/opengl/4.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Neural network 如何在prototxt文件中编写注释?_Neural Network_Deep Learning_Caffe_Protocol Buffers - Fatal编程技术网

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