I have started working on a project which requires Natural Language Processing. We have do the spell checking as well as mapping sentences to phrases and their synonyms. I first thought of using GATE but i am confused on what to use? I found an interesting post here which got me even more confused.

http://lordpimpington.com/codespeaks/drupal-5.1/?q=node/5

Please help me decide on what suits my purpose the best. I am working a web application which will us this NLP tool as a service.

link|improve this question

There's no such thing, in a sense, as 'NLP'. It would be better if you would be really specific as to the tasks you need to perform. – bmargulies Mar 5 '10 at 12:33
See what i basically need is any basic architecture/tool which would help me work on setting up machine learning systems. The sentences which come in as input need to be mapped to certain phrases/synonyms of phrases which may be present in the sentence. Which sentiment of the sentence maps to which of the phrases set up by me. – Arkid Mitra Mar 5 '10 at 16:54
1  
Looks like a duplicate of stackoverflow.com/questions/2061881/… to me. – David Thornley Mar 5 '10 at 23:17
This would be an excellent question for bit.ly/u4lZUG. – eowl Dec 7 '11 at 14:34
feedback

2 Answers

up vote 2 down vote accepted
+150

You didn't really give much info, but try this: http://www.nltk.org/

I don't think NLTK does spell checking (I could be wrong on this), but it can do parts of speech tagging for text input.

For finding/matching synonyms you could use something like WordNet http://wordnet.princeton.edu/

If you're doing something really domain specific: I would recommend coming up with your own ontology for domain specific terms.

link|improve this answer
There are multiple domains for which the analysis has to be done. What would you suggest in such a case. For a basic set up what can i use. Something like a GATE.. How useful can it be? – Arkid Mitra Mar 5 '10 at 16:51
It depends how closely they match a given ontology (such as WordNet). If you are using most terms in the same way that a pre-defined ontology is, then you don't need to roll your own. If you are using the same terms in different ways then you may need to create a new one. If you have multiple domains that use terms in different ways, then you may need to create more than one. – adam Mar 5 '10 at 17:42
feedback

If you are using Python you can develop a spell checker with Python Enchant. NLTK is good for developing Sentiment Analysis system too. I have some prototypes of the same too

Jaggu

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.