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
Thinking about including a tokenizer class in the project. I'm thinking the API could look like:
from iranlowo.tokenizer import Tokenizer text = "some text" word_tokens = Tokenizer(text).word_tokenize() sentence_tokens = Tokenizer(text).sentence_tokenize()
The text was updated successfully, but these errors were encountered:
I think the API looks good, it would simplify the requirements.txt which currently for ADR depend on NLTK etc for tokenization.
requirements.txt
Sorry, something went wrong.
Olamyy
No branches or pull requests
Thinking about including a tokenizer class in the project.
I'm thinking the API could look like:
The text was updated successfully, but these errors were encountered: