1 write to ColType
Microsoft.ML.Data (1)
DataLoadSave\Text\TextLoader.cs (1)
628ColType = colType;
10 references to ColType
Microsoft.ML.Data (10)
DataLoadSave\Text\TextLoader.cs (3)
1020var type = info.ColType.GetItemType(); 1056schemaBuilder.AddColumn(info.Name, info.ColType, metadataBuilder.ToAnnotations()); 1060schemaBuilder.AddColumn(info.Name, info.ColType);
DataLoadSave\Text\TextLoaderParser.cs (7)
699if (info.ColType is KeyDataViewType keyType) 705VectorDataViewType vectorType = info.ColType as VectorDataViewType; 712DataViewType itemType = vectorType?.ItemType ?? info.ColType; 793if (!info.ColType.IsKnownSizeVector()) 1380if (!(info.ColType is VectorDataViewType)) 1390Contracts.Assert(info.ColType is VectorDataViewType); 1459Contracts.Assert(!(info.ColType is VectorDataViewType));