Uses of Interface
org.apache.lucene.util.hnsw.RandomVectorScorerSupplier
-
Packages that use RandomVectorScorerSupplier Package Description org.apache.lucene.util.hnsw Navigable Small-World graph, nominally Hierarchical but currently only has a single layer. -
-
Uses of RandomVectorScorerSupplier in org.apache.lucene.util.hnsw
Methods in org.apache.lucene.util.hnsw that return RandomVectorScorerSupplier Modifier and Type Method Description static RandomVectorScorerSupplier
RandomVectorScorerSupplier. createBytes(RandomAccessVectorValues<byte[]> vectors, VectorSimilarityFunction similarityFunction)
Creates aRandomVectorScorerSupplier
to compare byte vectors.static RandomVectorScorerSupplier
RandomVectorScorerSupplier. createFloats(RandomAccessVectorValues<float[]> vectors, VectorSimilarityFunction similarityFunction)
Creates aRandomVectorScorerSupplier
to compare float vectors.Methods in org.apache.lucene.util.hnsw with parameters of type RandomVectorScorerSupplier Modifier and Type Method Description static HnswGraphBuilder
HnswGraphBuilder. create(RandomVectorScorerSupplier scorerSupplier, int M, int beamWidth, long seed)
static HnswGraphBuilder
HnswGraphBuilder. create(RandomVectorScorerSupplier scorerSupplier, int M, int beamWidth, long seed, HnswGraph initializerGraph, Map<Integer,Integer> oldToNewOrdinalMap)
-