Daksh0505 commited on
Commit
ebd8345
·
verified ·
1 Parent(s): d313245

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -6
app.py CHANGED
@@ -254,16 +254,17 @@ def main():
254
  col1, col2, col3 = st.columns(3)
255
 
256
  with col1:
257
- st.markdown("### Total Characters")
258
- st.markdown(f"**{len(character_names)}**")
259
 
260
  with col2:
261
- st.markdown("### Embedding Models")
262
- st.markdown("**SBERT, TF-IDF, Hybrid**")
263
 
264
  with col3:
265
- st.markdown("### Similarity Algorithm")
266
- st.markdown("**Cosine**")
 
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
  # -----------------------------