From 6626c0864b278266dba1ddae72d791b9c6176482 Mon Sep 17 00:00:00 2001 From: andrewso <9V5f1FkzI2LD> Date: Wed, 14 Oct 2020 18:11:10 +0100 Subject: [PATCH] [14.10.20] Testing --- src/tweets/collector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)