Package org.apache.lucene.util.hnsw
Interface RandomVectorScorerSupplier
-
public interface RandomVectorScorerSupplierA supplier that createsRandomVectorScorerfrom an ordinal.
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static RandomVectorScorerSuppliercreateBytes(RandomAccessVectorValues<byte[]> vectors, VectorSimilarityFunction similarityFunction)Creates aRandomVectorScorerSupplierto compare byte vectors.static RandomVectorScorerSuppliercreateFloats(RandomAccessVectorValues<float[]> vectors, VectorSimilarityFunction similarityFunction)Creates aRandomVectorScorerSupplierto compare float vectors.RandomVectorScorerscorer(int ord)This creates aRandomVectorScorerfor scoring random nodes in batches against the given ordinal.
-
-
-
Method Detail
-
scorer
RandomVectorScorer scorer(int ord) throws IOException
This creates aRandomVectorScorerfor scoring random nodes in batches against the given ordinal.- Parameters:
ord- the ordinal of the node to compare- Returns:
- a new
RandomVectorScorer - Throws:
IOException
-
createFloats
static RandomVectorScorerSupplier createFloats(RandomAccessVectorValues<float[]> vectors, VectorSimilarityFunction similarityFunction) throws IOException
Creates aRandomVectorScorerSupplierto compare float vectors.WARNING: The
RandomAccessVectorValuesgiven can contain stateful buffers. Avoid using it after calling this function. If you plan to use it again outside the returnedRandomVectorScorer, think about passing a copied version (RandomAccessVectorValues.copy()).- Parameters:
vectors- the underlying storage for vectorssimilarityFunction- the similarity function to score vectors- Throws:
IOException
-
createBytes
static RandomVectorScorerSupplier createBytes(RandomAccessVectorValues<byte[]> vectors, VectorSimilarityFunction similarityFunction) throws IOException
Creates aRandomVectorScorerSupplierto compare byte vectors.WARNING: The
RandomAccessVectorValuesgiven can contain stateful buffers. Avoid using it after calling this function. If you plan to use it again outside the returnedRandomVectorScorer, think about passing a copied version (RandomAccessVectorValues.copy()).- Parameters:
vectors- the underlying storage for vectorssimilarityFunction- the similarity function to score vectors- Throws:
IOException
-
-