Update app.py
Browse files
app.py
CHANGED
|
@@ -22,10 +22,10 @@ hypothesis = st.text_area("Enter the hypothesis: ")
|
|
| 22 |
if premise and hypothesis:
|
| 23 |
k = infer(premise, hypothesis)
|
| 24 |
if k == 2:
|
| 25 |
-
st.write("**Contradicting Statements Detected!**")
|
| 26 |
elif k == 1:
|
| 27 |
-
st.write("**Neutral Statements Detected.**")
|
| 28 |
elif k == 0:
|
| 29 |
-
st.write("**Entailing Statements Detected.**")
|
| 30 |
|
| 31 |
|
|
|
|
| 22 |
if premise and hypothesis:
|
| 23 |
k = infer(premise, hypothesis)
|
| 24 |
if k == 2:
|
| 25 |
+
st.write("#### **Contradicting Statements Detected!**")
|
| 26 |
elif k == 1:
|
| 27 |
+
st.write("#### **Neutral Statements Detected.**")
|
| 28 |
elif k == 0:
|
| 29 |
+
st.write("#### **Entailing Statements Detected.**")
|
| 30 |
|
| 31 |
|