2 writes to Type
Microsoft.ML.DataView (2)
DataViewSchema.cs (2)
154
Type
= type ?? throw new ArgumentNullException(nameof(type));
164
Type
= column.Type;
5 references to Type
Microsoft.ML.DataView (1)
DataViewSchema.cs (1)
423
AddColumn(column.Name, column.
Type
, column.Annotations);
Microsoft.ML.FastTree (4)
TreeEnsembleFeaturizationTransformer.cs (4)
46
$"feature column with name {_featureDetachedColumn.Name} and type {_featureDetachedColumn.
Type
}. " +
52
$"which does not match the expected feature column with name {_featureDetachedColumn.Name} and type {_featureDetachedColumn.
Type
}. " +
53
$"Please make sure your feature column type is {_featureDetachedColumn.
Type
}.";
55
Host.Check(_featureDetachedColumn.
Type
.Equals(inspectedFeatureColumn.Type), typeErrorMessage);