2 writes to InputType
Microsoft.ML.FastTree (2)
FastTree.cs (2)
2853
InputType
= new VectorDataViewType(NumberDataViewType.Single, NumFeatures);
2891
InputType
= new VectorDataViewType(NumberDataViewType.Single, NumFeatures);
6 references to InputType
Microsoft.ML.FastTree (6)
FastTree.cs (3)
2811
DataViewType IValueMapper.InputType =>
InputType
;
2922
int inputVectorSize =
InputType
.GetVectorSize();
2950
int inputVectorSize =
InputType
.GetVectorSize();
RandomForestRegression.cs (1)
234
int inputVectorSize =
InputType
.GetVectorSize();
TreeEnsemble\TreeEnsembleCombiner.cs (2)
83
featureCount = tree.
InputType
.GetValueCount();
88
_host.Check(featureCount == tree.
InputType
.GetValueCount(), "Found models with different number of features");