3 writes to _weightedOutput
Microsoft.ML.FastTree (3)
Training\RegressionTreeNodeDocuments.cs (3)
99_weightedOutput = double.NaN; 137_weightedOutput = (lteDocCount * LteNode.GetWeightedOutput() + gtCount * GtNode.GetWeightedOutput()) 180_weightedOutput = (lteDocCount * lteWeight + gtDocCount * gtWeight) / (lteDocCount + gtDocCount);
6 references to _weightedOutput
Microsoft.ML.FastTree (6)
Training\RegressionTreeNodeDocuments.cs (6)
129if (!double.IsNaN(_weightedOutput)) 130return _weightedOutput; 139return _weightedOutput; 163if (!double.IsNaN(_weightedOutput) && _nodeCount != int.MaxValue) 166return _weightedOutput; 184return _weightedOutput;