jeffreykthomas commited on
Commit
7932c52
·
1 Parent(s): 202711b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -65,15 +65,15 @@ def decide(text):
65
  lstm_result = get_lstm_results(text)
66
  bert_result = get_bert_results(text)
67
  results = [
68
- lr_result.round(2),
69
- lstm_result.round(2),
70
- bert_result.round(2)]
71
  if lstm_result >= 0.6:
72
- return "Positive review (LR: {}, LSTM: {}, BERT: {}".format(*results)
73
  elif lstm_result <= 0.4:
74
- return "Negative review (LR: {}, LSTM: {}, BERT: {}".format(*results)
75
  else:
76
- return "Neutral review (LR: {}, LSTM: {}, BERT: {}".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!"
 
65
  lstm_result = get_lstm_results(text)
66
  bert_result = get_bert_results(text)
67
  results = [
68
+ lr_result,
69
+ lstm_result,
70
+ bert_result]
71
  if lstm_result >= 0.6:
72
+ return "Positive review (LR: {:.2}, LSTM: {:.2}, BERT: {:.2}".format(*results)
73
  elif lstm_result <= 0.4:
74
+ return "Negative review (LR: {:.2}, LSTM: {:.2}, BERT: {:.2}".format(*results)
75
  else:
76
+ return "Neutral review (LR: {:.2}, 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!"