NimaKL commited on
Commit
3e49218
·
verified ·
1 Parent(s): 5103548

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 all_video_embeddings.shape[0]
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