I am planning to develop a system that would predict the mood of a given text(sentiment analysis in short).

I would also prefer apache mahout because, it is seriously huge data and the system should be scalable realtime. Kindly suggest me algorithms that apache mahout provides, which will be suitable for sentiment analysis.

link|improve this question

I think you want a classifier, but you should probably elaborate more: what's the input like, what's the output like, what's your scale, what have you tried already, what didn't work – Sean Owen Dec 9 '11 at 17:53
Hi sean, Input is a character stream from a text file. Output would be the polarity(negative,positive,neutral), which reflects the mood of the writer. I am just starting with this and need suggestions in choosing a proper classifier. – greenhorn Dec 12 '11 at 3:57
feedback

closed as not constructive by casperOne Apr 25 at 11:47

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

up vote 1 down vote accepted

If you have labeled training data then you could try Naive Bayes classifier which is one of the simplest supervised learning algorithms out there (and is supported by Mahout). If that is not sufficient for some reason then you could try more involved algorithms such as logistic regression etc.

If you don't have labeled data then you are out of luck - you will need to get some for this to work (e.g. by hiring someone to label your data for you via Amazon's Mechanical Turk)

By the way, what size of the data are we talking about? (if it is is up to a few hundred of gigabytes then you don't need hadoop/mahout to train this type of models - unless you have that data sitting in hadoop already of course..)

link|improve this answer
Have outsourced the labeling to a freelancer. Training data is around 500Mb and the system is to be deployed on a hadoop cluster. Thank you for your response. – greenhorn Dec 28 '11 at 4:35
feedback

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