6 writes to FeatureCount
Microsoft.ML.FastTree (6)
FastTreeClassification.cs (1)
197
FeatureCount
= trainData.Schema.Feature.Value.Type.GetValueCount();
FastTreeRanking.cs (1)
150
FeatureCount
= trainData.Schema.Feature.Value.Type.GetValueCount();
FastTreeRegression.cs (1)
120
FeatureCount
= trainData.Schema.Feature.Value.Type.GetValueCount();
FastTreeTweedie.cs (1)
130
FeatureCount
= trainData.Schema.Feature.Value.Type.GetValueCount();
RandomForestClassification.cs (1)
224
FeatureCount
= trainData.Schema.Feature.Value.Type.GetValueCount();
RandomForestRegression.cs (1)
363
FeatureCount
= trainData.Schema.Feature.Value.Type.GetValueCount();
8 references to FeatureCount
Microsoft.ML.FastTree (8)
FastTreeClassification.cs (1)
206
var pred = new FastTreeBinaryModelParameters(Host, TrainedEnsemble,
FeatureCount
, InnerOptions);
FastTreeRanking.cs (1)
152
return new FastTreeRankingModelParameters(Host, TrainedEnsemble,
FeatureCount
, InnerOptions);
FastTreeRegression.cs (1)
124
return new FastTreeRegressionModelParameters(Host, TrainedEnsemble,
FeatureCount
, InnerOptions);
FastTreeTweedie.cs (1)
134
return new FastTreeTweedieModelParameters(Host, TrainedEnsemble,
FeatureCount
, InnerOptions);
RandomForestClassification.cs (2)
236
TrainCoreOneDal(ch, cursorFactory,
FeatureCount
);
251
return new FastForestBinaryModelParameters(Host, TrainedEnsemble,
FeatureCount
, InnerOptions);
RandomForestRegression.cs (2)
375
TrainCoreOneDal(ch, cursorFactory,
FeatureCount
);
384
return new FastForestRegressionModelParameters(Host, TrainedEnsemble,
FeatureCount
, InnerOptions, FastTreeTrainerOptions.NumberOfQuantileSamples);