I'm using Syn WordNet library in .NET for semantic analysis.Below is my code to get the semantic rating between two sentences :
double rating = _wordNetEngine.GetSentenceSimilarity(input1, input2);
//input1 and input2 are string
The method works fine for most of the inputs , but whenever input1i or input2 contains the word 'object' , the method is getting hanged. Please suggest how to overcome this issue.