10 references to InputColumnCount
Microsoft.ML.Transforms (10)
UngroupTransform.cs (10)
282
_pivotIndex = Utils.CreateArray(
InputColumnCount
, -1);
293
for (int i = 0; i <
InputColumnCount
; ++i)
460
/// Total number of input columns is <see cref="UngroupBinding.
InputColumnCount
"/> of <see cref="_ungroupBinding"/>.
461
/// Note that the number of input columns equals to the number of output columns; that is, <see cref="UngroupBinding.
InputColumnCount
"/>
483
_active = Utils.BuildArray(_ungroupBinding.
InputColumnCount
, predicate);
484
_cachedGetters = new Delegate[_ungroupBinding.
InputColumnCount
];
485
_colSizes = new int[_ungroupBinding.
InputColumnCount
];
580
Contracts.Assert(0 <= col && col < _ungroupBinding.
InputColumnCount
);
601
Ch.Check(column.Index < _ungroupBinding.
InputColumnCount
);
614
Ch.CheckParam(column.Index < _ungroupBinding.
InputColumnCount
, nameof(column));