furrutiav commited on
Commit
a16f029
·
1 Parent(s): 271cafc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,4 +11,4 @@ if Q:
11
  if A:
12
  probs = C1Classifier(Q, A, is_probs=True)
13
  value = "coherent" if probs[1]<=0.5 else "incoherent"
14
- st.write(f"The answer is {100*probs[1]: .0f}% likely to be incoherent. So, it is {value}!")
 
11
  if A:
12
  probs = C1Classifier(Q, A, is_probs=True)
13
  value = "coherent" if probs[1]<=0.5 else "incoherent"
14
+ st.write('Prediction:', f"The answer is {100*probs[1]: .0f}% likely to be incoherent. So, it is {value}!")