public enum FindNearest.Types.DistanceMeasure
Reference documentation and code samples for the Google Cloud Datastore v1 API enum FindNearest.Types.DistanceMeasure.
The distance measure to use when comparing vectors.
Namespace
Google.Cloud.Datastore.V1Assembly
Google.Cloud.Datastore.V1.dll
Fields |
|
---|---|
Name | Description |
Cosine |
COSINE distance compares vectors based on the angle between them, which allows you to measure similarity that isn't based on the vectors magnitude. We recommend using DOT_PRODUCT with unit normalized vectors instead of COSINE distance, which is mathematically equivalent with better performance. See Cosine Similarity to learn more about COSINE similarity and COSINE distance. The resulting COSINE distance decreases the more similar two vectors are. |
DotProduct |
Similar to cosine but is affected by the magnitude of the vectors. See Dot Product to learn more. The resulting distance increases the more similar two vectors are. |
Euclidean |
Measures the EUCLIDEAN distance between the vectors. See Euclidean to learn more. The resulting distance decreases the more similar two vectors are. |
Unspecified |
Should not be set. |