user843970
user843970

Reputation: 41

Analysing meaning of sentences

Are there any tools that analyze the meaning of given sentences? Recommendations are greatly appreciated.

Thanks in advance!

Upvotes: 3

Views: 1746

Answers (2)

Anderson Green
Anderson Green

Reputation: 31810

Some natural language understanding tools can analyze the meaning of sentences, including NLTK and Attempto Controlled English. There are several implementations of discourse representation structures and semantic parsers with a similar purpose.

There are also several parsers that can be used to generate a meaning representation from the text that is being parsed.

Upvotes: 1

I am also looking for similar tools. One thing I found recently was this sentiment analysis tool built by researchers at Stanford.

It provides a model of analyzing the sentiment of a given sentence. It's interesting and even this seemingly simple idea is quite involved to model in an accurate way. It utilizes machine learning to develop higher accuracy as well. There is a live demo where you can input sentences to analyze.

http://nlp.stanford.edu/sentiment/

I also saw this RelEx semantic dependency relationship extractor.

http://wiki.opencog.org/w/Sentence_algorithms

Upvotes: 1

Related Questions