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