Spaces:
Running
Running
Update app.py
Browse files
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"
|
157 |
-
st.
|
158 |
-
st.
|
|
|
|
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 |
+
|