1 write to _binUpperBounds
Microsoft.ML.Data (1)
Transforms\NormalizeColumnDbl.cs (1)
1166
_binUpperBounds
= binUpperBounds;
5 references to _binUpperBounds
Microsoft.ML.Data (5)
Transforms\NormalizeColumnDbl.cs (5)
1167
_den = Math.Max(1,
_binUpperBounds
.Length - 1);
1169
_offset =
_binUpperBounds
.FindIndexSorted(0) / _den;
1206
c => BinNormSerializationUtils.SaveModel(c, new[] {
_binUpperBounds
}, saveText: true));
1223
value = BinUtils.GetValue(in input,
_binUpperBounds
, _den, _offset);
1227
=> new NormalizingTransformer.BinNormalizerModelParameters<TFloat>(ImmutableArray.Create(
_binUpperBounds
), _den, _offset);