add space after "Loading mean file from"
authorJeff Donahue <jeff.donahue@gmail.com>
Mon, 2 Feb 2015 20:38:43 +0000 (12:38 -0800)
committerJeff Donahue <jeff.donahue@gmail.com>
Mon, 2 Feb 2015 20:38:43 +0000 (12:38 -0800)
matlab/caffe/matcaffe.cpp
src/caffe/data_transformer.cpp
src/caffe/layers/window_data_layer.cpp

index 0ab0b00..fd8397e 100644 (file)
@@ -343,7 +343,7 @@ static void read_mean(MEX_ARGS) {
     }
     const string& mean_file = mxArrayToString(prhs[0]);
     Blob<float> data_mean;
-    LOG(INFO) << "Loading mean file from" << mean_file;
+    LOG(INFO) << "Loading mean file from" << mean_file;
     BlobProto blob_proto;
     bool result = ReadProtoFromBinaryFile(mean_file.c_str(), &blob_proto);
     if (!result) {
index 209dc03..3d2c78f 100644 (file)
@@ -19,7 +19,7 @@ DataTransformer<Dtype>::DataTransformer(const TransformationParameter& param)
     CHECK_EQ(param_.mean_value_size(), 0) <<
       "Cannot specify mean_file and mean_value at the same time";
     const string& mean_file = param.mean_file();
-    LOG(INFO) << "Loading mean file from" << mean_file;
+    LOG(INFO) << "Loading mean file from" << mean_file;
     BlobProto blob_proto;
     ReadProtoFromBinaryFileOrDie(mean_file.c_str(), &blob_proto);
     data_mean_.FromProto(blob_proto);
index 6287b38..83372e0 100644 (file)
@@ -189,7 +189,7 @@ void WindowDataLayer<Dtype>::DataLayerSetUp(const vector<Blob<Dtype>*>& bottom,
   if (has_mean_file_) {
     const string& mean_file =
           this->transform_param_.mean_file();
-    LOG(INFO) << "Loading mean file from" << mean_file;
+    LOG(INFO) << "Loading mean file from" << mean_file;
     BlobProto blob_proto;
     ReadProtoFromBinaryFileOrDie(mean_file.c_str(), &blob_proto);
     data_mean_.FromProto(blob_proto);