1 write to _colToActivesIndex
Microsoft.ML.Data (1)
Transforms\RowShufflingTransformer.cs (1)
520
_colToActivesIndex
= new int[colLim];
12 references to _colToActivesIndex
Microsoft.ML.Data (12)
Transforms\RowShufflingTransformer.cs (12)
522
_colToActivesIndex
[c] = _input.IsColumnActive(Schema[c]) ? numActive++ : -1;
527
int ia =
_colToActivesIndex
[c];
671
Ch.CheckParam(column.Index <
_colToActivesIndex
.Length, nameof(column));
672
Ch.Assert((
_colToActivesIndex
[column.Index] >= 0) == _input.IsColumnActive(column));
678
Ch.Assert(0 <= col && col <
_colToActivesIndex
.Length);
679
Ch.Assert(
_colToActivesIndex
[col] >= 0);
685
Ch.Assert(0 <= col && col <
_colToActivesIndex
.Length);
686
Ch.Assert(
_colToActivesIndex
[col] >= 0);
688
return CreateGetterDelegate<TValue>(_pipes[
_colToActivesIndex
[col]]);
714
Ch.CheckParam(column.Index <
_colToActivesIndex
.Length, nameof(column));
715
Ch.CheckParam(
_colToActivesIndex
[column.Index] >= 0, nameof(column), "requested column not active");
717
var originGetter = _getters[
_colToActivesIndex
[column.Index]];