Bigram (two-word sequence) are very useful for predicting the next word you'll typed in. But currently the only way to add them is by import the dictionary file, which is only limited to three bigrams per word. And sometimes it's not the word you'd used the most.
So maybe on dictionary editor, between shortcut and weight, there's a text box labeled "Bigram" which is the list of the words that'll be suggested after typing that word (separated by comma).
For example, for the word "I", the bigram list is "need,love,want,have,etc)
This is how it looked like on dictionary file before it got converted into binary (example, but not accurate), I need, I love, I want (only three words is listed).
word=I,f=254
bigram=need,f=1
bigram=love,f=2
bigram=want,f=3
Bigram (two-word sequence) are very useful for predicting the next word you'll typed in. But currently the only way to add them is by import the dictionary file, which is only limited to three bigrams per word. And sometimes it's not the word you'd used the most.
So maybe on dictionary editor, between shortcut and weight, there's a text box labeled "Bigram" which is the list of the words that'll be suggested after typing that word (separated by comma).
For example, for the word "I", the bigram list is "need,love,want,have,etc)
This is how it looked like on dictionary file before it got converted into binary (example, but not accurate), I need, I love, I want (only three words is listed).
word=I,f=254
bigram=need,f=1
bigram=love,f=2
bigram=want,f=3