graredcr commited on
Commit
11b39fc
·
1 Parent(s): e26b373

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -34,8 +34,8 @@ def semanticComparativeClassification():
34
  sentenceindex = -1
35
  max = 0
36
  for i in output:
37
- st.write(i)
38
- if i>max:
39
  sentenceindex = index
40
  index = index + 1
41
 
 
34
  sentenceindex = -1
35
  max = 0
36
  for i in output:
37
+ st.write(sentences[index]," - ",i)
38
+ if i<max:
39
  sentenceindex = index
40
  index = index + 1
41