Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -69,7 +69,7 @@ def get_similar_and_recommend(input_text):
|
|
69 |
def recommend_top_10(given_video_index, all_video_embeddings):
|
70 |
dot_products = [
|
71 |
torch.dot(all_video_embeddings[given_video_index], all_video_embeddings[i])
|
72 |
-
for i in range
|
73 |
]
|
74 |
dot_products[given_video_index] = -float("inf") # Exclude the most similar video
|
75 |
|
|
|
69 |
def recommend_top_10(given_video_index, all_video_embeddings):
|
70 |
dot_products = [
|
71 |
torch.dot(all_video_embeddings[given_video_index], all_video_embeddings[i])
|
72 |
+
for i in range(all_video_embeddings.shape[0])
|
73 |
]
|
74 |
dot_products[given_video_index] = -float("inf") # Exclude the most similar video
|
75 |
|