From 8f57c9fb786ff0156cd5aca2f62c1f792ddf6a6c Mon Sep 17 00:00:00 2001 From: Ayomide Date: Fri, 25 Jul 2025 20:42:56 +0100 Subject: [PATCH] update project structure and improve scripts --- backend/image_similarity.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()