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)
675public DataViewSchema OutputSchema => _mapper.OutputSchema; 688var active = Utils.BuildArray(_mapper.OutputSchema.Count, columnsNeeded); 689return new Cursor(_host, _mapper, inputRowCursor, active); 701var active = Utils.BuildArray(_mapper.OutputSchema.Count, columnsNeeded); 707cursors[i] = new Cursor(_host, _mapper, inputs[i], active); 718var active = new bool[_mapper.InputSchema.Count]; 720active[_mapper.GetInputIndex(column.Index)] = true; 722return _mapper.InputSchema.Where(col => col.Index < active.Length && active[col.Index]); 726=> new RowImpl(input, _mapper); 738var outputToInputMap = _mapper.OutputToInputMap;