From eef5ab026094845a11ad4c397cad55a79034e0bd Mon Sep 17 00:00:00 2001 From: Kyle Lee Date: Fri, 26 Jan 2024 00:14:18 -0800 Subject: [PATCH] "CosineSimilarity" typo (#33) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 72ce259..f609f7e 100644 --- a/README.md +++ b/README.md @@ -110,7 +110,7 @@ A small but growing list of pre-converted models can be found in this repo on [H | Metric | Description | | --- | --- | | `DotProduct` | Measures the similarity between two vectors as the product of their magnitudes | -| `CostineSimilarity` | Calculates similarity by measuring the cosine of the angle between two vectors | +| `CosineSimilarity` | Calculates similarity by measuring the cosine of the angle between two vectors | | `EuclideanDistance` | Computes the straight-line distance between two points in Euclidean space | Metrics conform to the `DistanceMetricProtocol` and can be used interchangeably with the `SimilarityIndex` class.