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
Hi,
I can remove the punctuations in Kuromoji-ES plugin by setting "discard_punctuation": "true"
"discard_punctuation": "true"
I'm wondering how can I get the same result with Kuromoji-Java?
For example, in Kuromoji-ES, 「浅草」駅 will be tokenized as
「浅草」駅
{ "tokens" : [ { "token" : "浅草", "start_offset" : 1, "end_offset" : 3, "type" : "word", "position" : 0 }, { "token" : "駅", "start_offset" : 4, "end_offset" : 5, "type" : "word", "position" : 1 } ] }
Is there a same function with Kuromoji-Java to do so?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I can remove the punctuations in Kuromoji-ES plugin by setting
"discard_punctuation": "true"
I'm wondering how can I get the same result with Kuromoji-Java?
For example, in Kuromoji-ES,
「浅草」駅
will be tokenized asIs there a same function with Kuromoji-Java to do so?
The text was updated successfully, but these errors were encountered: