Package org.tribuo.math.kernel
Class Linear
java.lang.Object
org.tribuo.math.kernel.Linear
- All Implemented Interfaces:
com.oracle.labs.mlrg.olcut.config.Configurable
,com.oracle.labs.mlrg.olcut.provenance.Provenancable<com.oracle.labs.mlrg.olcut.provenance.ConfiguredObjectProvenance>
,Serializable
,Kernel
A linear kernel, u.dot(v).
- See Also:
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncom.oracle.labs.mlrg.olcut.provenance.ConfiguredObjectProvenance
double
Calculates the similarity between twoSparseVector
s.toString()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface com.oracle.labs.mlrg.olcut.config.Configurable
postConfig
-
Constructor Details
-
Linear
public Linear()A linear kernel, u.dot(v).
-
-
Method Details
-
similarity
Description copied from interface:Kernel
Calculates the similarity between twoSparseVector
s.- Specified by:
similarity
in interfaceKernel
- Parameters:
a
- The first SparseVector.b
- The second SparseVector.- Returns:
- A value between 0 and 1, where 1 is most similar and 0 is least similar.
-
toString
-
getProvenance
public com.oracle.labs.mlrg.olcut.provenance.ConfiguredObjectProvenance getProvenance()- Specified by:
getProvenance
in interfacecom.oracle.labs.mlrg.olcut.provenance.Provenancable<com.oracle.labs.mlrg.olcut.provenance.ConfiguredObjectProvenance>
-