2 writes to Slots
Microsoft.ML.Data (2)
Transforms\SlotsDroppingTransformer.cs (2)
218
Slots
= (slots.Length > 0) ? slots : new (int min, int? max)[1];
229
Slots
= column.Slots.Select(range => (range.Min, range.Max)).ToArray();
3 references to Slots
Microsoft.ML.Data (3)
Transforms\SlotsDroppingTransformer.cs (3)
219
foreach (var (min, max) in
Slots
)
230
foreach (var (min, max) in
Slots
)
386
var slots = columns[i].
Slots
;