1 write to _colToActivesIndex
Microsoft.ML.Data (1)
DataLoadSave\Transpose\TransposeLoader.cs (1)
770
Utils.BuildSubsetMaps(_parent._header.ColumnCount, columnsNeeded, out _actives, out
_colToActivesIndex
);
8 references to _colToActivesIndex
Microsoft.ML.Data (8)
DataLoadSave\Transpose\TransposeLoader.cs (8)
797
Ch.Assert(
_colToActivesIndex
[col] >= 0);
826
int i =
_colToActivesIndex
[col];
839
int i =
_colToActivesIndex
[col];
871
Ch.CheckParam(column.Index <=
_colToActivesIndex
.Length, nameof(column));
872
return
_colToActivesIndex
[column.Index] >= 0;
884
Ch.CheckParam(column.Index <=
_colToActivesIndex
.Length && IsColumnActive(column), nameof(column), "requested column not active");
885
Ch.AssertValue(_getters[
_colToActivesIndex
[column.Index]]);
887
var originGetter = _getters[
_colToActivesIndex
[column.Index]];