Update pages/type_text.py
Browse files- pages/type_text.py +1 -1
pages/type_text.py
CHANGED
@@ -58,7 +58,7 @@ INTdesc_embedding = model.encode(INTdesc_input)
|
|
58 |
|
59 |
# Semantic search, Compute cosine similarity between all pairs of SBS descriptions
|
60 |
|
61 |
-
dfallchaps = pd.read_csv("SBS/SBS_V2_Chapter_Index_Rows.csv",
|
62 |
st.dataframe(dfallchaps)
|
63 |
selected_chapters_dict = dfallchaps.to_dict(orient='index')
|
64 |
st.write("VVVVVVVVVVV: ", selected_chapters_dict)
|
|
|
58 |
|
59 |
# Semantic search, Compute cosine similarity between all pairs of SBS descriptions
|
60 |
|
61 |
+
dfallchaps = pd.read_csv("SBS/SBS_V2_Chapter_Index_Rows.csv", usecols=["Chapter", "from_row_index", "to_row_index"])
|
62 |
st.dataframe(dfallchaps)
|
63 |
selected_chapters_dict = dfallchaps.to_dict(orient='index')
|
64 |
st.write("VVVVVVVVVVV: ", selected_chapters_dict)
|