and get_sentiment('I am sad.') reutrns Neutral. get_sentiment('I am enjoying it.') also returns Neutral. But when I enter http://localhost:9000 in the browser and submit sentences above, I get Negative and Positive respectively. What's the problem with it? Thanks in advance.
For instance:
and
get_sentiment('I am sad.')
reutrnsNeutral
.get_sentiment('I am enjoying it.')
also returnsNeutral
. But when I enterhttp://localhost:9000
in the browser and submit sentences above, I getNegative
andPositive
respectively. What's the problem with it? Thanks in advance.