SaviAnna commited on
Commit
6432174
·
1 Parent(s): 012a514

Update pages/📷 CritiSense.py

Browse files
Files changed (1) hide show
  1. pages/📷 CritiSense.py +6 -3
pages/📷 CritiSense.py CHANGED
@@ -55,7 +55,10 @@ ml_time=end_ml-start_ml
55
  execution_time_container = st.empty() # Создаем пустой контейнер для отображения времени выполнения
56
 
57
  if st.button("Analyze Sentiment"):
58
- st.write("Predicted Sentiment:", prediction)
59
- st.markdown(f"Execution Time: {ml_time:.2f} seconds")
60
- execution_time_container.text(f"Execution Time: {execution_time:.5f} seconds")
 
 
 
61
 
 
55
  execution_time_container = st.empty() # Создаем пустой контейнер для отображения времени выполнения
56
 
57
  if st.button("Analyze Sentiment"):
58
+ if prediction == 1:
59
+ st.markdown("<p style='color: green;'>Sentiment: Positive</p>", unsafe_allow_html=True)
60
+ else:
61
+ st.markdown("<p style='color: red;'>Sentiment: Negative</p>", unsafe_allow_html=True)
62
+ st.markdown(f"Execution Time: {ml_time:.5f} seconds")
63
+ execution_time_container.text(f"Execution Time: {ml_time:.5f} seconds")
64