4 references to GetWeightedOutput
Microsoft.ML.FastTree (4)
Training\OptimizationAlgorithms\OptimizationAlgorithm.cs (1)
113double rootNodeOutput = regularizer.GetWeightedOutput();
Training\RegressionTreeNodeDocuments.cs (3)
113double myOutput = (1 - smoothing) * GetWeightedOutput() + smoothing * parentOutput; 137_weightedOutput = (lteDocCount * LteNode.GetWeightedOutput() + gtCount * GtNode.GetWeightedOutput())