Class GBDTForestNode
java.lang.Object
com.yahoo.searchlib.rankingexpression.rule.ExpressionNode
com.yahoo.searchlib.rankingexpression.evaluation.gbdtoptimization.GBDTForestNode
- All Implemented Interfaces:
Serializable
An optimized version of a sum of consecutive decision trees.
- Author:
- bratseth
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal ValueReturns the value of evaluating this expression over the given context.inthashCode()Returns a hashcode computed from the data in thistoString(StringBuilder string, SerializationContext context, Deque<String> path, CompositeNode parent) Returns (optimized sum of condition trees)final com.yahoo.tensor.TensorTypeReturns the type this will return if evaluated with the given context.Methods inherited from class com.yahoo.searchlib.rankingexpression.rule.ExpressionNode
equals, toString, toString
-
Constructor Details
-
GBDTForestNode
public GBDTForestNode(double[] values)
-
-
Method Details
-
type
public final com.yahoo.tensor.TensorType type(com.yahoo.tensor.evaluation.TypeContext<Reference> context) Description copied from class:ExpressionNodeReturns the type this will return if evaluated with the given context.- Specified by:
typein classExpressionNode- Parameters:
context- the variable type bindings to use for this evaluation
-
evaluate
Description copied from class:ExpressionNodeReturns the value of evaluating this expression over the given context.- Specified by:
evaluatein classExpressionNode- Parameters:
context- the variable bindings to use for this evaluation
-
toString
public StringBuilder toString(StringBuilder string, SerializationContext context, Deque<String> path, CompositeNode parent) Returns (optimized sum of condition trees)- Specified by:
toStringin classExpressionNode- Parameters:
string- the StringBuilder that will be appended tocontext- the serialization contextpath- the call path to this, used for cycle detection, or null if this is a rootparent- the parent node of this, or null if it is a root- Returns:
- the main script, referring to script instances.
-
hashCode
public int hashCode()Description copied from class:ExpressionNodeReturns a hashcode computed from the data in this- Specified by:
hashCodein classExpressionNode
-