I am trying to get the sentiment tags for a given text in Apache-Stanbol .
I have added the "sentiment-word-classifier" engine to a enhancer chain, i have also added all the required chains to be able to extract the tokens and their parts of speech tags.
This is the composition of my enhancer chain :
langid ( required , LangIdEnhancementEngine)
opennlp-sentence ( required , OpenNlpSentenceDetectionEngine)
stanford-nlp ( required , RestfulNlpAnalysisEngine)
opennlp-token ( required , OpenNlpTokenizerEngine)
opennlp-pos ( required , OpenNlpPosTaggingEngine)
sentiment-wordclassifier ( required , SentimentEngine)
opennlp-chunker ( required , OpenNlpChunkingEngine)
pos-chunker ( required , PosChunkerEngine)
This is the sufficient input for sentiment-word-classifier right?? Still am not getting any sentiment tags. Can somebody throw some light on what i am missing ??
Thanks