saransh17 commited on
Commit
c4f0945
1 Parent(s): f0751c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ def score_comment(comment):
17
 
18
  text = ''
19
  for idx, col in enumerate(df.columns[2:]):
20
- text += '{}: {}\n'.format(col, (results[0][idx]*100)>0.4)
21
 
22
  return text
23
 
 
17
 
18
  text = ''
19
  for idx, col in enumerate(df.columns[2:]):
20
+ text += '{}: {}\n'.format(col, (results[0][idx]*100)>0.5)
21
 
22
  return text
23