2 writes to _binUpperBounds
Microsoft.ML.FastTree (2)
GamModelParameters.cs (2)
76_binUpperBounds = binUpperBounds; 133_binUpperBounds = new double[NumberOfShapeFunctions][];
12 references to _binUpperBounds
Microsoft.ML.FastTree (12)
GamModelParameters.cs (12)
142_binUpperBounds[i] = reader.ReadDoubleArray(_binEffects[i].Length); 182ctx.Writer.WriteDoublesNoCount(_binUpperBounds[i]); 183Host.Assert(_binUpperBounds[i].Length == _binEffects[i].Length); 269int index = Algorithms.FindFirstGE(_binUpperBounds[featureIndex], featureValue); 276binIndex = Algorithms.FindFirstGE(_binUpperBounds[featureIndex], featureValue); 291var binUpperBounds = new double[_binUpperBounds[j].Length]; 292_binUpperBounds[j].CopyTo(binUpperBounds, 0); 307binUpperBounds[i] = new double[_binUpperBounds[j].Length]; 308_binUpperBounds[j].CopyTo(binUpperBounds[i], 0); 391double[] boundaries = _binUpperBounds[internalIndex]; 444var binThresholds = _binUpperBounds[featureIndex]; 819var up = context._pred._binUpperBounds[internalIndex];