Is there a way to identify similar words and convert it into one word before match against training model using Stanford NLP library?
For example, user inputs could be:
- DashPro
- Dash Pro
- dpo
- Dash
For all the above inputs, the return result should be "DashPro" so that it can match with the training model which contains only "DashPro"
Which of NLP Stanford Library pipeline or tools can help to resolve above scenario. And if you can provide any example code or references using java?
Thanks,