Skip to content
Snippets Groups Projects
Commit e40afbb3 authored by Aleksandras Kostarevas's avatar Aleksandras Kostarevas
Browse files

Reduce cost of space substitution, increase cost of space omission

parent 1860a5f5
No related branches found
No related tags found
No related merge requests found
......@@ -49,8 +49,8 @@ const float ScoringParams::INSERTION_COST_SAME_CHAR = 0.5508f;
const float ScoringParams::INSERTION_COST_PROXIMITY_CHAR = 0.674f;
const float ScoringParams::INSERTION_COST_FIRST_CHAR = 0.639f;
const float ScoringParams::TRANSPOSITION_COST = 0.5608f;
const float ScoringParams::SPACE_SUBSTITUTION_COST = 0.33f;
const float ScoringParams::SPACE_OMISSION_COST = 0.1f;
const float ScoringParams::SPACE_SUBSTITUTION_COST = 0.1f;
const float ScoringParams::SPACE_OMISSION_COST = 0.66f;
const float ScoringParams::ADDITIONAL_PROXIMITY_COST = 0.37972f;
const float ScoringParams::SUBSTITUTION_COST = 0.3806f;
const float ScoringParams::COST_SECOND_OR_LATER_WORD_FIRST_CHAR_UPPERCASE = 0.3224f;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment