Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -64,7 +64,7 @@ def semanticComparativeClassificationCall(api_url: str):
|
|
64 |
else:
|
65 |
index=0
|
66 |
for i in output:
|
67 |
-
st.session_state["log"] = st.session_state["log"]+ i +' - '+sentences[index]+'\n'
|
68 |
#container.write(i," - ", sentences[index])
|
69 |
index = index + 1
|
70 |
maxim = max(output)
|
|
|
64 |
else:
|
65 |
index=0
|
66 |
for i in output:
|
67 |
+
st.session_state["log"] = st.session_state["log"]+ str(i) +' - '+sentences[index]+'\n'
|
68 |
#container.write(i," - ", sentences[index])
|
69 |
index = index + 1
|
70 |
maxim = max(output)
|