oracat commited on
Commit
2b991f8
·
1 Parent(s): bb5547f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -30,6 +30,7 @@ def process(text):
30
  if cum_score >= 0.95:
31
  break
32
  if i > 0:
 
33
  if prev_score / item["score"] > 10:
34
  i -= 1
35
  break
@@ -113,10 +114,11 @@ st.markdown(
113
  }
114
  .css-ocqkz7 > div:nth-child(4) button:hover {
115
  color: #FF6961;
 
116
  }
117
  .css-ocqkz7 > div:nth-child(4) button:active {
118
- background-color: #FAA0A0;
119
- color: #FF6961;
120
  }
121
  </style>""",
122
  unsafe_allow_html=True,
 
30
  if cum_score >= 0.95:
31
  break
32
  if i > 0:
33
+ # Heuristic to drop less relevant categories
34
  if prev_score / item["score"] > 10:
35
  i -= 1
36
  break
 
114
  }
115
  .css-ocqkz7 > div:nth-child(4) button:hover {
116
  color: #FF6961;
117
+ background-color: #FAA0A0;
118
  }
119
  .css-ocqkz7 > div:nth-child(4) button:active {
120
+ background-color: #FF6961;
121
+ color: #FAA0A0;
122
  }
123
  </style>""",
124
  unsafe_allow_html=True,