Module org.apache.lucene.codecs
Class FlatBitVectorsScorer
java.lang.Object
org.apache.lucene.codecs.bitvectors.FlatBitVectorsScorer
- All Implemented Interfaces:
FlatVectorsScorer
A bit vector scorer for scoring byte vectors.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescription(package private) static class(package private) static class -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetRandomVectorScorer(VectorSimilarityFunction similarityFunction, RandomAccessVectorValues vectorValues, byte[] target) Returns aRandomVectorScorerfor the given set of vectors and target vector.getRandomVectorScorer(VectorSimilarityFunction similarityFunction, RandomAccessVectorValues vectorValues, float[] target) Returns aRandomVectorScorerfor the given set of vectors and target vector.getRandomVectorScorerSupplier(VectorSimilarityFunction similarityFunction, RandomAccessVectorValues vectorValues) Returns aRandomVectorScorerSupplierthat can be used to score vectorstoString()
-
Constructor Details
-
FlatBitVectorsScorer
public FlatBitVectorsScorer()
-
-
Method Details
-
getRandomVectorScorerSupplier
public RandomVectorScorerSupplier getRandomVectorScorerSupplier(VectorSimilarityFunction similarityFunction, RandomAccessVectorValues vectorValues) throws IOException Description copied from interface:FlatVectorsScorerReturns aRandomVectorScorerSupplierthat can be used to score vectors- Specified by:
getRandomVectorScorerSupplierin interfaceFlatVectorsScorer- Parameters:
similarityFunction- the similarity function to usevectorValues- the vector values to score- Returns:
- a
RandomVectorScorerSupplierthat can be used to score vectors - Throws:
IOException- if an I/O error occurs
-
getRandomVectorScorer
public RandomVectorScorer getRandomVectorScorer(VectorSimilarityFunction similarityFunction, RandomAccessVectorValues vectorValues, float[] target) throws IOException Description copied from interface:FlatVectorsScorerReturns aRandomVectorScorerfor the given set of vectors and target vector.- Specified by:
getRandomVectorScorerin interfaceFlatVectorsScorer- Parameters:
similarityFunction- the similarity function to usevectorValues- the vector values to scoretarget- the target vector- Returns:
- a
RandomVectorScorerfor the given field and target vector. - Throws:
IOException- if an I/O error occurs when reading from the index.
-
getRandomVectorScorer
public RandomVectorScorer getRandomVectorScorer(VectorSimilarityFunction similarityFunction, RandomAccessVectorValues vectorValues, byte[] target) throws IOException Description copied from interface:FlatVectorsScorerReturns aRandomVectorScorerfor the given set of vectors and target vector.- Specified by:
getRandomVectorScorerin interfaceFlatVectorsScorer- Parameters:
similarityFunction- the similarity function to usevectorValues- the vector values to scoretarget- the target vector- Returns:
- a
RandomVectorScorerfor the given field and target vector. - Throws:
IOException- if an I/O error occurs when reading from the index.
-
toString
-