6 instantiations of CacheDataView
Microsoft.ML.Data (5)
Commands\TrainCommand.cs (1)
504var cacheView = new CacheDataView(env, data.Data, prefetch);
DataLoadSave\DataOperationsCatalog.cs (1)
203return new CacheDataView(_env, input, prefetch);
DataLoadSave\EstimatorChain.cs (1)
76current = new CacheDataView(_host, current, null);
EntryPoints\InputBase.cs (2)
97outputData = new CacheDataView(host, roleMappedData.Data, null); 105outputData = new CacheDataView(host, roleMappedData.Data, null);
Microsoft.ML.TestFramework (1)
DataPipe\TestDataPipeBase.cs (1)
262var cachedData = new CacheDataView(_env, srcLoader, null);
16 references to CacheDataView
Microsoft.ML.Data (15)
Commands\TrainCommand.cs (1)
504var cacheView = new CacheDataView(env, data.Data, prefetch);
DataView\CacheDataView.cs (14)
460public RowCursor(CacheDataView parent, Func<int, bool> predicate, TIndex index) 550public RowSeekerCore(CacheDataView parent, Func<int, bool> predicate, TWaiter waiter) 610private TrivialWaiter(CacheDataView parent) 624public static Wrapper Create(CacheDataView parent) 650private readonly CacheDataView _parent; 657private WaiterWaiter(CacheDataView parent, Func<int, bool> pred) 695public static Wrapper Create(CacheDataView parent, Func<int, bool> pred) 1142protected readonly CacheDataView Parent; 1155protected RowCursorSeekerBase(CacheDataView parent, Func<int, bool> predicate) 1279public static ColumnCache Create(CacheDataView parent, DataViewRowCursor input, int srcCol, OrderedWaiter waiter) 1299new Type[] { typeof(CacheDataView), typeof(DataViewRowCursor), typeof(int), typeof(OrderedWaiter) }, null); 1347public ImplVec(CacheDataView parent, DataViewRowCursor input, int srcCol, OrderedWaiter waiter) 1430public ImplOne(CacheDataView parent, DataViewRowCursor input, int srcCol, OrderedWaiter waiter) 1465public ColumnCache(CacheDataView parent, DataViewRowCursor input, int srcCol, OrderedWaiter waiter)
Microsoft.ML.TestFramework (1)
DataPipe\TestDataPipeBase.cs (1)
262var cachedData = new CacheDataView(_env, srcLoader, null);