rickxzo commited on
Commit
9250959
·
verified ·
1 Parent(s): 7ce5021

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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