java.lang.Object
java.lang.Record
org.apache.lucene.util.TermAndVector
Word2Vec unit composed by a term with the associated vector
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionTermAndVector
(BytesRef term, float[] vector) Creates an instance of aTermAndVector
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Return aTermAndVector
whose vector is normalized according to the L2 norm.int
size()
term()
Returns the value of theterm
record component.toString()
Returns a string representation of this record class.float[]
vector()
Returns the value of thevector
record component.
-
Field Details
-
term
The field for theterm
record component. -
vector
private final float[] vectorThe field for thevector
record component.
-
-
Constructor Details
-
TermAndVector
Creates an instance of aTermAndVector
record class.- Parameters:
term
- the value for theterm
record componentvector
- the value for thevector
record component
-
-
Method Details
-
size
public int size() -
normalizeVector
Return aTermAndVector
whose vector is normalized according to the L2 norm. -
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object)
. -
term
Returns the value of theterm
record component.- Returns:
- the value of the
term
record component
-
vector
public float[] vector()Returns the value of thevector
record component.- Returns:
- the value of the
vector
record component
-