I am using Flair for sentimental analysis. However, when i try to predict the label, i am not able to get a Neutral class ever. Also, the confidence of class is too unreal, i.e it is positive with probability >0.97 always or negative with such high probability. Even the very neutral words are being predicted as positive or negative with a very high probability.
classifier = TextClassifier.load('en-sentiment')
inputQuery='Go There and Walk'
sentence = Sentence(inputQuery)
classifier.predict(sentence)
label = sentence.labels[0]
labscore = (label.score)*100
response = {'result': label.value, 'score':"%.2f" % labscore}
print(response)
Here the output is :{'result': 'POSITIVE', 'score': '96.66'} What am I doing wrong?