Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kpu/kenlm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Heafield <github@kheafield.com>2020-10-12 22:27:05 +0300
committerKenneth Heafield <github@kheafield.com>2020-10-12 22:27:05 +0300
commita6e130e7854ffd5d75ba7b29ba2479e7ad3a9244 (patch)
tree4d12287a8a550c54097f3ba853d3fc418ed32b1e
parentcc02a96ea9a45f7c9d78423d38a36553a7094aa1 (diff)
Ture -> True
-rw-r--r--python/kenlm.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/kenlm.pyx b/python/kenlm.pyx
index 4478483..a6984a8 100644
--- a/python/kenlm.pyx
+++ b/python/kenlm.pyx
@@ -216,7 +216,7 @@ cdef class Model:
def full_scores(self, sentence, bos = True, eos = True):
"""
- full_scores(sentence, bos = True, eos = Ture) -> generate full scores (prob, ngram length, oov)
+ full_scores(sentence, bos = True, eos = True) -> generate full scores (prob, ngram length, oov)
@param sentence is a string (do not use boundary symbols)
@param bos should kenlm add a bos state
@param eos should kenlm add an eos state