diff --git a/backend/image_similarity.py b/backend/image_similarity.py index 44c281b..5f01270 100644 --- a/backend/image_similarity.py +++ b/backend/image_similarity.py @@ -18,7 +18,7 @@ class ImageSimilarity: # Combine and prepare data self._prepare_image_data() - # Try to load precomputed embeddings, otherwise compute them + # Try to load precomputed embeddings, otherwise compute self.embeddings_file = 'data/image_embeddings_200.pkl' if os.path.exists(self.embeddings_file): self._load_embeddings()