diff --git a/src/tweets/collector.py b/src/tweets/collector.py index 963b381..c2ac37c 100644 --- a/src/tweets/collector.py +++ b/src/tweets/collector.py @@ -139,7 +139,7 @@ def processTweet(): pos, neu, neg, compound = callSentimentAnalyser(cleanedTweet) - if compound != 0.0 or neu <= 0.8: + if compound != 0.0 or neu <= 0.6: hourTweet = {'pos': pos, 'neu': neu, 'neg': neg, 'compound': compound, 'type': tweet["type"]} hourStack.append(hourTweet)