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
Example: Would be nice to have an option that preserves punctuation:
console.log(nautral_NGrams.bigrams('Some, words here!!')); [ [ 'Some', 'words' ], [ 'words', 'here' ] ]
I would have liked to see [ [ 'Some,', 'words' ], [ 'words', 'here!!' ] ]
[ [ 'Some,', 'words' ], [ 'words', 'here!!' ] ]
If chaining commands is implemented eventually at #439 than one could just strip punctuation previously, or pass in to tokenizator first.
The text was updated successfully, but these errors were encountered:
Also, tokenizers already split the text in various ways, so I would just keep the splitting logic with the tokenizers...
Sorry, something went wrong.
No branches or pull requests
Example:
Would be nice to have an option that preserves punctuation:
I would have liked to see
[ [ 'Some,', 'words' ], [ 'words', 'here!!' ] ]
If chaining commands is implemented eventually at #439 than one could just strip punctuation previously, or pass in to tokenizator first.
The text was updated successfully, but these errors were encountered: