Frequently asked questions
Is anything uploaded or saved?
No. Both vectors are parsed and all the maths runs in your browser. Nothing you paste is sent anywhere or stored.
What formats can I paste?
Numbers separated by commas, spaces or new lines, or a JSON array like [0.1, -0.2, 0.3]. Surrounding square brackets are handled automatically, so you can paste an embedding straight from your code.
Which measures does it calculate?
Cosine similarity, the angle between the vectors, dot product, Euclidean and Manhattan distance, and the magnitude of each vector. Cosine similarity is the usual choice for comparing embeddings.
Why do I get a length error?
Cosine similarity, distance and dot product only make sense when both vectors have the same number of dimensions. Magnitudes are still shown for each, but the pair measures need equal length.
Can it handle large embeddings?
Yes. It comfortably handles long vectors such as 768, 1024 or 1536 dimensional embeddings, since it is plain arithmetic done locally.