Skip to content

Commit

Permalink
Fix minor typos in strings.
Browse files Browse the repository at this point in the history
  • Loading branch information
kjkjava committed Dec 21, 2014
1 parent 555f4d3 commit 3855ad5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/caffe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ DEFINE_int32(gpu, -1,
DEFINE_string(solver, "",
"The solver definition protocol buffer text file.");
DEFINE_string(model, "",
"The model definition protocol buffer text file..");
"The model definition protocol buffer text file.");
DEFINE_string(snapshot, "",
"Optional; the snapshot solver state to resume training.");
DEFINE_string(weights, "",
Expand Down
2 changes: 1 addition & 1 deletion tools/convert_imageset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ int main(int argc, char** argv) {
CHECK_EQ(mdb_txn_begin(mdb_env, NULL, 0, &mdb_txn), MDB_SUCCESS)
<< "mdb_txn_begin failed";
CHECK_EQ(mdb_open(mdb_txn, NULL, 0, &mdb_dbi), MDB_SUCCESS)
<< "mdb_open failed. Does the lmdb already exist? ";
<< "mdb_open failed. Does the lmdb already exist?";
} else {
LOG(FATAL) << "Unknown db backend " << db_backend;
}
Expand Down
2 changes: 1 addition & 1 deletion tools/extract_features.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ int feature_extraction_pipeline(int argc, char** argv) {

int num_mini_batches = atoi(argv[++arg_pos]);

LOG(ERROR)<< "Extacting Features";
LOG(ERROR)<< "Extracting Features";

Datum datum;
vector<shared_ptr<leveldb::WriteBatch> > feature_batches(
Expand Down

0 comments on commit 3855ad5

Please sign in to comment.