1 write to Slots
Microsoft.ML.Data (1)
Transforms\SlotsDroppingTransformer.cs (1)
83
Slots
= new Range[strs.Length];
9 references to Slots
Microsoft.ML.Data (9)
Transforms\SlotsDroppingTransformer.cs (9)
86
if ((
Slots
[i] = Range.Parse(strs[i])) == null)
103
foreach (var src in
Slots
)
229
Slots = column.
Slots
.Select(range => (range.Min, range.Max)).ToArray();
353
slotsMin = new int[col.
Slots
.Length];
354
slotsMax = new int[col.
Slots
.Length];
355
for (int j = 0; j < col.
Slots
.Length; j++)
357
var range = col.
Slots
[j];
358
Host.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.");
367
for (int j = 1; j < col.
Slots
.Length; j++)