Skip to content

Commit

Permalink
fix non OMP case
Browse files Browse the repository at this point in the history
  • Loading branch information
awbcmu committed Nov 22, 2017
1 parent 69be7b1 commit 17c85a8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions stats/wagon/wagon.cc
Original file line number Diff line number Diff line change
Expand Up @@ -892,6 +892,8 @@ static WQuestion find_best_question(WVectorVector &dset)
if ((wgn_dataset.ignore(i) == TRUE) ||
(i == wgn_predictee))
tscore = WGN_HUGE_VAL; // ignore this feature this time
else if (wgn_random_number(1.0) < wgn_dropout_feats)
tscore = WGN_HUGE_VAL; // randomly dropout feature
else if (wgn_dataset.ftype(i) == wndt_binary)
{
construct_binary_ques(i,test_ques);
Expand Down

0 comments on commit 17c85a8

Please sign in to comment.