diff options
author | 2013-08-15 04:31:11 -0700 | |
---|---|---|
committer | 2013-08-15 04:31:11 -0700 | |
commit | a49bf12883364b80bbd17bd9e47dd9bcd4e16bf6 (patch) | |
tree | c24e6d24d0de7b90f6e60106efd75cded3e8a66b /native/jni/src | |
parent | 10288e2c27fd2e1202fc44b91b554c9f7c5283d4 (diff) | |
parent | 33fce975c976424e923455e8f948f1ebe494a2cd (diff) | |
download | latinime-a49bf12883364b80bbd17bd9e47dd9bcd4e16bf6.tar.gz latinime-a49bf12883364b80bbd17bd9e47dd9bcd4e16bf6.tar.xz latinime-a49bf12883364b80bbd17bd9e47dd9bcd4e16bf6.zip |
am 33fce975: Merge "[Refactor] Divide BinaryDictInputOutput into BinaryDictEncoder and BinaryDictDecoder."
* commit '33fce975c976424e923455e8f948f1ebe494a2cd':
[Refactor] Divide BinaryDictInputOutput into BinaryDictEncoder and BinaryDictDecoder.
Diffstat (limited to 'native/jni/src')
-rw-r--r-- | native/jni/src/suggest/core/dictionary/probability_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/native/jni/src/suggest/core/dictionary/probability_utils.h b/native/jni/src/suggest/core/dictionary/probability_utils.h index f450087d8..219213574 100644 --- a/native/jni/src/suggest/core/dictionary/probability_utils.h +++ b/native/jni/src/suggest/core/dictionary/probability_utils.h @@ -41,7 +41,7 @@ class ProbabilityUtils { // the unigram probability to be the median value of the 17th step from the top. A value of // 0 for the bigram probability represents the middle of the 16th step from the top, // while a value of 15 represents the middle of the top step. - // See makedict.BinaryDictInputOutput for details. + // See makedict.BinaryDictDecoder for details. const float stepSize = static_cast<float>(MAX_PROBABILITY - unigramProbability) / (1.5f + MAX_BIGRAM_ENCODED_PROBABILITY); return unigramProbability |