Spaces:
Runtime error
Runtime error
Update stri.py
Browse files
stri.py
CHANGED
@@ -45,7 +45,7 @@ length = 512
|
|
45 |
query = st.text_input("Введите запрос")
|
46 |
|
47 |
if st.button('Сгенерировать'):
|
48 |
-
with open("
|
49 |
book_embeddings = pickle.load(f)
|
50 |
|
51 |
#book_embeddings = torch.tensor(book_embeddings, device=torch.device('cpu'))
|
@@ -73,7 +73,7 @@ if st.button('Сгенерировать'):
|
|
73 |
|
74 |
# Вычисление косинусного расстояния между эмбеддингом запроса и каждой аннотацией
|
75 |
cosine_similarities = torch.nn.functional.cosine_similarity(
|
76 |
-
|
77 |
torch.stack(book_embeddings)
|
78 |
)
|
79 |
|
|
|
45 |
query = st.text_input("Введите запрос")
|
46 |
|
47 |
if st.button('Сгенерировать'):
|
48 |
+
with open("book_embeddings1.pkl", "rb") as f:
|
49 |
book_embeddings = pickle.load(f)
|
50 |
|
51 |
#book_embeddings = torch.tensor(book_embeddings, device=torch.device('cpu'))
|
|
|
73 |
|
74 |
# Вычисление косинусного расстояния между эмбеддингом запроса и каждой аннотацией
|
75 |
cosine_similarities = torch.nn.functional.cosine_similarity(
|
76 |
+
query_hidden_states.squeeze(0),
|
77 |
torch.stack(book_embeddings)
|
78 |
)
|
79 |
|