IndexKind.Flat Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Does a brute force search to find the nearest neighbors. Calculates the distances between all pairs of data points, so has a linear time complexity, that grows directly proportional to the number of points. Also referred to as exhaustive k nearest neighbor in some databases.
public const string Flat;
val mutable Flat : string
Public Const Flat As String
Field Value
Remarks
High recall accuracy, but slower and more expensive than HNSW. Better with smaller datasets.