Spaces:
Running
Running
jaifar530
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -326,12 +326,37 @@ if press_me_button:
|
|
326 |
display_name = author_map.get(author, author) # Retrieve the display name, fall back to original if not found
|
327 |
st.write(f"{display_name}: {prob * 100:.2f}%")
|
328 |
st.progress(float(prob))
|
|
|
329 |
st.write(f"Sorted probab: {sorted_probabilities[0][0] }")
|
330 |
if ridge_prediction == extra_trees_prediction == predicted_author:
|
331 |
st.success(f"Most likely written by: **{ridge_name}**", icon="✅")
|
332 |
st.info("We are quite confident in the accuracy of this result.", icon="ℹ️")
|
333 |
|
334 |
-
elif sorted_probabilities[0][0] == 0.1 :
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
335 |
else:
|
336 |
# Repeat the text with a space at the end of each iteration
|
337 |
|
|
|
326 |
display_name = author_map.get(author, author) # Retrieve the display name, fall back to original if not found
|
327 |
st.write(f"{display_name}: {prob * 100:.2f}%")
|
328 |
st.progress(float(prob))
|
329 |
+
|
330 |
st.write(f"Sorted probab: {sorted_probabilities[0][0] }")
|
331 |
if ridge_prediction == extra_trees_prediction == predicted_author:
|
332 |
st.success(f"Most likely written by: **{ridge_name}**", icon="✅")
|
333 |
st.info("We are quite confident in the accuracy of this result.", icon="ℹ️")
|
334 |
|
335 |
+
elif sorted_probabilities[0][0] == 0.1 :
|
336 |
+
elif extra_trees_prediction == predicted_author:
|
337 |
+
st.success(f"Most likely written by: **{extra_trees_name}**", icon="✅")
|
338 |
+
st.success(f"2nd Most likely written by: **{ridge_name}**", icon="✅")
|
339 |
+
st.warning(f"**Notice:** The input text has been magnified {amplify} times to better capture its characteristics and patterns.", icon="⚠️")
|
340 |
+
st.write("_" * 30)
|
341 |
+
# rain(
|
342 |
+
# emoji="😐",
|
343 |
+
# font_size=54,
|
344 |
+
# falling_speed=5,
|
345 |
+
# animation_length="infinite",
|
346 |
+
# )
|
347 |
+
|
348 |
+
elif ridge_prediction == predicted_author:
|
349 |
+
st.success(f"Most likely written by: **{ridge_name}**", icon="✅")
|
350 |
+
st.success(f"2nd Most likely written by: **{extra_trees_name}**", icon="✅")
|
351 |
+
st.warning(f"**Notice:** The input text has been magnified {amplify} times to better capture its characteristics and patterns.", icon="⚠️")
|
352 |
+
st.write("_" * 30)
|
353 |
+
# rain(
|
354 |
+
# emoji="😐",
|
355 |
+
# font_size=54,
|
356 |
+
# falling_speed=5,
|
357 |
+
# animation_length="infinite",
|
358 |
+
# )
|
359 |
+
|
360 |
else:
|
361 |
# Repeat the text with a space at the end of each iteration
|
362 |
|