https://github.com/superthinking/nlp_paypal
Correcting the spelling, opening the contractions and finally making a dictionary using OpenNLP (mostly for Tokenizing).
https://github.com/superthinking/nlp_paypal
Last synced: about 2 months ago
JSON representation
Correcting the spelling, opening the contractions and finally making a dictionary using OpenNLP (mostly for Tokenizing).
- Host: GitHub
- URL: https://github.com/superthinking/nlp_paypal
- Owner: SuperThinking
- Created: 2018-03-08T14:49:45.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-08T17:33:11.000Z (over 8 years ago)
- Last Synced: 2025-11-13T06:19:57.459Z (9 months ago)
- Language: Java
- Size: 1.27 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# NLP_Paypal
Correcting the spelling, opening the contractions and then finding the n-Grams. (Making a dictionary also //Pending).
testingtrie is used to only test the Trie Data Structure.
finalDictionary is the main file for executing Spellcheck, Contractions and nGramFinder.
(OpenNlp is the library used for POS and Tokenizing the words).
//Challenges
Adding a faster NER.
//NER is necessary as for example the sentence "Vishal is a goood boy" will be changed to "Visual is a good boy".
//If NER is used, it detects that Vishal is a name and we can neglect it for SpellCheck but it takes time to execute.