1 write to _maxClamp
Microsoft.ML.FastTree (1)
FastTreeTweedie.cs (1)
398
_maxClamp
= Math.Abs(options.MaximumTreeOutput);
4 references to _maxClamp
Microsoft.ML.FastTree (4)
FastTreeTweedie.cs (4)
443
if (step < -
_maxClamp
)
444
step = -
_maxClamp
;
445
else if (step >
_maxClamp
)
446
step =
_maxClamp
;