I'm a new entrant into the NLP(Natural Language processing.As a start up project i'm developing a paraphrase recognizer(a system which can recognize two similar sentences).For that recognizer i'm going to apply various measures at three levels namely,Lexical,Syntax,Semantic. At the lexical level, there are multiple similarity measures like cosine similarity,matching coefficient,jaccard coefficient...etc.for these measures i'm using the simMetrics package developed by university of sheffield..it's a wonderful package for different similarity measures.It contains lot of similarity measures.But for levenshtein distance and jaro-winkler distance measures, code is only at *character level*only.I require code at the sentence level(i.e considering single word as a unit instead of character wise).And also code for Manhattan distance is not there in SimMetrics...i request experts to give me a suggestion to develop required code (or)provide me code at the sentence level for the above mentioned measures.

thanks a lot in advance for your time and effort for helping me.

link|improve this question

67% accept rate
This is a non-trivial problem. I doubt you'll find much expertise or prior art in this area. – Cerin Jan 8 '11 at 14:27
If you are totally new into NLP, I really think you should try a smaller and more bounded project – johanbev Jan 8 '11 at 15:04
Note that 'JNLP' has nothing to do with 'NLP'. Removing tag. – Andrew Thompson Jan 8 '11 at 19:20
feedback

2 Answers

As Chris suggests, this is a non-trivial project for a beginner. I would suggest you start of something simpler (if relatively boring) such as chunking.

Have a look at the docs and books for the Python NLTK library - there are some samples that are close to what you are looking for. For example, containment: is it plausible that one statement contains another. note the 'plausible' there, the state of the art isn't good enough for a simple yes/no or even a probability.

link|improve this answer
feedback

I have been working in the area of NLP for a few years now, and I completely agree with those who have provided answers/comments. This really is a hard nut to crack! But, let me still provide a few pointers:

(1) Lexical similarity: Instead of trying to generalize Jaro-Winkler distance to sentence-level, it is probably much more fruitful if you develop a character-level or word-level language model, and compute the log-likelihood. Let me explain further: train your language model based on a corpus. Then take a whole lot of candidate sentences that have been annotated as similar/dissimilar to the sentences in the corpus. Compute the log-likelihood for each of these test sentences, and establish a cut-off value to determine similarity.

(2) Syntactic similarity: So far, only stylometric similarities can manage to capture this. For this, you will need to use PCFG parse trees (or TAG parse trees. TAG = tree adjoining grammar, a generalization of CFGs).

(3) Semantic similarity: off the top of my head, I can only think of using resources such as Wordnet, and identifying the similarity between synsets. But this is not simple either. Your first problem will be to identify which words from the two (or more) sentences are "corresponding words", before you can proceed to check their semantics.

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.