-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not predicting sentiment of emoticons correctly #56
Comments
@cjhutto I am also facing the issue. Could you tell why is it happening ? |
The analyzer splits up the input by whitespace and looks for emoji among those tokens. So when it encounters a token like two smiling faces in a row, it will look for the token containing both faces in the emoji lexicon, fail to find it, and carry on. A fix for this would be to search for emoji on a character by character basis. |
Does 😃 😃 mean the same thing as 😃 ? |
I feel like it should mean the same thing as if ":)" would be to ":) :)" |
It is not predicting inconsistent results on emoticons.For instance, when I am passing this as '🙂' an argument, it is correctly predicting the outcome but on using same emoticons multiple times '🙂🙂',
it is giving neutral results.Similarly ,the same issue is arising in different cases of other emoji and sometimes ,it is not even detecting the single emoji too.
The text was updated successfully, but these errors were encountered: