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