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 |
-
|
62 |
st.dataframe(df_allchaps)
|
63 |
dict_allchaps = df_allchaps.to_dict(orient='index')
|
64 |
st.write("VVVVVVVVVVV: ", dict_allchaps)
|
|
|
58 |
|
59 |
# Semantic search, Compute cosine similarity between all pairs of SBS descriptions
|
60 |
|
61 |
+
df_allchaps = pd.read_csv("SBS/SBS_V2_Chapter_Index_Rows.csv", usecols=["Chapter", "from_row_index", "to_row_index"])
|
62 |
st.dataframe(df_allchaps)
|
63 |
dict_allchaps = df_allchaps.to_dict(orient='index')
|
64 |
st.write("VVVVVVVVVVV: ", dict_allchaps)
|