I'm looking for a C++ sentiment analysis library that I could use in my own application. Something that would take a text written by a human as an argument and return information on its mood (positive, negative, neutral, angry, happy, ...). Any ideas?
A few remarks:
- I'm not looking for a library with "just" NLP tools (as text tokenization, PoS tagging etc.), but really something that does sentiment analysis / opinion mining / mood analysis. Of course an NLP library with sentiment analysis tool is great.
- Something very simple would be ok (e.g. just returning +1/-1/0)
- I don't care which underlying technique it may use (dictionaries, bayesian stuffs, SVMs, rule-based...)
- C++ only!
I know it probably does not exist just like that, but hey.