Module org.apache.lucene.core
Class Lucene99ScalarQuantizedVectorsWriter.OffsetCorrectedQuantizedByteVectorValues
java.lang.Object
org.apache.lucene.index.KnnVectorValues
org.apache.lucene.index.ByteVectorValues
org.apache.lucene.util.quantization.QuantizedByteVectorValues
org.apache.lucene.codecs.lucene99.Lucene99ScalarQuantizedVectorsWriter.OffsetCorrectedQuantizedByteVectorValues
- All Implemented Interfaces:
HasIndexSlice
- Enclosing class:
Lucene99ScalarQuantizedVectorsWriter
static final class Lucene99ScalarQuantizedVectorsWriter.OffsetCorrectedQuantizedByteVectorValues
extends QuantizedByteVectorValues
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.index.KnnVectorValues
KnnVectorValues.DocIndexIterator -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final QuantizedByteVectorValuesprivate final ScalarQuantizerprivate final ScalarQuantizerprivate final VectorSimilarityFunction -
Constructor Summary
ConstructorsConstructorDescriptionOffsetCorrectedQuantizedByteVectorValues(QuantizedByteVectorValues in, VectorSimilarityFunction vectorSimilarityFunction, ScalarQuantizer scalarQuantizer, ScalarQuantizer oldScalarQuantizer) -
Method Summary
Modifier and TypeMethodDescriptionintReturn the dimension of the vectorsfloatgetScoreCorrectionConstant(int ord) iterator()Create an iterator for this instance.intordToDoc(int ord) Return the docid of the document indexed with the given vector ordinal.intsize()Return the number of vectors for this field.byte[]vectorValue(int ord) Return the vector value for the given vector ordinal which must be in [0, size() - 1], otherwise IndexOutOfBoundsException is thrown.Methods inherited from class org.apache.lucene.util.quantization.QuantizedByteVectorValues
copy, getScalarQuantizer, getSlice, scorerMethods inherited from class org.apache.lucene.index.ByteVectorValues
checkField, fromBytes, getEncoding, scorerMethods inherited from class org.apache.lucene.index.KnnVectorValues
createDenseIterator, createSparseIterator, fromDISI, getAcceptOrds, getVectorByteLength
-
Field Details
-
in
-
vectorSimilarityFunction
-
scalarQuantizer
-
oldScalarQuantizer
-
-
Constructor Details
-
OffsetCorrectedQuantizedByteVectorValues
OffsetCorrectedQuantizedByteVectorValues(QuantizedByteVectorValues in, VectorSimilarityFunction vectorSimilarityFunction, ScalarQuantizer scalarQuantizer, ScalarQuantizer oldScalarQuantizer)
-
-
Method Details
-
getScoreCorrectionConstant
- Specified by:
getScoreCorrectionConstantin classQuantizedByteVectorValues- Throws:
IOException
-
dimension
public int dimension()Description copied from class:KnnVectorValuesReturn the dimension of the vectors- Specified by:
dimensionin classKnnVectorValues
-
size
public int size()Description copied from class:KnnVectorValuesReturn the number of vectors for this field.- Specified by:
sizein classKnnVectorValues- Returns:
- the number of vectors returned by this iterator
-
vectorValue
Description copied from class:ByteVectorValuesReturn the vector value for the given vector ordinal which must be in [0, size() - 1], otherwise IndexOutOfBoundsException is thrown. The returned array may be shared across calls.- Specified by:
vectorValuein classByteVectorValues- Returns:
- the vector value
- Throws:
IOException
-
ordToDoc
public int ordToDoc(int ord) Description copied from class:KnnVectorValuesReturn the docid of the document indexed with the given vector ordinal. This default implementation returns the argument and is appropriate for dense values implementations where every doc has a single value.- Overrides:
ordToDocin classKnnVectorValues
-
iterator
Description copied from class:KnnVectorValuesCreate an iterator for this instance.- Overrides:
iteratorin classKnnVectorValues
-