Skip to content

Commit

Permalink
Add missing space in message
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhers committed Feb 8, 2017
1 parent fd77b1f commit ea2a0d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion parser/lstm-parse.cc
Original file line number Diff line number Diff line change
Expand Up @@ -951,7 +951,7 @@ int main(int argc, char** argv) {

if (conf.count("words")) {
pretrained[kUNK] = vector<float>(PRETRAINED_DIM, 0);
cerr << "Loading from " << conf["words"].as<string>() << " with" << PRETRAINED_DIM << " dimensions\n";
cerr << "Loading from " << conf["words"].as<string>() << " with " << PRETRAINED_DIM << " dimensions\n";
ifstream in(conf["words"].as<string>().c_str());
string line;
getline(in, line);
Expand Down

0 comments on commit ea2a0d0

Please sign in to comment.