1 write to _mapper
Microsoft.ML.Data (1)
Transforms\ColumnSelecting.cs (1)
663
_mapper
= mapper;
10 references to _mapper
Microsoft.ML.Data (10)
Transforms\ColumnSelecting.cs (10)
675
public DataViewSchema OutputSchema =>
_mapper
.OutputSchema;
688
var active = Utils.BuildArray(
_mapper
.OutputSchema.Count, columnsNeeded);
689
return new Cursor(_host,
_mapper
, inputRowCursor, active);
701
var active = Utils.BuildArray(
_mapper
.OutputSchema.Count, columnsNeeded);
707
cursors[i] = new Cursor(_host,
_mapper
, inputs[i], active);
718
var active = new bool[
_mapper
.InputSchema.Count];
720
active[
_mapper
.GetInputIndex(column.Index)] = true;
722
return
_mapper
.InputSchema.Where(col => col.Index < active.Length && active[col.Index]);
726
=> new RowImpl(input,
_mapper
);
738
var outputToInputMap =
_mapper
.OutputToInputMap;