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