graredcr commited on
Commit
37209a2
·
1 Parent(s): f9455ee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -30,9 +30,10 @@ def semanticComparativeClassification():
30
  "sentences": sentences
31
  },
32
  })
33
-
34
  for i in output:
35
- st.write(sentences[i]," - ",i)
 
36
 
37
  sentenceindex = output.index(max(output))
38
 
 
30
  "sentences": sentences
31
  },
32
  })
33
+ index=0
34
  for i in output:
35
+ st.write(sentences[index]," - ",i)
36
+ index = index + 1
37
 
38
  sentenceindex = output.index(max(output))
39