1 write to DstLength
Microsoft.ML.Data (1)
Utilities\SlotDropper.cs (1)
54DstLength = srcLength > 1 ? ComputeLength(srcLength) : 0;
8 references to DstLength
Microsoft.ML.Data (4)
Transforms\SlotsDroppingTransformer.cs (2)
543var dstLength = slotDropper.DstLength; 839var dstLength = _slotDropper[iinfo].DstLength;
Utilities\SlotDropper.cs (2)
111int newLength = DstLength == 0 ? ComputeLength(src.Length) : DstLength;
Microsoft.ML.FastTree (4)
FastTree.cs (4)
1399numExamples = slotDropper?.DstLength ?? trans.RowCount; 1444ch.Assert(slotDropper.DstLength < temp.Length); 1446temp.Length - slotDropper.DstLength, temp.Length); 1467numExamples = slotDropper?.DstLength ?? trans.RowCount;