I'm using the Flair NLP Library to get the sentiment scores of tweets . How do I handle emojis in Flair? I know that vader can handle emojis pretty well without preprocessing , but what about Flair ? What Should I add to the code to account for the meaning imposed by emojis in sentiment analysis ? Should I use the emoji
library of python to demojize ? Does it work with flair ?
s = flair.data.Sentence('I am feeling great <3')
flair_sentiment.predict(s)
total_sentiment = s.labels
print(total_sentiment[0].score)
Can someone please tell me how to handle emojis in flair ?