2 writes to SlotsMin
Microsoft.ML.Data (2)
Transforms\SlotsDroppingTransformer.cs (2)
278GetSlotsMinMax(columns, out SlotsMin, out SlotsMax); 294SlotsMin = new int[size][];
11 references to SlotsMin
Microsoft.ML.Data (11)
Transforms\SlotsDroppingTransformer.cs (11)
279Host.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."); 298SlotsMin[i] = ctx.Reader.ReadIntArray(); 299Host.CheckDecode(Utils.Size(SlotsMin[i]) > 0); 300SlotsMax[i] = ctx.Reader.ReadIntArray(SlotsMin[i].Length); 302Host.Assert(AreRangesValid(SlotsMin, SlotsMax)); 342Host.Assert(AreRangesValid(SlotsMin, SlotsMax)); 345Host.Assert(SlotsMin[i].Length == SlotsMax[i].Length); 346ctx.Writer.WriteIntArray(SlotsMin[i]); 492_slotDropper[i] = new SlotDropper(valueCount, _parent.SlotsMin[i], _parent.SlotsMax[i]); 519var slotsMin = _parent.SlotsMin[iinfo]; 563GetCategoricalSlotRangesCore(iinfo, _parent.SlotsMin[iinfo],