Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -30,9 +30,10 @@ def semanticComparativeClassification():
|
|
30 |
"sentences": sentences
|
31 |
},
|
32 |
})
|
33 |
-
|
34 |
for i in output:
|
35 |
-
st.write(sentences[
|
|
|
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 |
|