diff options
author | Kenneth Heafield <github@kheafield.com> | 2013-05-19 10:02:45 -0400 |
---|---|---|
committer | Kenneth Heafield <github@kheafield.com> | 2013-05-19 10:02:45 -0400 |
commit | 417a4f3d126b48817e3aed000341f0fc4189be36 (patch) | |
tree | 00a81c70cfac72dcffe23ac6ff19c2c5f415d9da /klm/lm | |
parent | fc3d47b81448c7537ed7951aea81ddcbd95bc18a (diff) |
KenLM 10ddf7d92335 Comment some asserts, update uusage
Diffstat (limited to 'klm/lm')
-rw-r--r-- | klm/lm/search_trie.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/klm/lm/search_trie.hh b/klm/lm/search_trie.hh index 1264baf5..60be416b 100644 --- a/klm/lm/search_trie.hh +++ b/klm/lm/search_trie.hh @@ -41,7 +41,8 @@ template <class Quant, class Bhiksha> class TrieSearch { static void UpdateConfigFromBinary(int fd, const std::vector<uint64_t> &counts, Config &config) { Quant::UpdateConfigFromBinary(fd, counts, config); util::AdvanceOrThrow(fd, Quant::Size(counts.size(), config) + Unigram::Size(counts[0])); - Bhiksha::UpdateConfigFromBinary(fd, config); + // Currently the unigram pointers are not compresssed, so there will only be a header for order > 2. + if (counts.size() > 2) Bhiksha::UpdateConfigFromBinary(fd, config); } static uint64_t Size(const std::vector<uint64_t> &counts, const Config &config) { |