1 write to _subsetInput
Microsoft.ML.Data (1)
DataView\CacheDataView.cs (1)
91_subsetInput = SelectCachableColumns(input, _host, ref prefetch, out _inputToSubsetColIndex);
8 references to _subsetInput
Microsoft.ML.Data (8)
DataView\CacheDataView.cs (8)
92_rowCount = _subsetInput.GetRowCount() ?? -1; 100_caches = new ColumnCache[_subsetInput.Schema.Count]; 184int inputIndexLim = _inputToSubsetColIndex == null ? _subsetInput.Schema.Count : _inputToSubsetColIndex.Length; 187_host.Assert(-1 <= result && result < _subsetInput.Schema.Count); 193public DataViewSchema Schema => _subsetInput.Schema; 348cursor = _subsetInput.GetRowCursor(); 350cursor = _subsetInput.GetRowCursor(_subsetInput.Schema.Where(c => taskColumns.Contains(c.Index)));