Package smile.regression
Interface RegressionTree.NodeOutput
-
- Enclosing class:
- RegressionTree
public static interface RegressionTree.NodeOutput
An interface to calculate node output. Note that samples[i] is the number of sampling of dataset[i]. 0 means that the datum is not included and values of greater than 1 are possible because of sampling with replacement.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
calculate(int[] samples)
Calculate the node output.
-