dejanseo commited on
Commit
c2f4b21
·
verified ·
1 Parent(s): 964a94b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -153,6 +153,7 @@ if st.button("Classify", type="primary"):
153
  heuristic_ai = classify_text_likelihood(text)
154
  combined = min(model_ai + heuristic_ai, 1.0)
155
 
156
- st.subheader(f"🤖 Model AI Likelihood: {model_ai*100:.1f}%")
157
- st.subheader(f"🛠️ Heuristic AI Likelihood: {heuristic_ai*100:.1f}%")
158
- st.subheader(f"⚖️ Combined AI Likelihood: {combined*100:.1f}%")
 
 
153
  heuristic_ai = classify_text_likelihood(text)
154
  combined = min(model_ai + heuristic_ai, 1.0)
155
 
156
+ st.subheader(f"⚖️ AI Likelihood: {combined*100:.1f}%")
157
+ st.write(f"🤖 Model: {model_ai*100:.1f}%")
158
+ st.write(f"🛠️ Heuristic: {heuristic_ai*100:.1f}%")
159
+