This commit is contained in:
Bernhard Froemel 2026-02-03 14:57:47 +01:00
parent 3d10ae3161
commit 820ad0d191
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ struct common_ngram_mod {
static constexpr int8_t SCORE_INIT = 0;
static constexpr int8_t SCORE_MIN = -5;
static constexpr int8_t SCORE_MAX = 20;
static constexpr int8_t SCORE_THR = 0; // keep equal or lower than SCORE_INIT
static constexpr int8_t SCORE_THR = 0;
static constexpr int8_t SCORE_INS = 3;
common_ngram_mod(uint16_t n, size_t size);