Artificially increasing frequency weight of word ending characters in word building
1
$begingroup$
I have a database of letter pair bigrams. For example: +-----------+--------+-----------+ | first | second | frequency | +-----------+--------+-----------+ | gs | so | 1 | | gs | sp | 2 | | gs | sr | 1 | | gs | ss | 3 | | gs | st | 7 | | gt | th | 2 | | gt | to | 10 | | gu | u | 2 | | Gu | ua | 23 | | Gu | ud | 4 | | gu | ue | 49 | | Gu | ui | 27 | | Gu | ul | 15 | | gu | um | 4 | +-----------+--------+-----------+ The way I am using this I chose a "first" word which will be a character pair. Then I will loo...