1 write to View
Microsoft.ML.Data (1)
DataLoadSave\LegacyCompositeDataLoader.cs (1)
428View = transforms[transforms.Length - 1].Transform;
12 references to View
Microsoft.ML.Data (12)
Commands\ShowSchemaCommand.cs (1)
108IDataView view = (data as LegacyCompositeDataLoader)?.View ?? data;
DataLoadSave\LegacyCompositeDataLoader.cs (7)
205srcView = composite.View; 429_tview = View as ITransposeDataView; 578return View.GetRowCount(); 581public bool CanShuffle => View.CanShuffle; 583public DataViewSchema Schema => View.Schema; 590return View.GetRowCursor(columnsNeeded, rand); 598return View.GetRowCursorSet(columnsNeeded, n, rand);
Model\Pfa\SavePfaCommand.cs (1)
104source = trueEnd = (end as LegacyCompositeDataLoader)?.View ?? end;
Utilities\ApplyTransformUtils.cs (2)
81chain = cdl.View; 94chain = cdl.View;
Utilities\ModelFileUtils.cs (1)
87result = cdl == null ? loader : cdl.View;