1 write to Slots
Microsoft.ML.Data (1)
Transforms\SlotsDroppingTransformer.cs (1)
83Slots = new Range[strs.Length];
9 references to Slots
Microsoft.ML.Data (9)
Transforms\SlotsDroppingTransformer.cs (9)
86if ((Slots[i] = Range.Parse(strs[i])) == null) 103foreach (var src in Slots) 229Slots = column.Slots.Select(range => (range.Min, range.Max)).ToArray(); 353slotsMin = new int[col.Slots.Length]; 354slotsMax = new int[col.Slots.Length]; 355for (int j = 0; j < col.Slots.Length; j++) 357var range = col.Slots[j]; 358Host.CheckUserArg(range.IsValid(), nameof(col.Slots), "The range min and max must be non-negative and min must be less than or equal to max."); 367for (int j = 1; j < col.Slots.Length; j++)