Spaces:
Sleeping
Sleeping
Update pages/📷 CritiSense.py
Browse files- 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 |
-
|
59 |
-
|
60 |
-
|
|
|
|
|
|
|
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 |
|