vadersharp icon indicating copy to clipboard operation
vadersharp copied to clipboard

Sentiment analysis using VADER with C#

Results 7 vadersharp issues
Sort by recently updated
recently updated
newest added

Do you think you might consider adding this at some point? https://github.com/cjhutto/vaderSentiment/commit/b16e5f25d3a8d54dd919ad3215441913f206f4c2

This solves the "_Not bad at all_" problem case, see [issue](https://github.com/codingupastorm/vadersharp/issues/18) The issue is with NeverCheck() calling SentimentUtils.Negated with the list of words to be compared to the list of...

"satisfying service." compound score: 0.4588 "No one shows up." compound score: -0.296 "Not bad" compound score: -0.5423 "Not bad" should be neutral or good, but treated as negative. ![2021-06-13 20_32_01-F__SmsAssist...

Hi, where can I find a vader_lexicon.txt file for Hebrew analysis? Thanks for the help

For your information your component is crashing right at initialization: `SentimentIntensityAnalyzer analyzer = new SentimentIntensityAnalyzer();` System.TypeInitializationException: 'The type initializer for 'VaderSharp.SentimentIntensityAnalyzer' threw an exception FormatException: Input string was not in...

The current version has major problems for supporting non-english users. First, it uses the current system culture while trying to parse decimals with dot, which causes an exception to be...

I would recommend to write all constants, words and other Information in ressource files, e.g. JSON or XML. That would support a more strict separation of data and logic. Furthermore,...

enhancement