Implemented interface member:
property
Source
Microsoft.ML.Data.IDataTransform.Source
2 writes to Source
Microsoft.ML.Data (2)
Transforms\NopTransform.cs (2)
49Source = input; 85Source = input;
7 references to Source
Microsoft.ML.Data (7)
Transforms\NopTransform.cs (7)
30DataViewSchema IRowToRowMapper.InputSchema => Source.Schema; 102public bool CanShuffle => Source.CanShuffle; 113public DataViewSchema OutputSchema => Source.Schema; 117return Source.GetRowCount(); 121=> Source.GetRowCursor(columnsNeeded, rand); 124=> Source.GetRowCursorSet(columnsNeeded, n, rand); 136Contracts.CheckParam(input.Schema == Source.Schema, nameof(input), "Schema of input row must be the same as the schema the mapper is bound to");