fix layer name in logging
authorEvan Shelhamer <shelhamer@imaginarynumber.net>
Thu, 22 May 2014 09:13:04 +0000 (02:13 -0700)
committerEvan Shelhamer <shelhamer@imaginarynumber.net>
Thu, 22 May 2014 09:13:04 +0000 (02:13 -0700)
src/caffe/layers/eltwise_layer.cpp

index 769d015..13cd34d 100644 (file)
@@ -12,9 +12,9 @@ template <typename Dtype>
 void EltwiseLayer<Dtype>::SetUp(const vector<Blob<Dtype>*>& bottom,
       vector<Blob<Dtype>*>* top) {
   CHECK_GE(bottom.size(), 2) <<
-      "Eltwise Product Layer takes at least 2 blobs as input.";
+      "Eltwise Layer takes at least 2 blobs as input.";
   CHECK_EQ(top->size(), 1) <<
-      "Eltwise Product Layer takes a single blob as output.";
+      "Eltwise Layer takes a single blob as output.";
   const int num = bottom[0]->num();
   const int channels = bottom[0]->channels();
   const int height = bottom[0]->height();