10 references to InputColumnCount
Microsoft.ML.Transforms (10)
UngroupTransform.cs (10)
282_pivotIndex = Utils.CreateArray(InputColumnCount, -1); 293for (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]; 580Contracts.Assert(0 <= col && col < _ungroupBinding.InputColumnCount); 601Ch.Check(column.Index < _ungroupBinding.InputColumnCount); 614Ch.CheckParam(column.Index < _ungroupBinding.InputColumnCount, nameof(column));