akhil-vaidya commited on
Commit
94c31a0
·
verified ·
1 Parent(s): 2e9cc70

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -2
src/streamlit_app.py CHANGED
@@ -16,7 +16,7 @@ import re
16
  import io
17
  import base64
18
 
19
- st.set_page_config(page_title="Sentence Clustering & Topic Explorer", layout="wide")
20
 
21
  # ---------------------- Helpers ----------------------
22
  @st.cache_resource
@@ -131,7 +131,7 @@ def build_cluster_topic_table(df, cluster_col='cluster', sentence_col='sentence'
131
  return result_df
132
 
133
  # ---------------------- Streamlit UI ----------------------
134
- st.title("🔎 Sentence Clustering & Topic Explorer")
135
  st.markdown(
136
  "Upload a CSV with a column of sentences (default column name: `sentence`). The app will embed the sentences, find an optimal k, cluster them, visualize, and run per-cluster topic modeling."
137
  )
 
16
  import io
17
  import base64
18
 
19
+ st.set_page_config(page_title="Embeddings and Clustering", layout="wide")
20
 
21
  # ---------------------- Helpers ----------------------
22
  @st.cache_resource
 
131
  return result_df
132
 
133
  # ---------------------- Streamlit UI ----------------------
134
+ st.title("Embeddings and Clustering")
135
  st.markdown(
136
  "Upload a CSV with a column of sentences (default column name: `sentence`). The app will embed the sentences, find an optimal k, cluster them, visualize, and run per-cluster topic modeling."
137
  )