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-12-14 01:17:19 +0400
committerJohn Langford <jl@hunch.net>2011-12-14 01:17:19 +0400
commit340ae2ae268534d786e23aebad7b976da98fa3de (patch)
tree4c6650afb2a23141d5170f7dedbbd6986eda0d78
parentbf7b614cbfd769445dc8540acd9f37104c0f3474 (diff)
moved help to the top6.1
-rw-r--r--parse_args.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse_args.cc b/parse_args.cc
index 79c3a6f4..40d4c314 100644
--- a/parse_args.cc
+++ b/parse_args.cc
@@ -50,6 +50,7 @@ po::variables_map parse_args(int argc, char *argv[], boost::program_options::opt
global.sd = (shared_data *) malloc(sizeof(shared_data));
// Declare the supported options.
desc.add_options()
+ ("help,h","Look here: http://hunch.net/~vw/ and click on Tutorial.")
("active_learning", "active learning mode")
("active_simulation", "active learning simulation mode")
("active_mellowness", po::value<float>(&global.active_c0)->default_value(8.f), "active learning mellowness parameter c_0. Default 8")
@@ -76,7 +77,6 @@ po::variables_map parse_args(int argc, char *argv[], boost::program_options::opt
("final_regressor,f", po::value< string >(), "Final regressor")
("readable_model", po::value< string >(), "Output human-readable final regressor")
("hash", po::value< string > (), "how to hash the features. Available options: strings, all")
- ("help,h","Look here: http://hunch.net/~vw/ and click on Tutorial.")
("hessian_on", "use second derivative in line search")
("version","Version information")
("ignore", po::value< vector<unsigned char> >(), "ignore namespaces beginning with character <arg>")