From: Jeff Donahue Date: Wed, 16 Apr 2014 15:14:27 +0000 (-0700) Subject: change to correct next layer id for merge X-Git-Tag: submit/tizen/20180823.020014~692^2~36^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=2d968edc8b1f0da1f543aeef8307482ab5974419;p=platform%2Fupstream%2Fcaffeonacl.git change to correct next layer id for merge --- diff --git a/src/caffe/proto/caffe.proto b/src/caffe/proto/caffe.proto index 8073c28..284b1e2 100644 --- a/src/caffe/proto/caffe.proto +++ b/src/caffe/proto/caffe.proto @@ -106,7 +106,7 @@ message LayerParameter { // line above the enum. Update the next available ID when you add a new // LayerType. // - // LayerType next available ID: 27 + // LayerType next available ID: 28 enum LayerType { // "NONE" layer type is 0th enum element so that we don't cause confusion // by defaulting to an existent LayerType (instead, should usually error if @@ -133,7 +133,7 @@ message LayerParameter { POWER = 26; RELU = 18; SIGMOID = 19; - SIGMOID_CROSS_ENTROPY_LOSS = 1000; + SIGMOID_CROSS_ENTROPY_LOSS = 27; SOFTMAX = 20; SOFTMAX_LOSS = 21; SPLIT = 22;