Experiment - Similarity search and retrieval
Problem:You want to build a system that finds items similar to a given query from a collection. Currently, the system uses simple cosine similarity on raw text embeddings but returns poor matches.
Current Metrics:Precision@5: 60%, Recall@5: 55%
Issue:The model returns many irrelevant results because the embeddings are not well tuned and the similarity measure is too simple.