Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/moses-smt/vowpal_wabbit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Langford <jl@hunch.net>2011-08-03 02:29:31 +0400
committerJohn Langford <jl@hunch.net>2011-08-03 02:29:31 +0400
commit6734a953e719f5ca6e0cc942c4848af066c2c35c (patch)
treed5d1014f18917e722f49615545e5f00ccd290ed9 /parse_args.cc
parent0554f14079f6cc1a5650921f49ffb0923dde843f (diff)
more cout/cerr swappage
Diffstat (limited to 'parse_args.cc')
-rw-r--r--parse_args.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse_args.cc b/parse_args.cc
index dc8395e3..a7f81b76 100644
--- a/parse_args.cc
+++ b/parse_args.cc
@@ -270,7 +270,7 @@ po::variables_map parse_args(int argc, char *argv[], boost::program_options::opt
cout << "You can not skip unless ngram is > 1" << endl;
exit(1);
}
- cout << "You have chosen to generate " << global.skips << "-skip-" << global.ngram << "-grams" << endl;
+ cerr << "You have chosen to generate " << global.skips << "-skip-" << global.ngram << "-grams" << endl;
if(global.skips > 4)
{
cout << "*********************************" << endl;