Uses of Class
dev.langchain4j.store.embedding.oracle.IVFIndexBuilder
Packages that use IVFIndexBuilder
-
Uses of IVFIndexBuilder in dev.langchain4j.store.embedding.oracle
Subclasses with type arguments of type IVFIndexBuilder in dev.langchain4j.store.embedding.oracleModifier and TypeClassDescriptionclass
This index builder allows to configure an Inverted File Flat index on the embedding column of theEmbeddingTable
.Methods in dev.langchain4j.store.embedding.oracle that return IVFIndexBuilderModifier and TypeMethodDescriptionIVFIndexBuilder.degreeOfParallelism
(int degreeOfParallelism) Configures the degree of parallelism of the index.static IVFIndexBuilder
Index.ivfIndexBuilder()
Creates a builder to configure an IVF index on the embedding column of theEmbeddingTable
.IVFIndexBuilder.minVectorsPerPartition
(int minVectorsPerPartition) Configures the target minimum number of vectors per partition.IVFIndexBuilder.neighborPartitions
(int neighborPartitions) Configures the number of neighbor partitions.IVFIndexBuilder.samplePerPartition
(int samplePerPartition) Configures the total number of vectors that are passed to the clustering algorithm.IVFIndexBuilder.targetAccuracy
(int targetAccuracy) Configures the target accuracy.