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>2014-06-13 21:41:41 +0400
committerJohn Langford <jl@hunch.net>2014-06-13 21:41:41 +0400
commite14f36150f8195a98100230b16ed32779185bbe3 (patch)
treecad8372e460404d9bf45582d6fe5ecc4fc588776
parentea7f4326294b6a9813a1c11565b957b8602d1ef9 (diff)
change default swap_resistance to 4
-rw-r--r--vowpalwabbit/log_multi.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vowpalwabbit/log_multi.cc b/vowpalwabbit/log_multi.cc
index f2caf0a6..00cb0868 100644
--- a/vowpalwabbit/log_multi.cc
+++ b/vowpalwabbit/log_multi.cc
@@ -509,7 +509,7 @@ namespace LOG_MULTI
po::options_description opts("TXM Online options");
opts.add_options()
("no_progress", "disable progressive validation")
- ("swap_resistance", po::value<uint32_t>(&(data->swap_resist))->default_value(64), "higher = more resistance to swap, default=64");
+ ("swap_resistance", po::value<uint32_t>(&(data->swap_resist))->default_value(4), "higher = more resistance to swap, default=4");
vm = add_options(all, opts);