2 writes to SlotsMin
Microsoft.ML.Data (2)
Transforms\SlotsDroppingTransformer.cs (2)
278
GetSlotsMinMax(columns, out
SlotsMin
, out SlotsMax);
294
SlotsMin
= new int[size][];
11 references to SlotsMin
Microsoft.ML.Data (11)
Transforms\SlotsDroppingTransformer.cs (11)
279
Host.CheckUserArg(AreRangesValid(
SlotsMin
, SlotsMax), nameof(columns), "The range min and max must be non-negative and min must be less than or equal to max.");
298
SlotsMin
[i] = ctx.Reader.ReadIntArray();
299
Host.CheckDecode(Utils.Size(
SlotsMin
[i]) > 0);
300
SlotsMax[i] = ctx.Reader.ReadIntArray(
SlotsMin
[i].Length);
302
Host.Assert(AreRangesValid(
SlotsMin
, SlotsMax));
342
Host.Assert(AreRangesValid(
SlotsMin
, SlotsMax));
345
Host.Assert(
SlotsMin
[i].Length == SlotsMax[i].Length);
346
ctx.Writer.WriteIntArray(
SlotsMin
[i]);
492
_slotDropper[i] = new SlotDropper(valueCount, _parent.
SlotsMin
[i], _parent.SlotsMax[i]);
519
var slotsMin = _parent.
SlotsMin
[iinfo];
563
GetCategoricalSlotRangesCore(iinfo, _parent.
SlotsMin
[iinfo],