Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am looking for a tool that can analyze the emotion of short texts. I searched for a week and I couldn't find a good one that is publicly available. The ideal tool is one that takes a short text as input and guesses the emotion. It is preferably a standalone application or library.

I don't need tools that is trained by texts. And although similar questions are asked before no satisfactory answers are got.

I searched the Internet and read some papers but I can't find a good tool I want. Currently I found SentiStrength, but the accuracy is not good. I am using emotional dictionaries right now. I felt that some syntax parsing may be necessary but it's too complex for me to build one. Furthermore, it's researched by some people and I don't want to reinvent the wheels. Does anyone know such publicly/research available software? I need a tool that doesn't need training before using. Thanks in advance.

share|improve this question
I believe the Fietstas library/web service that my colleagues are building does this out of the box. I'm not sure if the code is publicly available yet; they're currently planning a 2.0 release. – larsmans Jun 27 '11 at 18:39
Thanks. You can change it into answer. – LLS Jun 28 '11 at 9:17

3 Answers

up vote -1 down vote accepted

Maybe EmoLib could be of help.

share|improve this answer
Thank you. I am trying it. – LLS Jul 6 '11 at 11:27
This isn't a library or web service, so doesn't really answer the question. – Scott Lerch Apr 21 at 5:05

I think that you will not find a more accurate program than SentiStrength (or SoCal) for this task - other than machine learning methods in a specific narrow domain. If you have a lot (>1000) of hand-coded data for a specific domain then you might like to try a generic machine learning approach based on your data. If not, then I would stop looking for anything better ;)

share|improve this answer

Identifying entities and extracting precise information from short texts, let alone sentiment, is a very challenging problem specially with short text because of lack of context. Hovewer, there are few unsupervised approaches to extracting sentiments from texts mainly proposed by Turney (2000). Look at that and may be you can adopt the method of extracting sentiments based on adjectives in the short text for your use-case. It is hovewer important to note that this might require you to efficiently POSTag your short text accordingly.

share|improve this answer
Thank you very much your answer. I am currently not working on this any more. – LLS Oct 27 '11 at 12:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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