Class VectorSimilarityFunction
java.lang.Object
org.apache.lucene.queries.function.ValueSource
org.apache.lucene.queries.function.valuesource.VectorSimilarityFunction
- Direct Known Subclasses:
ByteVectorSimilarityFunction
,FloatVectorSimilarityFunction
VectorSimilarityFunction
returns a similarity function between two knn vectors.-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final VectorSimilarityFunction
protected final ValueSource
protected final ValueSource
-
Constructor Summary
ConstructorsConstructorDescriptionVectorSimilarityFunction
(VectorSimilarityFunction similarityFunction, ValueSource vector1, ValueSource vector2) -
Method Summary
Modifier and TypeMethodDescriptiondescription of field, used in explain()boolean
protected abstract float
func
(int doc, FunctionValues f1, FunctionValues f2) getValues
(Map<Object, Object> context, LeafReaderContext readerContext) Gets the values for this reader and the context that was previously passed to createWeight().int
hashCode()
Methods inherited from class org.apache.lucene.queries.function.ValueSource
asDoubleValuesSource, asLongValuesSource, createWeight, fromDoubleValuesSource, getSortField, newContext, toString
-
Field Details
-
similarityFunction
-
vector1
-
vector2
-
-
Constructor Details
-
VectorSimilarityFunction
public VectorSimilarityFunction(VectorSimilarityFunction similarityFunction, ValueSource vector1, ValueSource vector2)
-
-
Method Details
-
getValues
public FunctionValues getValues(Map<Object, Object> context, LeafReaderContext readerContext) throws IOExceptionDescription copied from class:ValueSource
Gets the values for this reader and the context that was previously passed to createWeight(). The values must be consumed in a forward docID manner, and you must call this method again to iterate through the values again.- Specified by:
getValues
in classValueSource
- Throws:
IOException
-
func
- Throws:
IOException
-
equals
- Specified by:
equals
in classValueSource
-
hashCode
public int hashCode()- Specified by:
hashCode
in classValueSource
-
description
Description copied from class:ValueSource
description of field, used in explain()- Specified by:
description
in classValueSource
-