Implemented interface member:
property
Source
Microsoft.ML.Data.IDataTransform.Source
2 writes to Source
Microsoft.ML.Data (2)
Transforms\PerGroupTransformBase.cs (2)
111
Source
= input;
122
Source
= input;
8 references to Source
Microsoft.ML.Data (8)
Evaluators\RankingEvaluator.cs (2)
574
public IDataView Source { get { return _transform.
Source
; } }
712
_bindings = new Bindings(Host,
Source
.Schema, true, LabelCol, ScoreCol, GroupCol, _truncationLevel);
Transforms\PerGroupTransformBase.cs (6)
154
return
Source
.GetRowCount();
176
var activeCols =
Source
.Schema.Where(x => activeInput.Length > x.Index && activeInput[x.Index]);
177
var inputCursor =
Source
.GetRowCursor(activeCols, null);
191
var cols =
Source
.Schema.Where(x => predInput(x.Index));
193
return new Cursor(this,
Source
.GetRowCursor(cols, null),
Source
.GetRowCursor(cols, null), active);