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