Spaces:
Runtime error
Runtime error
Commit
·
bd5a281
1
Parent(s):
7932c52
Update app.py
Browse files
app.py
CHANGED
@@ -69,11 +69,11 @@ def decide(text):
|
|
69 |
lstm_result,
|
70 |
bert_result]
|
71 |
if lstm_result >= 0.6:
|
72 |
-
return "Positive review (LR: {
|
73 |
elif lstm_result <= 0.4:
|
74 |
-
return "Negative review (LR: {
|
75 |
else:
|
76 |
-
return "Neutral review (LR: {
|
77 |
|
78 |
|
79 |
example_sentence_1 = "I hate this toaster, they made no effort in making it. So cheap, it almost immediately broke!"
|
|
|
69 |
lstm_result,
|
70 |
bert_result]
|
71 |
if lstm_result >= 0.6:
|
72 |
+
return "Positive review (LR: {}, LSTM: {:.2}, BERT: {:.2}".format(*results)
|
73 |
elif lstm_result <= 0.4:
|
74 |
+
return "Negative review (LR: {}, LSTM: {:.2}, BERT: {:.2}".format(*results)
|
75 |
else:
|
76 |
+
return "Neutral review (LR: {}, LSTM: {:.2}, BERT: {:.2}".format(*results)
|
77 |
|
78 |
|
79 |
example_sentence_1 = "I hate this toaster, they made no effort in making it. So cheap, it almost immediately broke!"
|