Skip to content

Commit

Permalink
Fix binomial score
Browse files Browse the repository at this point in the history
  • Loading branch information
friofry committed Jun 12, 2021
1 parent 0e8fa54 commit 5be52ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stat_lib/stat_model.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ double StatModel::binom_by_hash(uint32_t hash, uint16_t k, double max_score) con
}
}

if (base_log + 10 < max_score) {
if (base_log + 500 < max_score) {
return base_log;
}
// 2. find result
Expand Down

0 comments on commit 5be52ad

Please sign in to comment.