Update app.py
Browse files
app.py
CHANGED
|
@@ -254,16 +254,17 @@ def main():
|
|
| 254 |
col1, col2, col3 = st.columns(3)
|
| 255 |
|
| 256 |
with col1:
|
| 257 |
-
st.markdown("
|
| 258 |
-
st.markdown(f"
|
| 259 |
|
| 260 |
with col2:
|
| 261 |
-
st.markdown("
|
| 262 |
-
st.markdown("
|
| 263 |
|
| 264 |
with col3:
|
| 265 |
-
st.markdown("
|
| 266 |
-
st.markdown("
|
|
|
|
| 267 |
|
| 268 |
|
| 269 |
# -----------------------------
|
|
|
|
| 254 |
col1, col2, col3 = st.columns(3)
|
| 255 |
|
| 256 |
with col1:
|
| 257 |
+
st.markdown("<h3 style='text-align:center;'>Total Characters</h3>", unsafe_allow_html=True)
|
| 258 |
+
st.markdown(f"<h1 style='text-align:center;'>{len(character_names)}</h1>", unsafe_allow_html=True)
|
| 259 |
|
| 260 |
with col2:
|
| 261 |
+
st.markdown("<h3 style='text-align:center;'>Embedding Models</h3>", unsafe_allow_html=True)
|
| 262 |
+
st.markdown("<h2 style='text-align:center;'>SBERT, TF-IDF, Hybrid</h2>", unsafe_allow_html=True)
|
| 263 |
|
| 264 |
with col3:
|
| 265 |
+
st.markdown("<h3 style='text-align:center;'>Similarity Algorithm</h3>", unsafe_allow_html=True)
|
| 266 |
+
st.markdown("<h1 style='text-align:center;'>Cosine</h1>", unsafe_allow_html=True)
|
| 267 |
+
|
| 268 |
|
| 269 |
|
| 270 |
# -----------------------------
|