Which vector similarity metric should I use?
imaurer.com
Which vector similarity metric should I use?
1–5 of 5 posts
Re: Which vector similarity metric should I use?
#2Re: Which vector similarity metric should I use?
#3Even ignoring vector magnitudes, wouldn't cosine distance as a measure of similarity only make sense if you're working with a convex set? That seems like it's far from a guarantee working in a high-dimensional space.
Re: Which vector similarity metric should I use?
#4| Task | Distance Measure |
|-------------------------------|-----------------------|
| Document classification | Cosine Distance |
| Semantic search | Cosine Distance |
| Recommendation systems | Cosine Distance |
| Image recognition | Euclidean Distance (L2)|
| Speech recognition | Euclidean Distance (L2)|
| Handwriting analysis | Euclidean Distance (L2)|
| Recommendation systems | Inner Product (Dot Product)|
| Collaborative filtering | Inner Product (Dot Product)|
| Matrix factorization | Inner Product (Dot Product)|
| Image processing | L2-Squared Distance |
| Error detection and correction| Hamming Distance |
| DNA sequence comparison | Hamming Distance |
| Taxicab geometry | Manhattan Distance |
| Chessboard distance | Manhattan Distance |
Re: Which vector similarity metric should I use?
#5Does this seem right? | Task | Distance Measure | |-------------------------------|-----------------------| | Document classification | Cosine Distance | | Semantic search | Cosine Distance | | Recommendation systems | Cosine Distance | | Image recognition | Euclidean Distance (L2)| | Speech recognition | Euclidean Distance (L2)| | Handwriting analysis | Euclidean Distance (L2)| | Recommendation systems | Inner Produ…