2 instantiations of Column
Microsoft.ML.Data (2)
DataView\InternalSchemaDefinition.cs (2)
291new Column(colName, colType, col.Generator, col.AnnotationInfos) 292: new Column(colName, colType, memberInfo, col.AnnotationInfos);
16 references to Column
Microsoft.ML.Data (14)
DataView\DataViewConstructionUtils.cs (4)
158var currentColumn = schemaDef.Columns[i]; 234private Delegate CreateGetter(DataViewType colType, InternalSchemaDefinition.Column column, Delegate peek) 475var currentColumn = schemaDefn.Columns[i]; 812var col = schemaDefn.Columns[i];
DataView\InternalSchemaDefinition.cs (4)
20public readonly Column[] Columns; 128private InternalSchemaDefinition(Column[] columns) 219Column[] dstCols = new Column[userSchemaDefinition.Count];
DataView\TypedCursor.cs (4)
77private readonly InternalSchemaDefinition.Column[] _columns; 99var acceptedCols = new List<InternalSchemaDefinition.Column>(); 101foreach (var col in schemaDefn.Columns) 356private Action<TRow> GenerateSetter(DataViewRow input, int index, InternalSchemaDefinition.Column column, Delegate poke, Delegate peek)
Utils\ApiUtils.cs (2)
68internal static Delegate GeneratePeek<TOwn, TRow>(InternalSchemaDefinition.Column column) 136internal static Delegate GeneratePoke<TOwn, TRow>(InternalSchemaDefinition.Column column)
Microsoft.ML.Transforms (2)
CustomMappingTransformer.cs (1)
260foreach (var col in inputDef.Columns)
StatefulCustomMappingTransformer.cs (1)
393foreach (var col in inputDef.Columns)