cyberandy commited on
Commit
ce5adfb
Β·
1 Parent(s): 7a0c125

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -49,7 +49,7 @@ if st.button("Analyze"):
49
  # Display traffic light system
50
  if M == 2 and T == 2:
51
  st.markdown("<h4 style='text-align: center; color: green;'>🟒 Content is highly relevant and trustworthy</h4>", unsafe_allow_html=True)
52
- elif M == 0 and T == 1:
53
  st.markdown("<h4 style='text-align: center; color: orange;'>🟑 Content is irrelevant even if the webpage is trustworthy</h4>", unsafe_allow_html=True)
54
  elif M == 1 or T == 1:
55
  st.markdown("<h4 style='text-align: center; color: orange;'>🟑 Content is partly relevant/helpful</h4>", unsafe_allow_html=True)
 
49
  # Display traffic light system
50
  if M == 2 and T == 2:
51
  st.markdown("<h4 style='text-align: center; color: green;'>🟒 Content is highly relevant and trustworthy</h4>", unsafe_allow_html=True)
52
+ elif M == 0 and T == 2:
53
  st.markdown("<h4 style='text-align: center; color: orange;'>🟑 Content is irrelevant even if the webpage is trustworthy</h4>", unsafe_allow_html=True)
54
  elif M == 1 or T == 1:
55
  st.markdown("<h4 style='text-align: center; color: orange;'>🟑 Content is partly relevant/helpful</h4>", unsafe_allow_html=True)