1 instantiation of BoundColumn
Microsoft.ML.Data (1)
Transforms\ColumnConcatenatingTransformer.cs (1)
515
return new
BoundColumn
(InputSchema, _parent._columns[iinfo], sources, new VectorDataViewType((PrimitiveDataViewType)itemType, totalSize),
8 references to BoundColumn
Microsoft.ML.Data (8)
Transforms\ColumnConcatenatingTransformer.cs (8)
423
private readonly
BoundColumn
[] _columns;
433
_columns = new
BoundColumn
[_parent._columns.Length];
440
private
BoundColumn
MakeColumn(DataViewSchema inputSchema, int iinfo)
524
private static readonly FuncInstanceMethodInfo1<
BoundColumn
, DataViewRow, Delegate> _makeIdentityGetterMethodInfo
525
= FuncInstanceMethodInfo1<
BoundColumn
, DataViewRow, Delegate>.Create(target => target.MakeIdentityGetter<int>);
527
private static readonly FuncInstanceMethodInfo1<
BoundColumn
, DataViewRow, Delegate> _makeGetterMethodInfo
528
= FuncInstanceMethodInfo1<
BoundColumn
, DataViewRow, Delegate>.Create(target => target.MakeGetter<int>);
911
var
boundCol = _columns[iinfo];