Jan Mühlnikel
commited on
Commit
·
b4bc26b
1
Parent(s):
2082b67
changed embedding path
Browse files- similarity.py +1 -1
similarity.py
CHANGED
@@ -53,7 +53,7 @@ def load_model():
|
|
53 |
@st.cache_data
|
54 |
def load_embeddings_and_index():
|
55 |
# Load embeddings
|
56 |
-
with open("src
|
57 |
stored_data = pickle.load(fIn)
|
58 |
sentences = stored_data["sentences"]
|
59 |
embeddings = stored_data["embeddings"]
|
|
|
53 |
@st.cache_data
|
54 |
def load_embeddings_and_index():
|
55 |
# Load embeddings
|
56 |
+
with open("src/embeddings.pkl", "rb") as fIn:
|
57 |
stored_data = pickle.load(fIn)
|
58 |
sentences = stored_data["sentences"]
|
59 |
embeddings = stored_data["embeddings"]
|