Giter Club home page Giter Club logo

Comments (3)

mfussenegger avatar mfussenegger commented on June 8, 2024 1

The cosine variant is likely going to be removed from Lucene: apache/lucene#13281

from crate.

mfussenegger avatar mfussenegger commented on June 8, 2024

Today, when creating a FLOAT_VECTOR, it uses the default EUCLIDEAN_HNSW (L2) similarity.
During creation time, it should be possible to provide Cosine Similarity or Dot Product as similarity functions as available in lucene

"Feature I want is missing" is not a very good problem statement. Could you elaborate on the concrete use-case a bit more, to get a better idea about why cosine or dot product similarity would be beneficial there?

from crate.

ckurze avatar ckurze commented on June 8, 2024

While euclidean distance focuses on the absolute magnitude difference between vectors, cosine similarity focuses on the angular difference, and dot product considers both the magnitude and angular difference. The choice of metric depends on the specific use case and the properties of the vector embeddings. The developer should be able to differentiate between these different options to create an optimal implementation for their use case - which might require to use a different similarity function.

Euclidean Distance

  • Measures the straight-line distance between two vectors in a multi-dimensional space.
  • Calculated as the square root of the sum of the squared differences between the corresponding vector components.
  • Sensitive to the magnitude of the vectors, so vectors with large values will have larger Euclidean distances even if they are otherwise similar.
  • Useful when the vector embeddings contain information about counts or measures, like in recommendation systems.

Cosine Similarity

  • Measures the cosine of the angle between two vectors.
  • Calculated as the dot product of the vectors divided by the product of their magnitudes.
  • Only considers the direction of the vectors, not their magnitude.
  • Commonly used in natural language processing to measure the similarity between documents.
  • Inverse relationship with cosine distance - as distance increases, similarity decreases.

Dot Product

  • Measures the projection of one vector onto another.
  • Calculated by summing the products of the corresponding vector components.
  • Proportional to both the vectors' magnitudes and the cosine of the angle between them.
  • Can be affected by the length of the vectors, so popular examples may skew the similarity metric.

from crate.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.