Skip to content

Commit 4ead8c3

Browse files
committed
fixed marginal bool options
1 parent ed0d85b commit 4ead8c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vowpalwabbit/marginal.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ LEARNER::base_learner* marginal_setup(vw& all)
175175
new_options(all)
176176
("initial_denominator", po::value<float>(&d.initial_denominator)->default_value(1.f), "initial denominator")
177177
("initial_numerator", po::value<float>(&d.initial_numerator)->default_value(0.5f), "initial numerator")
178-
("update_before_learn",po::value<bool>(&d.update_before_learn)->default_value(false), "update marginal values before learning")
179-
("unweighted_marginals",po::value<bool>(&d.unweighted_marginals)->default_value(false), "ignore importance weights when computing marginals")
178+
("update_before_learn",po::value<bool>(&d.update_before_learn)->default_value(false)->implicit_value(true), "update marginal values before learning")
179+
("unweighted_marginals",po::value<bool>(&d.unweighted_marginals)->default_value(false)->implicit_value(true), "ignore importance weights when computing marginals")
180180
("decay", po::value<float>(&d.decay)->default_value(0.f), "decay multiplier per event (1e-3 for example)");
181181
add_options(all);
182182

0 commit comments

Comments
 (0)