Module org.apache.lucene.codecs
Class SimpleTextKnnVectorsReader.SimpleTextFloatVectorValues
java.lang.Object
org.apache.lucene.index.KnnVectorValues
org.apache.lucene.index.FloatVectorValues
org.apache.lucene.codecs.simpletext.SimpleTextKnnVectorsReader.SimpleTextFloatVectorValues
- Enclosing class:
SimpleTextKnnVectorsReader
private static class SimpleTextKnnVectorsReader.SimpleTextFloatVectorValues
extends FloatVectorValues
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.lucene.index.KnnVectorValues
KnnVectorValues.DocIndexIterator -
Field Summary
FieldsModifier and TypeFieldDescription(package private) intprivate final SimpleTextKnnVectorsReader.FieldEntryprivate final IndexInputprivate final BytesRefBuilderprivate final float[][] -
Constructor Summary
ConstructorsModifierConstructorDescription(package private)private -
Method Summary
Modifier and TypeMethodDescriptioncopy()Creates a new copy of thisKnnVectorValues.intReturn the dimension of the vectorsiterator()Create an iterator for this instance.intordToDoc(int ord) Return the docid of the document indexed with the given vector ordinal.private voidprivate voidreadVector(float[] value) scorer(float[] target) Return aVectorScorerfor the given query vector and the currentFloatVectorValues.intsize()Return the number of vectors for this field.float[]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.index.FloatVectorValues
checkField, fromFloats, getEncodingMethods inherited from class org.apache.lucene.index.KnnVectorValues
createDenseIterator, createSparseIterator, fromDISI, getAcceptOrds, getVectorByteLength
-
Field Details
-
scratch
-
entry
-
in
-
values
private final float[][] values -
curOrd
int curOrd
-
-
Constructor Details
-
SimpleTextFloatVectorValues
SimpleTextFloatVectorValues(SimpleTextKnnVectorsReader.FieldEntry entry, IndexInput in) throws IOException - Throws:
IOException
-
SimpleTextFloatVectorValues
-
-
Method Details
-
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
public float[] vectorValue(int ord) Description copied from class:FloatVectorValuesReturn 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 classFloatVectorValues- Returns:
- the vector value
-
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
-
scorer
Description copied from class:FloatVectorValuesReturn aVectorScorerfor the given query vector and the currentFloatVectorValues.- Overrides:
scorerin classFloatVectorValues- Parameters:
target- the query vector- Returns:
- a
VectorScorerinstance or null
-
readAllVectors
- Throws:
IOException
-
readVector
- Throws:
IOException
-
copy
Description copied from class:KnnVectorValuesCreates a new copy of thisKnnVectorValues. This is helpful when you need to access different values at once, to avoid overwriting the underlying vector returned.- Specified by:
copyin classFloatVectorValues
-