2016-05-24 6 views
7

prototxtファイルにコメントを書く方法が見つかりません。prototxtファイルにコメントを書くには?

prototxtファイルにコメントを付ける方法はありますか?あなたは#文字を追加することによって、コメントすることができ

おかげ

+2

http://caffe.berkeleyvision.org/gathered/examples/mnist:すべてをそれ以降の行にはコメントです。 html(Googleの最初のリンク)にコメントのある例があります –

答えて

11

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... 
関連する問題