From fe3fdcbb49cc35b243d524abfcd3ac5dec444f5b Mon Sep 17 00:00:00 2001 From: lauragreemko Date: Sun, 9 Oct 2022 20:47:23 +0200 Subject: [PATCH] changed positive --- app/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/app.py b/app/app.py index c3add91..36714da 100644 --- a/app/app.py +++ b/app/app.py @@ -26,7 +26,7 @@ def predict(): if prediction == 0: prediction = 'The sentiment of this tweet is positive' else: - prediction = 'The sentiment of this tweet is positive' + prediction = 'The sentiment of this tweet is negativa' return render_template('predict.html', predict=prediction) if __name__ == '__main__':