Skip to content

Commit

Permalink
add space after "Loading mean file from"
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffdonahue committed Feb 2, 2015
1 parent 3334821 commit 53924a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion matlab/caffe/matcaffe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion src/caffe/data_transformer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion src/caffe/layers/window_data_layer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 53924a7

Please sign in to comment.