Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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}!")
|