Uses of Interface
org.apache.lucene.index.RandomAccessVectorValuesProducer
-
Packages that use RandomAccessVectorValuesProducer Package Description org.apache.lucene.backward_codecs.lucene90 Lucene 9.0 file format.org.apache.lucene.backward_codecs.lucene91 Lucene 9.1 file format.org.apache.lucene.codecs.lucene92 Lucene 9.2 file format.org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.util.hnsw Navigable Small-World graph, nominally Hierarchical but currently only has a single layer. -
-
Uses of RandomAccessVectorValuesProducer in org.apache.lucene.backward_codecs.lucene90
Classes in org.apache.lucene.backward_codecs.lucene90 that implement RandomAccessVectorValuesProducer Modifier and Type Class Description (package private) static class
Lucene90HnswVectorsReader.OffHeapVectorValues
Read the vector values from the index input.Constructors in org.apache.lucene.backward_codecs.lucene90 with parameters of type RandomAccessVectorValuesProducer Constructor Description Lucene90HnswGraphBuilder(RandomAccessVectorValuesProducer vectors, VectorSimilarityFunction similarityFunction, int maxConn, int beamWidth, long seed)
Reads all the vectors from a VectorValues, builds a graph connecting them by their dense ordinals, using the given hyperparameter settings, and returns the resulting graph. -
Uses of RandomAccessVectorValuesProducer in org.apache.lucene.backward_codecs.lucene91
Classes in org.apache.lucene.backward_codecs.lucene91 that implement RandomAccessVectorValuesProducer Modifier and Type Class Description (package private) static class
Lucene91HnswVectorsReader.OffHeapVectorValues
Read the vector values from the index input.Constructors in org.apache.lucene.backward_codecs.lucene91 with parameters of type RandomAccessVectorValuesProducer Constructor Description Lucene91HnswGraphBuilder(RandomAccessVectorValuesProducer vectors, VectorSimilarityFunction similarityFunction, int maxConn, int beamWidth, long seed)
Reads all the vectors from a VectorValues, builds a graph connecting them by their dense ordinals, using the given hyperparameter settings, and returns the resulting graph. -
Uses of RandomAccessVectorValuesProducer in org.apache.lucene.codecs.lucene92
Classes in org.apache.lucene.codecs.lucene92 that implement RandomAccessVectorValuesProducer Modifier and Type Class Description (package private) class
OffHeapVectorValues
Read the vector values from the index input.(package private) static class
OffHeapVectorValues.DenseOffHeapVectorValues
private static class
OffHeapVectorValues.EmptyOffHeapVectorValues
private static class
OffHeapVectorValues.SparseOffHeapVectorValues
Methods in org.apache.lucene.codecs.lucene92 with parameters of type RandomAccessVectorValuesProducer Modifier and Type Method Description private OnHeapHnswGraph
Lucene92HnswVectorsWriter. writeGraph(RandomAccessVectorValuesProducer vectorValues, VectorSimilarityFunction similarityFunction)
-
Uses of RandomAccessVectorValuesProducer in org.apache.lucene.codecs.simpletext
Classes in org.apache.lucene.codecs.simpletext that implement RandomAccessVectorValuesProducer Modifier and Type Class Description private static class
SimpleTextKnnVectorsReader.SimpleTextVectorValues
-
Uses of RandomAccessVectorValuesProducer in org.apache.lucene.index
Classes in org.apache.lucene.index that implement RandomAccessVectorValuesProducer Modifier and Type Class Description private static class
VectorValuesWriter.BufferedVectorValues
(package private) static class
VectorValuesWriter.SortingVectorValues
-
Uses of RandomAccessVectorValuesProducer in org.apache.lucene.util.hnsw
Constructors in org.apache.lucene.util.hnsw with parameters of type RandomAccessVectorValuesProducer Constructor Description HnswGraphBuilder(RandomAccessVectorValuesProducer vectors, VectorSimilarityFunction similarityFunction, int M, int beamWidth, long seed)
Reads all the vectors from a VectorValues, builds a graph connecting them by their dense ordinals, using the given hyperparameter settings, and returns the resulting graph.
-