1 write to _cols
Microsoft.ML.Data (1)
DataView\Transposer.cs (1)
105_cols = new DataViewSchema.Column[columns.Length];
12 references to _cols
Microsoft.ML.Data (12)
DataView\Transposer.cs (12)
114_nameToICol[(_cols[c] = schema[columns[c]]).Name] = c; 132for (int c = 0; c < _cols.Length; ++c) 139var type = schema[_cols[c].Index].Type; 141throw ch.ExceptParam(nameof(view), "Column named '{0}' is not serializable by the transposer", _cols[c].Name); 143throw ch.ExceptParam(nameof(view), "Column named '{0}' is vector, but not of known size, and so cannot be transposed", _cols[c].Name); 149_splitLim = new int[_cols.Length]; 153for (int c = 0; c < _cols.Length; ++c) 172ch.Trace("{0} of {1} input columns sliced into {2} columns", slicedCount, _cols.Length, toSave.Count); 247_host.Assert(0 <= tcol && tcol < _cols.Length); 248_host.Assert(_cols[tcol].Index == col); 352_col = parent._cols[iinfo].Index; 481_colMin = parent._cols[iinfo].Index;