We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now models are trained on which n-1 words follow the last word. You should be able to train which n-base words follow the last base words.
n-base
base
word1 word2 word3 word4 word5 1 2 3 4 5 B T T T T // Base 1 B B T T T // Base 2 B B B T T // Base 3 B B B B T // Base 4
Requirement: 1 >= Base < n
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now models are trained on which n-1 words follow the last word.
You should be able to train which
n-base
words follow the lastbase
words.Requirement: 1 >= Base < n
The text was updated successfully, but these errors were encountered: